diff --git a/docs/critical_import_tool.md b/docs/critical_import_tool.md index 09bdf95..9f15a34 100644 --- a/docs/critical_import_tool.md +++ b/docs/critical_import_tool.md @@ -70,7 +70,7 @@ The current implementation supports: The current implementation does not yet support: -- OCR/image-based PDFs such as `Void.pdf` +- full OCR bootstrap on machines where Tesseract language data is unavailable - automatic confidence scoring beyond validation errors ## High-Level Architecture @@ -381,15 +381,18 @@ Example: dotnet run --project .\src\RolemasterDb.ImportTool\RolemasterDb.ImportTool.csproj -- import slash ``` -### `reimport-images ` +### `reimport-images [table]` -Reuses `source.xml`, regenerates page PNGs and cell PNGs, rewrites the JSON artifacts, and refreshes only source-image metadata in SQLite. +Reuses the extracted source artifact, regenerates page PNGs and cell PNGs, rewrites the JSON artifacts, and optionally refreshes source-image metadata in SQLite. + +For OCR-backed tables, `--update-metadata false` also enables a database-provenance fallback: if the OCR source artifact cannot be regenerated in the current environment, the command can still repopulate the committed page and cell PNGs from the existing `SourceImagePath` and `SourceImageCropJson` values stored in SQLite. Use this when: - crop resolution or render settings changed - you want better source images without reloading result text - you want to keep curated and uncurated content untouched while refreshing artifacts +- you need to repopulate the committed artifact tree without touching the database Example: @@ -397,6 +400,19 @@ Example: dotnet run --project .\src\RolemasterDb.ImportTool\RolemasterDb.ImportTool.csproj -- reimport-images slash ``` +Refresh all enabled manifest entries without modifying SQLite metadata: + +```powershell +dotnet run --project .\src\RolemasterDb.ImportTool\RolemasterDb.ImportTool.csproj -- reimport-images --all --update-metadata false +``` + +Command options: + +- pass a table slug to refresh one enabled manifest entry +- pass `--all` to refresh every enabled manifest entry +- `--update-metadata` defaults to `true`; set it to `false` when you only want to regenerate committed artifacts +- when `--update-metadata false` is used, OCR tables may fall back to existing SQLite source-image metadata to regenerate page and cell PNGs without changing the database + ## Manifest The importer manifest is stored at: @@ -425,7 +441,7 @@ For the currently enabled entries: Artifacts are written under: -- `artifacts/import/critical//` +- `src/RolemasterDb.App/import-artifacts/critical//` The current artifact set is: diff --git a/src/RolemasterDb.App/Features/CriticalImportArtifactLocator.cs b/src/RolemasterDb.App/Features/CriticalImportArtifactLocator.cs index cc82230..d07ae9e 100644 --- a/src/RolemasterDb.App/Features/CriticalImportArtifactLocator.cs +++ b/src/RolemasterDb.App/Features/CriticalImportArtifactLocator.cs @@ -33,12 +33,12 @@ public sealed class CriticalImportArtifactLocator { if (File.Exists(Path.Combine(probe.FullName, "RolemasterDB.slnx"))) { - return Path.Combine(probe.FullName, "artifacts", "import", "critical"); + return Path.Combine(probe.FullName, "src", "RolemasterDb.App", "import-artifacts", "critical"); } probe = probe.Parent; } - return Path.Combine(contentRootPath, "artifacts", "import", "critical"); + return Path.Combine(contentRootPath, "import-artifacts", "critical"); } -} +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__01-05.png new file mode 100644 index 0000000..52c2a7b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__06-10.png new file mode 100644 index 0000000..4de2996 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__100.png new file mode 100644 index 0000000..bf6d077 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__11-15.png new file mode 100644 index 0000000..28a3945 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__16-20.png new file mode 100644 index 0000000..34b110f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__21-30.png new file mode 100644 index 0000000..321090f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__31-40.png new file mode 100644 index 0000000..1fc8678 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__41-50.png new file mode 100644 index 0000000..f3c22da Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__51-55.png new file mode 100644 index 0000000..94dc496 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__56-60.png new file mode 100644 index 0000000..95fcb53 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__61-65.png new file mode 100644 index 0000000..ebced7f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__66.png new file mode 100644 index 0000000..54ce4dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__67-70.png new file mode 100644 index 0000000..1b8fd1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__71-75.png new file mode 100644 index 0000000..e16065d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__76-80.png new file mode 100644 index 0000000..403aee1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__81-85.png new file mode 100644 index 0000000..a20cbfd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__86-90.png new file mode 100644 index 0000000..7e08fb7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__91-95.png new file mode 100644 index 0000000..ccb2e2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__96-99.png new file mode 100644 index 0000000..e61a8f1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__01-05.png new file mode 100644 index 0000000..a37abc3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__06-10.png new file mode 100644 index 0000000..66b8fcf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__100.png new file mode 100644 index 0000000..f897cfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__11-15.png new file mode 100644 index 0000000..3f2e96c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__16-20.png new file mode 100644 index 0000000..5838843 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__21-30.png new file mode 100644 index 0000000..e1696d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__31-40.png new file mode 100644 index 0000000..9ad1c31 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__41-50.png new file mode 100644 index 0000000..203e846 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__51-55.png new file mode 100644 index 0000000..5d494b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__56-60.png new file mode 100644 index 0000000..bdd3586 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__61-65.png new file mode 100644 index 0000000..be35130 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__66.png new file mode 100644 index 0000000..4cc7a55 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__67-70.png new file mode 100644 index 0000000..2321da6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__71-75.png new file mode 100644 index 0000000..864f031 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__76-80.png new file mode 100644 index 0000000..180bbd8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__81-85.png new file mode 100644 index 0000000..351ed03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__86-90.png new file mode 100644 index 0000000..51ed9b3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__91-95.png new file mode 100644 index 0000000..8d9571a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__96-99.png new file mode 100644 index 0000000..8df2d0f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__01-05.png new file mode 100644 index 0000000..ed96e17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__06-10.png new file mode 100644 index 0000000..be3e072 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__100.png new file mode 100644 index 0000000..7dd7c63 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__11-15.png new file mode 100644 index 0000000..473eb22 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__16-20.png new file mode 100644 index 0000000..f990814 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__21-30.png new file mode 100644 index 0000000..2d6b644 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__31-40.png new file mode 100644 index 0000000..291271a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__41-50.png new file mode 100644 index 0000000..a0e3a1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__51-55.png new file mode 100644 index 0000000..ebc9763 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__56-60.png new file mode 100644 index 0000000..29ab46a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__61-65.png new file mode 100644 index 0000000..9dc76d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__66.png new file mode 100644 index 0000000..87e4a45 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__67-70.png new file mode 100644 index 0000000..93c771a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__71-75.png new file mode 100644 index 0000000..fe08dfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__76-80.png new file mode 100644 index 0000000..23fdea1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__81-85.png new file mode 100644 index 0000000..43f0eb0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__86-90.png new file mode 100644 index 0000000..d2ad5c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__91-95.png new file mode 100644 index 0000000..551efa2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__96-99.png new file mode 100644 index 0000000..402bc47 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__01-05.png new file mode 100644 index 0000000..e1562ec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__06-10.png new file mode 100644 index 0000000..1460efa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__100.png new file mode 100644 index 0000000..75d9caa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__11-15.png new file mode 100644 index 0000000..3b12784 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__16-20.png new file mode 100644 index 0000000..bde0033 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__21-30.png new file mode 100644 index 0000000..5305623 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__31-40.png new file mode 100644 index 0000000..cfdbb52 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__41-50.png new file mode 100644 index 0000000..a6df301 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__51-55.png new file mode 100644 index 0000000..5aa9234 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__56-60.png new file mode 100644 index 0000000..96db475 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__61-65.png new file mode 100644 index 0000000..ee0ad20 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__66.png new file mode 100644 index 0000000..1949ba2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__67-70.png new file mode 100644 index 0000000..0aa683d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__71-75.png new file mode 100644 index 0000000..3570639 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__76-80.png new file mode 100644 index 0000000..d8308ac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__81-85.png new file mode 100644 index 0000000..ba10a5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__86-90.png new file mode 100644 index 0000000..ec14f7e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__91-95.png new file mode 100644 index 0000000..2f7f7b0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__96-99.png new file mode 100644 index 0000000..1c497f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__01-05.png new file mode 100644 index 0000000..4e6ff7e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__06-10.png new file mode 100644 index 0000000..c2c5e73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__100.png new file mode 100644 index 0000000..1b479f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__11-15.png new file mode 100644 index 0000000..fcfcc9f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__16-20.png new file mode 100644 index 0000000..030f4ac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__21-30.png new file mode 100644 index 0000000..e1401bf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__31-40.png new file mode 100644 index 0000000..e5f8b9f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__41-50.png new file mode 100644 index 0000000..7d877e0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__51-55.png new file mode 100644 index 0000000..3bd96ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__56-60.png new file mode 100644 index 0000000..598c926 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__61-65.png new file mode 100644 index 0000000..23df58b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__66.png new file mode 100644 index 0000000..d252767 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__67-70.png new file mode 100644 index 0000000..23f4d06 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__71-75.png new file mode 100644 index 0000000..570ec79 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__76-80.png new file mode 100644 index 0000000..1c9c537 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__81-85.png new file mode 100644 index 0000000..5f3beae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__86-90.png new file mode 100644 index 0000000..8e79471 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__91-95.png new file mode 100644 index 0000000..12238d4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__96-99.png new file mode 100644 index 0000000..605d75c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/fragments.json new file mode 100644 index 0000000..2b9948f --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/fragments.json @@ -0,0 +1,3062 @@ +[ + { + "PageNumber": 1, + "Top": 1139, + "Left": 814, + "Width": 22, + "Height": 14, + "Text": "125", + "Confidence": null, + "CenterX": 825 + }, + { + "PageNumber": 1, + "Top": 68, + "Left": 258, + "Width": 471, + "Height": 15, + "Text": "ARCANE AETHER CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 213, + "Width": 10, + "Height": 10, + "Text": "A", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 355, + "Width": 10, + "Height": 10, + "Text": "B", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 496, + "Width": 11, + "Height": 10, + "Text": "C", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 638, + "Width": 13, + "Height": 10, + "Text": "D", + "Confidence": null, + "CenterX": 644.5 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 782, + "Width": 9, + "Height": 10, + "Text": "E", + "Confidence": null, + "CenterX": 786.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 149, + "Width": 48, + "Height": 8, + "Text": "Tiny bubbles.", + "Confidence": null, + "CenterX": 173 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 291, + "Width": 112, + "Height": 8, + "Text": "Aether fizzles in a disappointing", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 291, + "Width": 28, + "Height": 8, + "Text": "fashion.", + "Confidence": null, + "CenterX": 305 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 433, + "Width": 258, + "Height": 8, + "Text": "Ooooh. That\u0027s the way to frighten him That looked like it hurt. It didn\u0027t.", + "Confidence": null, + "CenterX": 562 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 717, + "Width": 51, + "Height": 8, + "Text": "Did you miss?", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 149, + "Width": 15, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 291, + "Width": 15, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 298.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 433, + "Width": 15, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 575, + "Width": 15, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 717, + "Width": 15, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 149, + "Width": 127, + "Height": 8, + "Text": "Foe steps away from the worst of it.", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 291, + "Width": 38, + "Height": 8, + "Text": "Foe ducks.", + "Confidence": null, + "CenterX": 310 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 433, + "Width": 127, + "Height": 8, + "Text": "Keep that up and you might actually", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 433, + "Width": 33, + "Height": 8, + "Text": "hurt him.", + "Confidence": null, + "CenterX": 449.5 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 575, + "Width": 95, + "Height": 8, + "Text": "Foe leaps back, frightened.", + "Confidence": null, + "CenterX": 622.5 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 717, + "Width": 125, + "Height": 8, + "Text": "Foes sucks in air as the blast burns", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 717, + "Width": 16, + "Height": 8, + "Text": "him.", + "Confidence": null, + "CenterX": 725 + }, + { + "PageNumber": 1, + "Top": 179, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 149, + "Width": 15, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 291, + "Width": 15, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 298.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 433, + "Width": 15, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 575, + "Width": 15, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 717, + "Width": 33, + "Height": 8, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 149, + "Width": 130, + "Height": 8, + "Text": "Foes loses initiative next round. You", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 149, + "Width": 64, + "Height": 8, + "Text": "have him worried.", + "Confidence": null, + "CenterX": 181 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 291, + "Width": 130, + "Height": 8, + "Text": "Foe spins around. He loses initiative", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 291, + "Width": 42, + "Height": 8, + "Text": "for 1 round.", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 433, + "Width": 57, + "Height": 8, + "Text": "Foe is on guard.", + "Confidence": null, + "CenterX": 461.5 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 575, + "Width": 75, + "Height": 8, + "Text": "Blast unbalances foe.", + "Confidence": null, + "CenterX": 612.5 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 717, + "Width": 68, + "Height": 8, + "Text": "Foe winces in pain.", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 149, + "Width": 15, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 291, + "Width": 15, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 298.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 433, + "Width": 30, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 448 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 575, + "Width": 30, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 717, + "Width": 33, + "Height": 8, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 149, + "Width": 131, + "Height": 8, + "Text": "Foe is spun about and loses initiative", + "Confidence": null, + "CenterX": 214.5 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 149, + "Width": 41, + "Height": 8, + "Text": "next round.", + "Confidence": null, + "CenterX": 169.5 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 291, + "Width": 135, + "Height": 8, + "Text": "Foe brings his guard up, frightened by", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 291, + "Width": 46, + "Height": 8, + "Text": "your display.", + "Confidence": null, + "CenterX": 314 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 433, + "Width": 131, + "Height": 8, + "Text": "Blast causes foe to stumble back, his", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 433, + "Width": 34, + "Height": 8, + "Text": "guard up.", + "Confidence": null, + "CenterX": 450 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 575, + "Width": 105, + "Height": 8, + "Text": "Irritating burns put foe on the", + "Confidence": null, + "CenterX": 627.5 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 575, + "Width": 36, + "Height": 8, + "Text": "defensive.", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 717, + "Width": 96, + "Height": 8, + "Text": "Aether causes foe to twitch", + "Confidence": null, + "CenterX": 765 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 717, + "Width": 103, + "Height": 8, + "Text": "uncontrollably for a moment.", + "Confidence": null, + "CenterX": 768.5 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 272, + "Left": 149, + "Width": 15, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 272, + "Left": 291, + "Width": 30, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 272, + "Left": 433, + "Width": 33, + "Height": 8, + "Text": "\u002B8H \u2013 \u03C0", + "Confidence": null, + "CenterX": 449.5 + }, + { + "PageNumber": 1, + "Top": 272, + "Left": 575, + "Width": 35, + "Height": 8, + "Text": "\u002B10H \u2013 \u03C0", + "Confidence": null, + "CenterX": 592.5 + }, + { + "PageNumber": 1, + "Top": 272, + "Left": 717, + "Width": 37, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 735.5 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 149, + "Width": 135, + "Height": 8, + "Text": "Unbalanced foe loses initiative for two", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 149, + "Width": 27, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 291, + "Width": 46, + "Height": 8, + "Text": "Minor burns.", + "Confidence": null, + "CenterX": 314 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 433, + "Width": 108, + "Height": 8, + "Text": "Crackling blast puts foe on the", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 433, + "Width": 36, + "Height": 8, + "Text": "defensive.", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 575, + "Width": 53, + "Height": 8, + "Text": "Glancing blow.", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 717, + "Width": 108, + "Height": 8, + "Text": "Strong blast sends foe reeling.", + "Confidence": null, + "CenterX": 771 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "21-30", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 310, + "Left": 149, + "Width": 15, + "Height": 8, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 310, + "Left": 291, + "Width": 48, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0(-10)", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 310, + "Left": 433, + "Width": 53, + "Height": 8, + "Text": "\u002B10H \u2013 \u03C0(-15)", + "Confidence": null, + "CenterX": 459.5 + }, + { + "PageNumber": 1, + "Top": 310, + "Left": 575, + "Width": 53, + "Height": 8, + "Text": "\u002B15H \u2013 \u03C0(-20)", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 310, + "Left": 717, + "Width": 37, + "Height": 8, + "Text": "\u002B20H \u2013 \u2211", + "Confidence": null, + "CenterX": 735.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 149, + "Width": 276, + "Height": 8, + "Text": "Burns cause foe to bring up his guard. Confused foe brings up his guard. He", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 291, + "Width": 107, + "Height": 8, + "Text": "loses initiative for two rounds.", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 433, + "Width": 100, + "Height": 8, + "Text": "Blast burns foe\u0027s lower legs.", + "Confidence": null, + "CenterX": 483 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 575, + "Width": 125, + "Height": 8, + "Text": "Aether bursts just before it hits foe.", + "Confidence": null, + "CenterX": 637.5 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 575, + "Width": 136, + "Height": 8, + "Text": "The blast catches foe low on the body.", + "Confidence": null, + "CenterX": 643 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 717, + "Width": 125, + "Height": 8, + "Text": "Aether burns deeply into foe\u0027s foot.", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "31-40", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 149, + "Width": 35, + "Height": 8, + "Text": "\u002B10H \u2013 \u03C0", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 291, + "Width": 30, + "Height": 8, + "Text": "\u002B9H \u2013 \u03C0", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 433, + "Width": 51, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 458.5 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 575, + "Width": 55, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 602.5 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 717, + "Width": 82, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211 \u2013 \u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 758 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 149, + "Width": 130, + "Height": 8, + "Text": "Foe is distracted by the sudden pain.", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 291, + "Width": 116, + "Height": 8, + "Text": "Staggering blast sends foe to his", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 374, + "Left": 291, + "Width": 23, + "Height": 8, + "Text": "knees.", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 433, + "Width": 90, + "Height": 8, + "Text": "Aether causes bad burns.", + "Confidence": null, + "CenterX": 478 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 575, + "Width": 272, + "Height": 8, + "Text": "Foe is spun by a strike to his shoulder. Powerful blast knocks foe back three", + "Confidence": null, + "CenterX": 711 + }, + { + "PageNumber": 1, + "Top": 374, + "Left": 717, + "Width": 111, + "Height": 8, + "Text": "steps and cause him to drop all", + "Confidence": null, + "CenterX": 772.5 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 717, + "Width": 28, + "Height": 8, + "Text": "objects.", + "Confidence": null, + "CenterX": 731 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "41-50", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 149, + "Width": 42, + "Height": 8, + "Text": "\u002B15H \u2013 2\u2211", + "Confidence": null, + "CenterX": 170 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 291, + "Width": 51, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 433, + "Width": 37, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 575, + "Width": 55, + "Height": 8, + "Text": "\u002B25H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 602.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 717, + "Width": 63, + "Height": 8, + "Text": "\u002B25H \u2013 \u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 748.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 149, + "Width": 126, + "Height": 8, + "Text": "Burns cause foe to wince with pain.", + "Confidence": null, + "CenterX": 212 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 291, + "Width": 118, + "Height": 8, + "Text": "Blast rocks foe back on his heels.", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 433, + "Width": 89, + "Height": 8, + "Text": "Hard blow disorients foe.", + "Confidence": null, + "CenterX": 477.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 575, + "Width": 123, + "Height": 8, + "Text": "Slicing blow causes foe to stumble", + "Confidence": null, + "CenterX": 636.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 575, + "Width": 41, + "Height": 8, + "Text": "back 5 feet.", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 717, + "Width": 135, + "Height": 8, + "Text": "Forceful blast burns through foe\u0027s leg.", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 149, + "Width": 37, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 167.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 291, + "Width": 55, + "Height": 8, + "Text": "\u002B12H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 318.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 433, + "Width": 61, + "Height": 8, + "Text": "\u002B12H \u2013 \u2211 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 463.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 575, + "Width": 56, + "Height": 8, + "Text": "2\u2211 \u2013 2\u222B \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 603 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 717, + "Width": 108, + "Height": 8, + "Text": "\u002B20H \u2013 3\u2211 \u2013 2\u220F \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 771 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 149, + "Width": 90, + "Height": 8, + "Text": "Crackling blast dazes foe.", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 291, + "Width": 125, + "Height": 8, + "Text": "Blast to foe\u0027s back catches him and", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 291, + "Width": 131, + "Height": 8, + "Text": "spins him like a top. All small bits of", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 291, + "Width": 107, + "Height": 8, + "Text": "metal on his back turn to slag.", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 433, + "Width": 129, + "Height": 8, + "Text": "Foe is thrown back 10 feet and must", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 433, + "Width": 128, + "Height": 8, + "Text": "make an agility maneuver to land on", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 433, + "Width": 28, + "Height": 8, + "Text": "his feet.", + "Confidence": null, + "CenterX": 447 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 575, + "Width": 94, + "Height": 8, + "Text": "Aether rings foe like a bell.", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 717, + "Width": 117, + "Height": 8, + "Text": "Blast to foe\u0027s gut puts him down.", + "Confidence": null, + "CenterX": 775.5 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 149, + "Width": 42, + "Height": 8, + "Text": "\u002B15H \u2013 2\u2211", + "Confidence": null, + "CenterX": 170 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 291, + "Width": 90, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 433, + "Width": 69, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 467.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 575, + "Width": 85, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 617.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 717, + "Width": 94, + "Height": 8, + "Text": "\u002B25H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 764 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 149, + "Width": 119, + "Height": 8, + "Text": "Powerful blow makes foe suck air", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 149, + "Width": 75, + "Height": 8, + "Text": "through gritted teeth.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 291, + "Width": 130, + "Height": 8, + "Text": "Aether catches foe in shield arm. He", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 291, + "Width": 124, + "Height": 8, + "Text": "cries out any clutches it to stop the", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 291, + "Width": 32, + "Height": 8, + "Text": "bleeding.", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 433, + "Width": 129, + "Height": 8, + "Text": "Aether strike causes any leg greaves", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 433, + "Width": 57, + "Height": 8, + "Text": "to be destroyed.", + "Confidence": null, + "CenterX": 461.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 575, + "Width": 131, + "Height": 8, + "Text": "Blast hits foe\u0027s shield arm. If foe has", + "Confidence": null, + "CenterX": 640.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 575, + "Width": 134, + "Height": 8, + "Text": "shield, it explodes. If not, foe\u0027s shield", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 575, + "Width": 132, + "Height": 8, + "Text": "arm is paralyzed from nerve damage.", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 717, + "Width": 138, + "Height": 8, + "Text": "Precision strike blows straight through", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 717, + "Width": 36, + "Height": 8, + "Text": "foe\u0027s side.", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 149, + "Width": 44, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 171 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 291, + "Width": 92, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 433, + "Width": 76, + "Height": 8, + "Text": "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 471 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 575, + "Width": 76, + "Height": 8, + "Text": "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 613 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 717, + "Width": 94, + "Height": 8, + "Text": "\u002B25H \u2013 5\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 764 + }, + { + "PageNumber": 1, + "Top": 551, + "Left": 149, + "Width": 123, + "Height": 8, + "Text": "Hammer blast shatters foe\u0027s shield", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 563, + "Left": 149, + "Width": 16, + "Height": 8, + "Text": "arm.", + "Confidence": null, + "CenterX": 157 + }, + { + "PageNumber": 1, + "Top": 551, + "Left": 291, + "Width": 135, + "Height": 8, + "Text": "Aether cause foe\u0027s shoulder to expand", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 563, + "Left": 291, + "Width": 42, + "Height": 8, + "Text": "and shatter.", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 551, + "Left": 433, + "Width": 134, + "Height": 8, + "Text": "Blast of aether hits chest and shatters", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 563, + "Left": 433, + "Width": 39, + "Height": 8, + "Text": "both arms.", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 551, + "Left": 575, + "Width": 128, + "Height": 8, + "Text": "Blast shatters foe\u0027s skull, killing him", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 563, + "Left": 575, + "Width": 32, + "Height": 8, + "Text": "instantly.", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 551, + "Left": 717, + "Width": 120, + "Height": 8, + "Text": "Surgical strike bursts head like an", + "Confidence": null, + "CenterX": 777 + }, + { + "PageNumber": 1, + "Top": 563, + "Left": 717, + "Width": 59, + "Height": 8, + "Text": "over-ripe melon.", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 111, + "Width": 13, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 576, + "Left": 149, + "Width": 102, + "Height": 8, + "Text": "\u002B25H \u2013 3\u2211\u220F\u2013 (-75) \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 576, + "Left": 291, + "Width": 116, + "Height": 8, + "Text": "\u002B20H \u2013 3\u2211 \u2013 5\u222B \u2013 (-90) \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 576, + "Left": 433, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 443 + }, + { + "PageNumber": 1, + "Top": 576, + "Left": 575, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 576, + "Left": 717, + "Width": 20, + "Height": 8, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 149, + "Width": 132, + "Height": 8, + "Text": "Blast to foe\u0027s back forces him to fight", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 149, + "Width": 58, + "Height": 8, + "Text": "around the pain.", + "Confidence": null, + "CenterX": 178 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 291, + "Width": 112, + "Height": 8, + "Text": "Blast catches foe in lower back.", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 433, + "Width": 128, + "Height": 8, + "Text": "Heat expansion causes both of foe\u0027s", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 433, + "Width": 49, + "Height": 8, + "Text": "arms to snap.", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 575, + "Width": 119, + "Height": 8, + "Text": "Focused blow creases foe\u0027s head.", + "Confidence": null, + "CenterX": 634.5 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 575, + "Width": 81, + "Height": 8, + "Text": "How\u0027d he survive that?", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 717, + "Width": 133, + "Height": 8, + "Text": "Blast catches foe in shield arm. If foe", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 717, + "Width": 132, + "Height": 8, + "Text": "has a shield, it explodes. If not, foe\u0027s", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 717, + "Width": 77, + "Height": 8, + "Text": "shoulder is shattered.", + "Confidence": null, + "CenterX": 755.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 149, + "Width": 71, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 184.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 291, + "Width": 71, + "Height": 8, + "Text": "\u002B14H \u2013 \u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 326.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 433, + "Width": 48, + "Height": 8, + "Text": "3\u2211\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 575, + "Width": 94, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 717, + "Width": 66, + "Height": 8, + "Text": "1\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 750 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 149, + "Width": 128, + "Height": 8, + "Text": "Blow to foe\u0027s midsection makes him", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 149, + "Width": 79, + "Height": 8, + "Text": "grit his teeth in agony.", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 291, + "Width": 137, + "Height": 8, + "Text": "Strike catches foe in his side. He cries", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 291, + "Width": 89, + "Height": 8, + "Text": "out and falls to one knee.", + "Confidence": null, + "CenterX": 335.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 433, + "Width": 133, + "Height": 8, + "Text": "Aether catches foe in the back. There", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 433, + "Width": 96, + "Height": 8, + "Text": "is extensive nerve damage.", + "Confidence": null, + "CenterX": 481 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 575, + "Width": 125, + "Height": 8, + "Text": "Stunning blast shatters foe\u0027s shield", + "Confidence": null, + "CenterX": 637.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 575, + "Width": 103, + "Height": 8, + "Text": "arm. Foe reels with the pain.", + "Confidence": null, + "CenterX": 626.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 717, + "Width": 121, + "Height": 8, + "Text": "Aether grounds into foe\u0027s nervous", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 717, + "Width": 136, + "Height": 8, + "Text": "system, causing severe damage. Both", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 717, + "Width": 101, + "Height": 8, + "Text": "of his arms become useless.", + "Confidence": null, + "CenterX": 767.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 149, + "Width": 69, + "Height": 8, + "Text": "\u002B30H \u2013 \u2211\u220F\u2013 (-20)", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 291, + "Width": 92, + "Height": 8, + "Text": "\u002B25H \u2013 2\u2211\u220F\u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 433, + "Width": 57, + "Height": 8, + "Text": "3\u2211 \u2013 \u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 461.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 575, + "Width": 94, + "Height": 8, + "Text": "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 717, + "Width": 20, + "Height": 8, + "Text": "(-25)", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 690, + "Left": 149, + "Width": 136, + "Height": 8, + "Text": "Strike to foe\u0027s abdomen. The muscles", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 702, + "Left": 149, + "Width": 75, + "Height": 8, + "Text": "are terribly damaged.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 690, + "Left": 291, + "Width": 118, + "Height": 8, + "Text": "Blow to feet sends foe sprawling.", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 702, + "Left": 291, + "Width": 110, + "Height": 8, + "Text": "Several muscles and bones are", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 291, + "Width": 35, + "Height": 8, + "Text": "damaged.", + "Confidence": null, + "CenterX": 308.5 + }, + { + "PageNumber": 1, + "Top": 690, + "Left": 433, + "Width": 129, + "Height": 8, + "Text": "Foe is smashed to the ground by the", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 702, + "Left": 433, + "Width": 117, + "Height": 8, + "Text": "Aether. He is bleeding internally.", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 690, + "Left": 575, + "Width": 124, + "Height": 8, + "Text": "Terrible heat shatters foe\u0027s weapon", + "Confidence": null, + "CenterX": 637 + }, + { + "PageNumber": 1, + "Top": 702, + "Left": 575, + "Width": 16, + "Height": 8, + "Text": "arm.", + "Confidence": null, + "CenterX": 583 + }, + { + "PageNumber": 1, + "Top": 690, + "Left": 717, + "Width": 136, + "Height": 8, + "Text": "Awesome chest strike knocks foe onto", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 702, + "Left": 717, + "Width": 32, + "Height": 8, + "Text": "his back.", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 705, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 149, + "Width": 85, + "Height": 8, + "Text": "\u002B20H \u2013 3\u2211 \u2013 \u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 191.5 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 291, + "Width": 94, + "Height": 8, + "Text": "\u002B15H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 433, + "Width": 94, + "Height": 8, + "Text": "\u002B15H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 480 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 575, + "Width": 94, + "Height": 8, + "Text": "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 717, + "Width": 80, + "Height": 8, + "Text": "\u002B30H \u2013 10\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 757 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 149, + "Width": 132, + "Height": 8, + "Text": "Rippling back strike snaps bones and", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 752, + "Left": 149, + "Width": 52, + "Height": 8, + "Text": "tears cartilage.", + "Confidence": null, + "CenterX": 175 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 291, + "Width": 131, + "Height": 8, + "Text": "Blast shatters several ribs. Foe grips", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 752, + "Left": 291, + "Width": 106, + "Height": 8, + "Text": "his side and falls to his knees.", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 433, + "Width": 123, + "Height": 8, + "Text": "Blast blisters foe. The burns cover", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 752, + "Left": 433, + "Width": 61, + "Height": 8, + "Text": "40% of his body.", + "Confidence": null, + "CenterX": 463.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 575, + "Width": 136, + "Height": 8, + "Text": "Foe tries to block blast with his hands.", + "Confidence": null, + "CenterX": 643 + }, + { + "PageNumber": 1, + "Top": 752, + "Left": 575, + "Width": 113, + "Height": 8, + "Text": "Hand muscles are burned away.", + "Confidence": null, + "CenterX": 631.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 717, + "Width": 120, + "Height": 8, + "Text": "Strike to foe\u0027s side causes several", + "Confidence": null, + "CenterX": 777 + }, + { + "PageNumber": 1, + "Top": 752, + "Left": 717, + "Width": 134, + "Height": 8, + "Text": "organs to burst. Foe collapses after 6", + "Confidence": null, + "CenterX": 784 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 717, + "Width": 27, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 730.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 777, + "Left": 149, + "Width": 76, + "Height": 8, + "Text": "\u002B15H \u2013 5\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 187 + }, + { + "PageNumber": 1, + "Top": 777, + "Left": 291, + "Width": 92, + "Height": 8, + "Text": "\u002B15H \u2013 5\u2211\u220F\u2013 3\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 777, + "Left": 433, + "Width": 97, + "Height": 8, + "Text": "\u002B20H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 481.5 + }, + { + "PageNumber": 1, + "Top": 777, + "Left": 575, + "Width": 87, + "Height": 8, + "Text": "\u002B25H \u2013 3\u2211 \u2013 3\u222B \u2013 (-60)", + "Confidence": null, + "CenterX": 618.5 + }, + { + "PageNumber": 1, + "Top": 777, + "Left": 717, + "Width": 70, + "Height": 8, + "Text": "\u002B35H \u2013 6\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 752 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 149, + "Width": 116, + "Height": 8, + "Text": "Brutal blast puts foe on his back,", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 149, + "Width": 95, + "Height": 8, + "Text": "cracking several vertebrae.", + "Confidence": null, + "CenterX": 196.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 291, + "Width": 123, + "Height": 8, + "Text": "Aether burns deeply into foe\u0027s calf.", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 291, + "Width": 49, + "Height": 8, + "Text": "Shin shatters.", + "Confidence": null, + "CenterX": 315.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 433, + "Width": 113, + "Height": 8, + "Text": "Aether shatters foe\u0027s thighbone.", + "Confidence": null, + "CenterX": 489.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 575, + "Width": 132, + "Height": 8, + "Text": "Blast causes foe\u0027s bowels to explode.", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 575, + "Width": 81, + "Height": 8, + "Text": "He dies after 4 rounds.", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 717, + "Width": 115, + "Height": 8, + "Text": "Heat from the Aether melts foe\u0027s", + "Confidence": null, + "CenterX": 774.5 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 717, + "Width": 129, + "Height": 8, + "Text": "backbone. He dies after 3 rounds of", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 717, + "Width": 55, + "Height": 8, + "Text": "massive shock.", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 149, + "Width": 80, + "Height": 8, + "Text": "\u002B15H \u2013 10\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 189 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 291, + "Width": 76, + "Height": 8, + "Text": "\u002B25H \u2013 7\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 433, + "Width": 76, + "Height": 8, + "Text": "\u002B20H \u2013 6\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 471 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 575, + "Width": 77, + "Height": 8, + "Text": "\u002B25H \u2013 4\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 717, + "Width": 50, + "Height": 8, + "Text": "\u002B35H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 149, + "Width": 133, + "Height": 8, + "Text": "Crushing strike shatters foe\u0027s hip. He", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 149, + "Width": 68, + "Height": 8, + "Text": "collapses in agony.", + "Confidence": null, + "CenterX": 183 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 291, + "Width": 127, + "Height": 8, + "Text": "Temple strike. If foe has a helm, he", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 291, + "Width": 135, + "Height": 8, + "Text": "placed into a permanent coma. If not,", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 291, + "Width": 30, + "Height": 8, + "Text": "foe dies.", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 433, + "Width": 126, + "Height": 8, + "Text": "Aether causes foe\u0027s hip to twist and", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 433, + "Width": 110, + "Height": 8, + "Text": "shatter. Pelvic girdle is ruined.", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 433, + "Width": 132, + "Height": 8, + "Text": "Organs slide out of abdominal cavity.", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 433, + "Width": 88, + "Height": 8, + "Text": "Foe dies after 15 rounds.", + "Confidence": null, + "CenterX": 477 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 575, + "Width": 134, + "Height": 8, + "Text": "Jawbone heats and explodes, sending", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 575, + "Width": 132, + "Height": 8, + "Text": "molten bone fragments through foe\u0027s", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 575, + "Width": 122, + "Height": 8, + "Text": "brain. It takes him 3 rounds to die", + "Confidence": null, + "CenterX": 636 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 575, + "Width": 32, + "Height": 8, + "Text": "properly.", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 717, + "Width": 123, + "Height": 8, + "Text": "Blast pulses through foe\u0027s nervous", + "Confidence": null, + "CenterX": 778.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 717, + "Width": 123, + "Height": 8, + "Text": "system. Foe dies after 6 rounds of", + "Confidence": null, + "CenterX": 778.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 717, + "Width": 24, + "Height": 8, + "Text": "agony.", + "Confidence": null, + "CenterX": 729 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 149, + "Width": 80, + "Height": 8, + "Text": "\u002B25H \u2013 15\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 189 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 291, + "Width": 19, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 300.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 433, + "Width": 96, + "Height": 8, + "Text": "\u002B25H \u2013 15\u2211\u220F\u2013 5\u222B \u2013 (-70)", + "Confidence": null, + "CenterX": 481 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 575, + "Width": 77, + "Height": 8, + "Text": "\u002B55H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 717, + "Width": 77, + "Height": 8, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 755.5 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 149, + "Width": 136, + "Height": 8, + "Text": "Aether engulfs foe\u0027s head and neck. If", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 915, + "Left": 149, + "Width": 130, + "Height": 8, + "Text": "foe has a helm, he is knocked out. If", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 149, + "Width": 116, + "Height": 8, + "Text": "not, he dies after three rounds of", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 939, + "Left": 149, + "Width": 34, + "Height": 8, + "Text": "paralysis.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 291, + "Width": 116, + "Height": 8, + "Text": "Strike burns foe\u0027s windpipe. Foe", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 915, + "Left": 291, + "Width": 126, + "Height": 8, + "Text": "collapses and dies after 12 helpless", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 291, + "Width": 27, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 433, + "Width": 130, + "Height": 8, + "Text": "Aether begins to burn foe at the feet.", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 915, + "Left": 433, + "Width": 127, + "Height": 8, + "Text": "It devours him up to the knees. Foe", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 433, + "Width": 94, + "Height": 8, + "Text": "dies after 9 terrible rounds", + "Confidence": null, + "CenterX": 480 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 575, + "Width": 128, + "Height": 8, + "Text": "Foe inhales Aether. Lungs burn and", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 915, + "Left": 575, + "Width": 121, + "Height": 8, + "Text": "explode. Death after one round of", + "Confidence": null, + "CenterX": 635.5 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 575, + "Width": 24, + "Height": 8, + "Text": "agony.", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 717, + "Width": 117, + "Height": 8, + "Text": "Foe\u0027s body is reduced to a pile of", + "Confidence": null, + "CenterX": 775.5 + }, + { + "PageNumber": 1, + "Top": 915, + "Left": 717, + "Width": 51, + "Height": 8, + "Text": "smoking pulp.", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 102, + "Width": 31, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 149, + "Width": 19, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 158.5 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 291, + "Width": 48, + "Height": 8, + "Text": "\u002B30H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 433, + "Width": 94, + "Height": 8, + "Text": "\u002B25H \u2013 9\u2211\u220F \u2013 6\u222B \u2013 (-75)", + "Confidence": null, + "CenterX": 480 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 575, + "Width": 73, + "Height": 8, + "Text": "\u002B25H \u2013 \u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 611.5 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 717, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 149, + "Width": 134, + "Height": 8, + "Text": "Head strike gives multiple fractures to", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 977, + "Left": 149, + "Width": 134, + "Height": 8, + "Text": "foe\u0027s cranium. He dies after 3 rounds", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 149, + "Width": 33, + "Height": 8, + "Text": "of agony.", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 291, + "Width": 135, + "Height": 8, + "Text": "Body is terribly burned. Foe dies after", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 977, + "Left": 291, + "Width": 34, + "Height": 8, + "Text": "2 rounds.", + "Confidence": null, + "CenterX": 308 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 433, + "Width": 135, + "Height": 8, + "Text": "Sizzling blast cause foe\u0027s eyes to flash", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 977, + "Left": 433, + "Width": 77, + "Height": 8, + "Text": "as his brain burns up.", + "Confidence": null, + "CenterX": 471.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 575, + "Width": 111, + "Height": 8, + "Text": "Foe\u0027s lungs and heart swell and", + "Confidence": null, + "CenterX": 630.5 + }, + { + "PageNumber": 1, + "Top": 977, + "Left": 575, + "Width": 119, + "Height": 8, + "Text": "explode, blowing out of his chest.", + "Confidence": null, + "CenterX": 634.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 717, + "Width": 124, + "Height": 8, + "Text": "Foe is melted into a pool of sludge.", + "Confidence": null, + "CenterX": 779 + }, + { + "PageNumber": 1, + "Top": 977, + "Left": 717, + "Width": 39, + "Height": 8, + "Text": "Get a mop.", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 107, + "Width": 20, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 117 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 149, + "Width": 75, + "Height": 8, + "Text": "\u002B30H \u2013 3\u2211\u220F\u2013 (\u002B20)", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 291, + "Width": 75, + "Height": 8, + "Text": "\u002B40H \u2013 2\u2211\u220F\u2013 (\u002B20)", + "Confidence": null, + "CenterX": 328.5 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 433, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 443 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 575, + "Width": 48, + "Height": 8, + "Text": "\u002B25H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 599 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 717, + "Width": 20, + "Height": 8, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 95, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 97.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 95, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 97.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 95, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 97.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 95, + "Width": 644, + "Height": 9, + "Text": "Keeeeyyyy:::: \u00DF\u03C0=must parry \u00DF rounds; \u00DF\u220F =no parry for \u00DF rounds; \u00DF\u2211 =stunned for \u00DF rounds; \u00DF\u222B=bleed \u00DF hits per round; (-\u00DF)=foe has -\u00DF penalty; (\u002B\u00DF)=attacker gets \u002B\u00DF next round", + "Confidence": null, + "CenterX": 417 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/pages/page-001.png new file mode 100644 index 0000000..be37e9e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/parsed-cells.json new file mode 100644 index 0000000..83b5a60 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/parsed-cells.json @@ -0,0 +1,7823 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Tiny bubbles.", + "\u002B0H" + ], + "BaseLines": [ + "Tiny bubbles.", + "\u002B0H" + ], + "RawCellText": "Tiny bubbles.\n\u002B0H", + "DescriptionText": "Tiny bubbles.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 132, + "Width": 48, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 528, + "BoundsWidth": 192, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 496, + "CropWidth": 288, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Aether fizzles in a disappointing", + "fashion.", + "\u002B0H" + ], + "BaseLines": [ + "Aether fizzles in a disappointing", + "fashion.", + "\u002B0H" + ], + "RawCellText": "Aether fizzles in a disappointing\nfashion.\n\u002B0H", + "DescriptionText": "Aether fizzles in a disappointing fashion.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 132, + "Width": 112, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 528, + "BoundsWidth": 448, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 496, + "CropWidth": 544, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Ooooh. That\u0027s the way to frighten him", + "\u002B1H" + ], + "BaseLines": [ + "Ooooh. That\u0027s the way to frighten him", + "\u002B1H" + ], + "RawCellText": "Ooooh. That\u0027s the way to frighten him\n\u002B1H", + "DescriptionText": "Ooooh. That\u0027s the way to frighten him", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 132, + "Width": 129, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 528, + "BoundsWidth": 516, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 496, + "CropWidth": 612, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "That looked like it hurt. It didn\u0027t.", + "\u002B2H" + ], + "BaseLines": [ + "That looked like it hurt. It didn\u0027t.", + "\u002B2H" + ], + "RawCellText": "That looked like it hurt. It didn\u0027t.\n\u002B2H", + "DescriptionText": "That looked like it hurt. It didn\u0027t.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 565, + "Top": 132, + "Width": 126, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2260, + "BoundsTop": 528, + "BoundsWidth": 504, + "BoundsHeight": 132, + "CropLeft": 2212, + "CropTop": 496, + "CropWidth": 600, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Did you miss?", + "\u002B3H" + ], + "BaseLines": [ + "Did you miss?", + "\u002B3H" + ], + "RawCellText": "Did you miss?\n\u002B3H", + "DescriptionText": "Did you miss?", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 132, + "Width": 51, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 528, + "BoundsWidth": 204, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 496, + "CropWidth": 300, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Foe steps away from the worst of it.", + "\u002B1H" + ], + "BaseLines": [ + "Foe steps away from the worst of it.", + "\u002B1H" + ], + "RawCellText": "Foe steps away from the worst of it.\n\u002B1H", + "DescriptionText": "Foe steps away from the worst of it.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 171, + "Width": 127, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 684, + "BoundsWidth": 508, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 652, + "CropWidth": 604, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Foe ducks.", + "\u002B2H" + ], + "BaseLines": [ + "Foe ducks.", + "\u002B2H" + ], + "RawCellText": "Foe ducks.\n\u002B2H", + "DescriptionText": "Foe ducks.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 171, + "Width": 38, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 684, + "BoundsWidth": 152, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 652, + "CropWidth": 248, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Keep that up and you might actually", + "hurt him.", + "\u002B3H" + ], + "BaseLines": [ + "Keep that up and you might actually", + "hurt him.", + "\u002B3H" + ], + "RawCellText": "Keep that up and you might actually\nhurt him.\n\u002B3H", + "DescriptionText": "Keep that up and you might actually hurt him.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 171, + "Width": 127, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 684, + "BoundsWidth": 508, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 652, + "CropWidth": 604, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe leaps back, frightened.", + "\u002B4H" + ], + "BaseLines": [ + "Foe leaps back, frightened.", + "\u002B4H" + ], + "RawCellText": "Foe leaps back, frightened.\n\u002B4H", + "DescriptionText": "Foe leaps back, frightened.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 171, + "Width": 95, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 684, + "BoundsWidth": 380, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 652, + "CropWidth": 476, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Foes sucks in air as the blast burns", + "him.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Foes sucks in air as the blast burns", + "him.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Foes sucks in air as the blast burns\nhim.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Foes sucks in air as the blast burns him.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 171, + "Width": 125, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 684, + "BoundsWidth": 500, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 652, + "CropWidth": 596, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foes loses initiative next round. You", + "have him worried.", + "\u002B0H" + ], + "BaseLines": [ + "Foes loses initiative next round. You", + "have him worried.", + "\u002B0H" + ], + "RawCellText": "Foes loses initiative next round. You\nhave him worried.\n\u002B0H", + "DescriptionText": "Foes loses initiative next round. You have him worried.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 209, + "Width": 130, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 836, + "BoundsWidth": 520, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 804, + "CropWidth": 616, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe spins around. He loses initiative", + "for 1 round.", + "\u002B4H" + ], + "BaseLines": [ + "Foe spins around. He loses initiative", + "for 1 round.", + "\u002B4H" + ], + "RawCellText": "Foe spins around. He loses initiative\nfor 1 round.\n\u002B4H", + "DescriptionText": "Foe spins around. He loses initiative for 1 round.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 209, + "Width": 130, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 836, + "BoundsWidth": 520, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 804, + "CropWidth": 616, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Foe is on guard.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe is on guard.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Foe is on guard.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Foe is on guard.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 209, + "Width": 57, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 836, + "BoundsWidth": 228, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 804, + "CropWidth": 324, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Blast unbalances foe.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Blast unbalances foe.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Blast unbalances foe.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Blast unbalances foe.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 209, + "Width": 75, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 836, + "BoundsWidth": 300, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 804, + "CropWidth": 396, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Foe winces in pain.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Foe winces in pain.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Foe winces in pain.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Foe winces in pain.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 209, + "Width": 68, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 836, + "BoundsWidth": 272, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 804, + "CropWidth": 368, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe is spun about and loses initiative", + "next round.", + "\u002B5H" + ], + "BaseLines": [ + "Foe is spun about and loses initiative", + "next round.", + "\u002B5H" + ], + "RawCellText": "Foe is spun about and loses initiative\nnext round.\n\u002B5H", + "DescriptionText": "Foe is spun about and loses initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 247, + "Width": 131, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 988, + "BoundsWidth": 524, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 956, + "CropWidth": 620, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foe brings his guard up, frightened by", + "your display.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe brings his guard up, frightened by", + "your display.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Foe brings his guard up, frightened by\nyour display.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Foe brings his guard up, frightened by your display.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 247, + "Width": 135, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 988, + "BoundsWidth": 540, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 956, + "CropWidth": 636, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Blast causes foe to stumble back, his", + "guard up.", + "\u002B8H \u2013 \u03C0" + ], + "BaseLines": [ + "Blast causes foe to stumble back, his", + "guard up.", + "\u002B8H \u2013 \u03C0" + ], + "RawCellText": "Blast causes foe to stumble back, his\nguard up.\n\u002B8H \u2013 \u03C0", + "DescriptionText": "Blast causes foe to stumble back, his guard up.", + "RawAffixText": "\u002B8H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 247, + "Width": 131, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 988, + "BoundsWidth": 524, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 956, + "CropWidth": 620, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Irritating burns put foe on the", + "defensive.", + "\u002B10H \u2013 \u03C0" + ], + "BaseLines": [ + "Irritating burns put foe on the", + "defensive.", + "\u002B10H \u2013 \u03C0" + ], + "RawCellText": "Irritating burns put foe on the\ndefensive.\n\u002B10H \u2013 \u03C0", + "DescriptionText": "Irritating burns put foe on the defensive.", + "RawAffixText": "\u002B10H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 247, + "Width": 105, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 988, + "BoundsWidth": 420, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 956, + "CropWidth": 516, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Aether causes foe to twitch", + "uncontrollably for a moment.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Aether causes foe to twitch", + "uncontrollably for a moment.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Aether causes foe to twitch\nuncontrollably for a moment.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Aether causes foe to twitch uncontrollably for a moment.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 247, + "Width": 103, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 988, + "BoundsWidth": 412, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 956, + "CropWidth": 508, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "A", + "Lines": [ + "Unbalanced foe loses initiative for two", + "rounds.", + "\u002B8H" + ], + "BaseLines": [ + "Unbalanced foe loses initiative for two", + "rounds.", + "\u002B8H" + ], + "RawCellText": "Unbalanced foe loses initiative for two\nrounds.\n\u002B8H", + "DescriptionText": "Unbalanced foe loses initiative for two rounds.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 286, + "Width": 135, + "Height": 32 + }, + "SourceImagePath": "arcane-aether/cells/none__a__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1144, + "BoundsWidth": 540, + "BoundsHeight": 128, + "CropLeft": 548, + "CropTop": 1112, + "CropWidth": 636, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "B", + "Lines": [ + "Minor burns.", + "\u002B5H \u2013 \u03C0(-10)" + ], + "BaseLines": [ + "Minor burns.", + "\u002B5H \u2013 \u03C0(-10)" + ], + "RawCellText": "Minor burns.\n\u002B5H \u2013 \u03C0(-10)", + "DescriptionText": "Minor burns.", + "RawAffixText": "\u002B5H \u2013 \u03C0(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 286, + "Width": 48, + "Height": 32 + }, + "SourceImagePath": "arcane-aether/cells/none__b__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 1144, + "BoundsWidth": 192, + "BoundsHeight": 128, + "CropLeft": 1116, + "CropTop": 1112, + "CropWidth": 288, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "C", + "Lines": [ + "Crackling blast puts foe on the", + "defensive.", + "\u002B10H \u2013 \u03C0(-15)" + ], + "BaseLines": [ + "Crackling blast puts foe on the", + "defensive.", + "\u002B10H \u2013 \u03C0(-15)" + ], + "RawCellText": "Crackling blast puts foe on the\ndefensive.\n\u002B10H \u2013 \u03C0(-15)", + "DescriptionText": "Crackling blast puts foe on the defensive.", + "RawAffixText": "\u002B10H \u2013 \u03C0(-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 286, + "Width": 108, + "Height": 32 + }, + "SourceImagePath": "arcane-aether/cells/none__c__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1144, + "BoundsWidth": 432, + "BoundsHeight": 128, + "CropLeft": 1684, + "CropTop": 1112, + "CropWidth": 528, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "D", + "Lines": [ + "Glancing blow.", + "\u002B15H \u2013 \u03C0(-20)" + ], + "BaseLines": [ + "Glancing blow.", + "\u002B15H \u2013 \u03C0(-20)" + ], + "RawCellText": "Glancing blow.\n\u002B15H \u2013 \u03C0(-20)", + "DescriptionText": "Glancing blow.", + "RawAffixText": "\u002B15H \u2013 \u03C0(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 286, + "Width": 53, + "Height": 32 + }, + "SourceImagePath": "arcane-aether/cells/none__d__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 1144, + "BoundsWidth": 212, + "BoundsHeight": 128, + "CropLeft": 2252, + "CropTop": 1112, + "CropWidth": 308, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "E", + "Lines": [ + "Strong blast sends foe reeling.", + "\u002B20H \u2013 \u2211" + ], + "BaseLines": [ + "Strong blast sends foe reeling.", + "\u002B20H \u2013 \u2211" + ], + "RawCellText": "Strong blast sends foe reeling.\n\u002B20H \u2013 \u2211", + "DescriptionText": "Strong blast sends foe reeling.", + "RawAffixText": "\u002B20H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 286, + "Width": 108, + "Height": 32 + }, + "SourceImagePath": "arcane-aether/cells/none__e__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 1144, + "BoundsWidth": 432, + "BoundsHeight": 128, + "CropLeft": 2820, + "CropTop": 1112, + "CropWidth": 528, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "A", + "Lines": [ + "Burns cause foe to bring up his guard.", + "\u002B10H \u2013 \u03C0" + ], + "BaseLines": [ + "Burns cause foe to bring up his guard.", + "\u002B10H \u2013 \u03C0" + ], + "RawCellText": "Burns cause foe to bring up his guard.\n\u002B10H \u2013 \u03C0", + "DescriptionText": "Burns cause foe to bring up his guard.", + "RawAffixText": "\u002B10H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 324, + "Width": 138, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1296, + "BoundsWidth": 552, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 1264, + "CropWidth": 648, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "B", + "Lines": [ + "Confused foe brings up his guard. He", + "loses initiative for two rounds.", + "\u002B9H \u2013 \u03C0" + ], + "BaseLines": [ + "Confused foe brings up his guard. He", + "loses initiative for two rounds.", + "\u002B9H \u2013 \u03C0" + ], + "RawCellText": "Confused foe brings up his guard. He\nloses initiative for two rounds.\n\u002B9H \u2013 \u03C0", + "DescriptionText": "Confused foe brings up his guard. He loses initiative for two rounds.", + "RawAffixText": "\u002B9H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 324, + "Width": 134, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 1296, + "BoundsWidth": 536, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 1264, + "CropWidth": 632, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "C", + "Lines": [ + "Blast burns foe\u0027s lower legs.", + "\u002B15H \u2013 \u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Blast burns foe\u0027s lower legs.", + "\u002B15H \u2013 \u2211 \u2013 \u222B" + ], + "RawCellText": "Blast burns foe\u0027s lower legs.\n\u002B15H \u2013 \u2211 \u2013 \u222B", + "DescriptionText": "Blast burns foe\u0027s lower legs.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 324, + "Width": 100, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1296, + "BoundsWidth": 400, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 1264, + "CropWidth": 496, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "D", + "Lines": [ + "Aether bursts just before it hits foe.", + "The blast catches foe low on the body.", + "\u002B15H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Aether bursts just before it hits foe.", + "The blast catches foe low on the body.", + "\u002B15H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Aether bursts just before it hits foe.\nThe blast catches foe low on the body.\n\u002B15H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Aether bursts just before it hits foe. The blast catches foe low on the body.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 324, + "Width": 136, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 1296, + "BoundsWidth": 544, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 1264, + "CropWidth": 640, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "E", + "Lines": [ + "Aether burns deeply into foe\u0027s foot.", + "\u002B20H \u2013 2\u2211 \u2013 \u222B \u2013 (-20)" + ], + "BaseLines": [ + "Aether burns deeply into foe\u0027s foot.", + "\u002B20H \u2013 2\u2211 \u2013 \u222B \u2013 (-20)" + ], + "RawCellText": "Aether burns deeply into foe\u0027s foot.\n\u002B20H \u2013 2\u2211 \u2013 \u222B \u2013 (-20)", + "DescriptionText": "Aether burns deeply into foe\u0027s foot.", + "RawAffixText": "\u002B20H \u2013 2\u2211 \u2013 \u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 324, + "Width": 125, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 1296, + "BoundsWidth": 500, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 1264, + "CropWidth": 596, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "A", + "Lines": [ + "Foe is distracted by the sudden pain.", + "\u002B15H \u2013 2\u2211" + ], + "BaseLines": [ + "Foe is distracted by the sudden pain.", + "\u002B15H \u2013 2\u2211" + ], + "RawCellText": "Foe is distracted by the sudden pain.\n\u002B15H \u2013 2\u2211", + "DescriptionText": "Foe is distracted by the sudden pain.", + "RawAffixText": "\u002B15H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 362, + "Width": 130, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1448, + "BoundsWidth": 520, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 1416, + "CropWidth": 616, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "B", + "Lines": [ + "Staggering blast sends foe to his", + "knees.", + "\u002B15H \u2013 \u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Staggering blast sends foe to his", + "knees.", + "\u002B15H \u2013 \u2211 \u2013 \u222B" + ], + "RawCellText": "Staggering blast sends foe to his\nknees.\n\u002B15H \u2013 \u2211 \u2013 \u222B", + "DescriptionText": "Staggering blast sends foe to his knees.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 362, + "Width": 116, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 1448, + "BoundsWidth": 464, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 1416, + "CropWidth": 560, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "C", + "Lines": [ + "Aether causes bad burns.", + "\u002B15H \u2013 \u2211" + ], + "BaseLines": [ + "Aether causes bad burns.", + "\u002B15H \u2013 \u2211" + ], + "RawCellText": "Aether causes bad burns.\n\u002B15H \u2013 \u2211", + "DescriptionText": "Aether causes bad burns.", + "RawAffixText": "\u002B15H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 362, + "Width": 90, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1448, + "BoundsWidth": 360, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 1416, + "CropWidth": 456, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "D", + "Lines": [ + "Foe is spun by a strike to his shoulder.", + "\u002B25H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Foe is spun by a strike to his shoulder.", + "\u002B25H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Foe is spun by a strike to his shoulder.\n\u002B25H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Foe is spun by a strike to his shoulder.", + "RawAffixText": "\u002B25H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 362, + "Width": 141, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 1448, + "BoundsWidth": 564, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 1416, + "CropWidth": 660, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "E", + "Lines": [ + "Powerful blast knocks foe back three", + "steps and cause him to drop all", + "objects.", + "\u002B25H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Powerful blast knocks foe back three", + "steps and cause him to drop all", + "objects.", + "\u002B25H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "Powerful blast knocks foe back three\nsteps and cause him to drop all\nobjects.\n\u002B25H \u2013 \u2211\u220F \u2013 2\u222B", + "DescriptionText": "Powerful blast knocks foe back three steps and cause him to drop all objects.", + "RawAffixText": "\u002B25H \u2013 \u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 362, + "Width": 130, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 1448, + "BoundsWidth": 520, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 1416, + "CropWidth": 616, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Burns cause foe to wince with pain.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Burns cause foe to wince with pain.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Burns cause foe to wince with pain.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Burns cause foe to wince with pain.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 412, + "Width": 126, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1648, + "BoundsWidth": 504, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 1616, + "CropWidth": 600, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Blast rocks foe back on his heels.", + "\u002B12H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Blast rocks foe back on his heels.", + "\u002B12H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Blast rocks foe back on his heels.\n\u002B12H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Blast rocks foe back on his heels.", + "RawAffixText": "\u002B12H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 412, + "Width": 118, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 1648, + "BoundsWidth": 472, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 1616, + "CropWidth": 568, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard blow disorients foe.", + "\u002B12H \u2013 \u2211 \u2013 (\u002B5)" + ], + "BaseLines": [ + "Hard blow disorients foe.", + "\u002B12H \u2013 \u2211 \u2013 (\u002B5)" + ], + "RawCellText": "Hard blow disorients foe.\n\u002B12H \u2013 \u2211 \u2013 (\u002B5)", + "DescriptionText": "Hard blow disorients foe.", + "RawAffixText": "\u002B12H \u2013 \u2211 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 412, + "Width": 89, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1648, + "BoundsWidth": 356, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 1616, + "CropWidth": 452, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Slicing blow causes foe to stumble", + "back 5 feet.", + "2\u2211 \u2013 2\u222B \u2013 (\u002B5)" + ], + "BaseLines": [ + "Slicing blow causes foe to stumble", + "back 5 feet.", + "2\u2211 \u2013 2\u222B \u2013 (\u002B5)" + ], + "RawCellText": "Slicing blow causes foe to stumble\nback 5 feet.\n2\u2211 \u2013 2\u222B \u2013 (\u002B5)", + "DescriptionText": "Slicing blow causes foe to stumble back 5 feet.", + "RawAffixText": "2\u2211 \u2013 2\u222B \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 412, + "Width": 123, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 1648, + "BoundsWidth": 492, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 1616, + "CropWidth": 588, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Forceful blast burns through foe\u0027s leg.", + "\u002B20H \u2013 3\u2211 \u2013 2\u220F \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Forceful blast burns through foe\u0027s leg.", + "\u002B20H \u2013 3\u2211 \u2013 2\u220F \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "Forceful blast burns through foe\u0027s leg.\n\u002B20H \u2013 3\u2211 \u2013 2\u220F \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "Forceful blast burns through foe\u0027s leg.", + "RawAffixText": "\u002B20H \u2013 3\u2211 \u2013 2\u220F \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 412, + "Width": 135, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 1648, + "BoundsWidth": 540, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 1616, + "CropWidth": 636, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Crackling blast dazes foe.", + "\u002B15H \u2013 2\u2211" + ], + "BaseLines": [ + "Crackling blast dazes foe.", + "\u002B15H \u2013 2\u2211" + ], + "RawCellText": "Crackling blast dazes foe.\n\u002B15H \u2013 2\u2211", + "DescriptionText": "Crackling blast dazes foe.", + "RawAffixText": "\u002B15H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 450, + "Width": 90, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1800, + "BoundsWidth": 360, + "BoundsHeight": 184, + "CropLeft": 548, + "CropTop": 1768, + "CropWidth": 456, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Blast to foe\u0027s back catches him and", + "spins him like a top. All small bits of", + "metal on his back turn to slag.", + "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Blast to foe\u0027s back catches him and", + "spins him like a top. All small bits of", + "metal on his back turn to slag.", + "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Blast to foe\u0027s back catches him and\nspins him like a top. All small bits of\nmetal on his back turn to slag.\n\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Blast to foe\u0027s back catches him and spins him like a top. All small bits of metal on his back turn to slag.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 450, + "Width": 131, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 1800, + "BoundsWidth": 524, + "BoundsHeight": 184, + "CropLeft": 1116, + "CropTop": 1768, + "CropWidth": 620, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Foe is thrown back 10 feet and must", + "make an agility maneuver to land on", + "his feet.", + "\u002B20H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Foe is thrown back 10 feet and must", + "make an agility maneuver to land on", + "his feet.", + "\u002B20H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Foe is thrown back 10 feet and must\nmake an agility maneuver to land on\nhis feet.\n\u002B20H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Foe is thrown back 10 feet and must make an agility maneuver to land on his feet.", + "RawAffixText": "\u002B20H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 450, + "Width": 129, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1800, + "BoundsWidth": 516, + "BoundsHeight": 184, + "CropLeft": 1684, + "CropTop": 1768, + "CropWidth": 612, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Aether rings foe like a bell.", + "\u002B15H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-10)" + ], + "BaseLines": [ + "Aether rings foe like a bell.", + "\u002B15H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-10)" + ], + "RawCellText": "Aether rings foe like a bell.\n\u002B15H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-10)", + "DescriptionText": "Aether rings foe like a bell.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 450, + "Width": 94, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 1800, + "BoundsWidth": 376, + "BoundsHeight": 184, + "CropLeft": 2252, + "CropTop": 1768, + "CropWidth": 472, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Blast to foe\u0027s gut puts him down.", + "\u002B25H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Blast to foe\u0027s gut puts him down.", + "\u002B25H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Blast to foe\u0027s gut puts him down.\n\u002B25H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Blast to foe\u0027s gut puts him down.", + "RawAffixText": "\u002B25H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 450, + "Width": 117, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 1800, + "BoundsWidth": 468, + "BoundsHeight": 184, + "CropLeft": 2820, + "CropTop": 1768, + "CropWidth": 564, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Powerful blow makes foe suck air", + "through gritted teeth.", + "\u002B15H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Powerful blow makes foe suck air", + "through gritted teeth.", + "\u002B15H \u2013 \u2211\u220F" + ], + "RawCellText": "Powerful blow makes foe suck air\nthrough gritted teeth.\n\u002B15H \u2013 \u2211\u220F", + "DescriptionText": "Powerful blow makes foe suck air through gritted teeth.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 501, + "Width": 119, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2004, + "BoundsWidth": 476, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 1972, + "CropWidth": 572, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Aether catches foe in shield arm. He", + "cries out any clutches it to stop the", + "bleeding.", + "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Aether catches foe in shield arm. He", + "cries out any clutches it to stop the", + "bleeding.", + "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Aether catches foe in shield arm. He\ncries out any clutches it to stop the\nbleeding.\n\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Aether catches foe in shield arm. He cries out any clutches it to stop the bleeding.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 501, + "Width": 130, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2004, + "BoundsWidth": 520, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 1972, + "CropWidth": 616, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Aether strike causes any leg greaves", + "to be destroyed.", + "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Aether strike causes any leg greaves", + "to be destroyed.", + "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Aether strike causes any leg greaves\nto be destroyed.\n\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Aether strike causes any leg greaves to be destroyed.", + "RawAffixText": "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 501, + "Width": 129, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2004, + "BoundsWidth": 516, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 1972, + "CropWidth": 612, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blast hits foe\u0027s shield arm. If foe has", + "shield, it explodes. If not, foe\u0027s shield", + "arm is paralyzed from nerve damage.", + "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Blast hits foe\u0027s shield arm. If foe has", + "shield, it explodes. If not, foe\u0027s shield", + "arm is paralyzed from nerve damage.", + "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Blast hits foe\u0027s shield arm. If foe has\nshield, it explodes. If not, foe\u0027s shield\narm is paralyzed from nerve damage.\n\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Blast hits foe\u0027s shield arm. If foe has shield, it explodes. If not, foe\u0027s shield arm is paralyzed from nerve damage.", + "RawAffixText": "\u002B15H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 501, + "Width": 134, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2004, + "BoundsWidth": 536, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 1972, + "CropWidth": 632, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Precision strike blows straight through", + "foe\u0027s side.", + "\u002B25H \u2013 5\u2211\u220F \u2013 3\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Precision strike blows straight through", + "foe\u0027s side.", + "\u002B25H \u2013 5\u2211\u220F \u2013 3\u222B \u2013 (-30)" + ], + "RawCellText": "Precision strike blows straight through\nfoe\u0027s side.\n\u002B25H \u2013 5\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "DescriptionText": "Precision strike blows straight through foe\u0027s side.", + "RawAffixText": "\u002B25H \u2013 5\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 501, + "Width": 138, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2004, + "BoundsWidth": 552, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 1972, + "CropWidth": 648, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Hammer blast shatters foe\u0027s shield", + "arm.", + "\u002B25H \u2013 3\u2211\u220F\u2013 (-75) \u2013 (\u002B20)" + ], + "BaseLines": [ + "Hammer blast shatters foe\u0027s shield", + "arm.", + "\u002B25H \u2013 3\u2211\u220F\u2013 (-75) \u2013 (\u002B20)" + ], + "RawCellText": "Hammer blast shatters foe\u0027s shield\narm.\n\u002B25H \u2013 3\u2211\u220F\u2013 (-75) \u2013 (\u002B20)", + "DescriptionText": "Hammer blast shatters foe\u0027s shield arm.", + "RawAffixText": "\u002B25H \u2013 3\u2211\u220F\u2013 (-75) \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 551, + "Width": 123, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2204, + "BoundsWidth": 492, + "BoundsHeight": 132, + "CropLeft": 548, + "CropTop": 2172, + "CropWidth": 588, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Aether cause foe\u0027s shoulder to expand", + "and shatter.", + "\u002B20H \u2013 3\u2211 \u2013 5\u222B \u2013 (-90) \u2013 (\u002B20)" + ], + "BaseLines": [ + "Aether cause foe\u0027s shoulder to expand", + "and shatter.", + "\u002B20H \u2013 3\u2211 \u2013 5\u222B \u2013 (-90) \u2013 (\u002B20)" + ], + "RawCellText": "Aether cause foe\u0027s shoulder to expand\nand shatter.\n\u002B20H \u2013 3\u2211 \u2013 5\u222B \u2013 (-90) \u2013 (\u002B20)", + "DescriptionText": "Aether cause foe\u0027s shoulder to expand and shatter.", + "RawAffixText": "\u002B20H \u2013 3\u2211 \u2013 5\u222B \u2013 (-90) \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 551, + "Width": 135, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2204, + "BoundsWidth": 540, + "BoundsHeight": 132, + "CropLeft": 1116, + "CropTop": 2172, + "CropWidth": 636, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Blast of aether hits chest and shatters", + "both arms.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast of aether hits chest and shatters", + "both arms.", + "(\u002B20)" + ], + "RawCellText": "Blast of aether hits chest and shatters\nboth arms.\n(\u002B20)", + "DescriptionText": "Blast of aether hits chest and shatters both arms.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 551, + "Width": 134, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2204, + "BoundsWidth": 536, + "BoundsHeight": 132, + "CropLeft": 1684, + "CropTop": 2172, + "CropWidth": 632, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Blast shatters foe\u0027s skull, killing him", + "instantly.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast shatters foe\u0027s skull, killing him", + "instantly.", + "(\u002B20)" + ], + "RawCellText": "Blast shatters foe\u0027s skull, killing him\ninstantly.\n(\u002B20)", + "DescriptionText": "Blast shatters foe\u0027s skull, killing him instantly.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 551, + "Width": 128, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2204, + "BoundsWidth": 512, + "BoundsHeight": 132, + "CropLeft": 2252, + "CropTop": 2172, + "CropWidth": 608, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Surgical strike bursts head like an", + "over-ripe melon.", + "(\u002B25)" + ], + "BaseLines": [ + "Surgical strike bursts head like an", + "over-ripe melon.", + "(\u002B25)" + ], + "RawCellText": "Surgical strike bursts head like an\nover-ripe melon.\n(\u002B25)", + "DescriptionText": "Surgical strike bursts head like an over-ripe melon.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 551, + "Width": 120, + "Height": 33 + }, + "SourceImagePath": "arcane-aether/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2204, + "BoundsWidth": 480, + "BoundsHeight": 132, + "CropLeft": 2820, + "CropTop": 2172, + "CropWidth": 576, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Blast to foe\u0027s back forces him to fight", + "around the pain.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Blast to foe\u0027s back forces him to fight", + "around the pain.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Blast to foe\u0027s back forces him to fight\naround the pain.\n\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Blast to foe\u0027s back forces him to fight around the pain.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 589, + "Width": 132, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2356, + "BoundsWidth": 528, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 2324, + "CropWidth": 624, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Blast catches foe in lower back.", + "\u002B14H \u2013 \u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Blast catches foe in lower back.", + "\u002B14H \u2013 \u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Blast catches foe in lower back.\n\u002B14H \u2013 \u2211\u220F \u2013 (-30)", + "DescriptionText": "Blast catches foe in lower back.", + "RawAffixText": "\u002B14H \u2013 \u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 589, + "Width": 112, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2356, + "BoundsWidth": 448, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 2324, + "CropWidth": 544, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Heat expansion causes both of foe\u0027s", + "arms to snap.", + "3\u2211\u220F \u2013 (-90)" + ], + "BaseLines": [ + "Heat expansion causes both of foe\u0027s", + "arms to snap.", + "3\u2211\u220F \u2013 (-90)" + ], + "RawCellText": "Heat expansion causes both of foe\u0027s\narms to snap.\n3\u2211\u220F \u2013 (-90)", + "DescriptionText": "Heat expansion causes both of foe\u0027s arms to snap.", + "RawAffixText": "3\u2211\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 589, + "Width": 128, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2356, + "BoundsWidth": 512, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 2324, + "CropWidth": 608, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Focused blow creases foe\u0027s head.", + "How\u0027d he survive that?", + "\u002B20H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Focused blow creases foe\u0027s head.", + "How\u0027d he survive that?", + "\u002B20H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-30)" + ], + "RawCellText": "Focused blow creases foe\u0027s head.\nHow\u0027d he survive that?\n\u002B20H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-30)", + "DescriptionText": "Focused blow creases foe\u0027s head. How\u0027d he survive that?", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 589, + "Width": 119, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2356, + "BoundsWidth": 476, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 2324, + "CropWidth": 572, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blast catches foe in shield arm. If foe", + "has a shield, it explodes. If not, foe\u0027s", + "shoulder is shattered.", + "1\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blast catches foe in shield arm. If foe", + "has a shield, it explodes. If not, foe\u0027s", + "shoulder is shattered.", + "1\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "RawCellText": "Blast catches foe in shield arm. If foe\nhas a shield, it explodes. If not, foe\u0027s\nshoulder is shattered.\n1\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "DescriptionText": "Blast catches foe in shield arm. If foe has a shield, it explodes. If not, foe\u0027s shoulder is shattered.", + "RawAffixText": "1\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "1\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "1\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 589, + "Width": 133, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2356, + "BoundsWidth": 532, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 2324, + "CropWidth": 628, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s midsection makes him", + "grit his teeth in agony.", + "\u002B30H \u2013 \u2211\u220F\u2013 (-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s midsection makes him", + "grit his teeth in agony.", + "\u002B30H \u2013 \u2211\u220F\u2013 (-20)" + ], + "RawCellText": "Blow to foe\u0027s midsection makes him\ngrit his teeth in agony.\n\u002B30H \u2013 \u2211\u220F\u2013 (-20)", + "DescriptionText": "Blow to foe\u0027s midsection makes him grit his teeth in agony.", + "RawAffixText": "\u002B30H \u2013 \u2211\u220F\u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 639, + "Width": 128, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2556, + "BoundsWidth": 512, + "BoundsHeight": 184, + "CropLeft": 548, + "CropTop": 2524, + "CropWidth": 608, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Strike catches foe in his side. He cries", + "out and falls to one knee.", + "\u002B25H \u2013 2\u2211\u220F\u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Strike catches foe in his side. He cries", + "out and falls to one knee.", + "\u002B25H \u2013 2\u2211\u220F\u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Strike catches foe in his side. He cries\nout and falls to one knee.\n\u002B25H \u2013 2\u2211\u220F\u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Strike catches foe in his side. He cries out and falls to one knee.", + "RawAffixText": "\u002B25H \u2013 2\u2211\u220F\u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 639, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2556, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 1116, + "CropTop": 2524, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Aether catches foe in the back. There", + "is extensive nerve damage.", + "3\u2211 \u2013 \u220F \u2013 (-30)" + ], + "BaseLines": [ + "Aether catches foe in the back. There", + "is extensive nerve damage.", + "3\u2211 \u2013 \u220F \u2013 (-30)" + ], + "RawCellText": "Aether catches foe in the back. There\nis extensive nerve damage.\n3\u2211 \u2013 \u220F \u2013 (-30)", + "DescriptionText": "Aether catches foe in the back. There is extensive nerve damage.", + "RawAffixText": "3\u2211 \u2013 \u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 639, + "Width": 133, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2556, + "BoundsWidth": 532, + "BoundsHeight": 184, + "CropLeft": 1684, + "CropTop": 2524, + "CropWidth": 628, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Stunning blast shatters foe\u0027s shield", + "arm. Foe reels with the pain.", + "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Stunning blast shatters foe\u0027s shield", + "arm. Foe reels with the pain.", + "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Stunning blast shatters foe\u0027s shield\narm. Foe reels with the pain.\n\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Stunning blast shatters foe\u0027s shield arm. Foe reels with the pain.", + "RawAffixText": "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 639, + "Width": 125, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2556, + "BoundsWidth": 500, + "BoundsHeight": 184, + "CropLeft": 2252, + "CropTop": 2524, + "CropWidth": 596, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Aether grounds into foe\u0027s nervous", + "system, causing severe damage. Both", + "of his arms become useless.", + "(-25)" + ], + "BaseLines": [ + "Aether grounds into foe\u0027s nervous", + "system, causing severe damage. Both", + "of his arms become useless.", + "(-25)" + ], + "RawCellText": "Aether grounds into foe\u0027s nervous\nsystem, causing severe damage. Both\nof his arms become useless.\n(-25)", + "DescriptionText": "Aether grounds into foe\u0027s nervous system, causing severe damage. Both of his arms become useless.", + "RawAffixText": "(-25)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 639, + "Width": 136, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2556, + "BoundsWidth": 544, + "BoundsHeight": 184, + "CropLeft": 2820, + "CropTop": 2524, + "CropWidth": 640, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s abdomen. The muscles", + "are terribly damaged.", + "\u002B20H \u2013 3\u2211 \u2013 \u220F \u2013 (-30)" + ], + "BaseLines": [ + "Strike to foe\u0027s abdomen. The muscles", + "are terribly damaged.", + "\u002B20H \u2013 3\u2211 \u2013 \u220F \u2013 (-30)" + ], + "RawCellText": "Strike to foe\u0027s abdomen. The muscles\nare terribly damaged.\n\u002B20H \u2013 3\u2211 \u2013 \u220F \u2013 (-30)", + "DescriptionText": "Strike to foe\u0027s abdomen. The muscles are terribly damaged.", + "RawAffixText": "\u002B20H \u2013 3\u2211 \u2013 \u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 690, + "Width": 136, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2760, + "BoundsWidth": 544, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 2728, + "CropWidth": 640, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Blow to feet sends foe sprawling.", + "Several muscles and bones are", + "damaged.", + "\u002B15H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blow to feet sends foe sprawling.", + "Several muscles and bones are", + "damaged.", + "\u002B15H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "RawCellText": "Blow to feet sends foe sprawling.\nSeveral muscles and bones are\ndamaged.\n\u002B15H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "DescriptionText": "Blow to feet sends foe sprawling. Several muscles and bones are damaged.", + "RawAffixText": "\u002B15H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 690, + "Width": 118, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2760, + "BoundsWidth": 472, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 2728, + "CropWidth": 568, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Foe is smashed to the ground by the", + "Aether. He is bleeding internally.", + "\u002B15H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Foe is smashed to the ground by the", + "Aether. He is bleeding internally.", + "\u002B15H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-40)" + ], + "RawCellText": "Foe is smashed to the ground by the\nAether. He is bleeding internally.\n\u002B15H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-40)", + "DescriptionText": "Foe is smashed to the ground by the Aether. He is bleeding internally.", + "RawAffixText": "\u002B15H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 690, + "Width": 129, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2760, + "BoundsWidth": 516, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 2728, + "CropWidth": 612, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Terrible heat shatters foe\u0027s weapon", + "arm.", + "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Terrible heat shatters foe\u0027s weapon", + "arm.", + "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-50)" + ], + "RawCellText": "Terrible heat shatters foe\u0027s weapon\narm.\n\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "DescriptionText": "Terrible heat shatters foe\u0027s weapon arm.", + "RawAffixText": "\u002B15H \u2013 7\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 690, + "Width": 124, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2760, + "BoundsWidth": 496, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 2728, + "CropWidth": 592, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Awesome chest strike knocks foe onto", + "his back.", + "\u002B30H \u2013 10\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Awesome chest strike knocks foe onto", + "his back.", + "\u002B30H \u2013 10\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Awesome chest strike knocks foe onto\nhis back.\n\u002B30H \u2013 10\u2211\u220F \u2013 (-60)", + "DescriptionText": "Awesome chest strike knocks foe onto his back.", + "RawAffixText": "\u002B30H \u2013 10\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 690, + "Width": 136, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2760, + "BoundsWidth": 544, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 2728, + "CropWidth": 640, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Rippling back strike snaps bones and", + "tears cartilage.", + "\u002B15H \u2013 5\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Rippling back strike snaps bones and", + "tears cartilage.", + "\u002B15H \u2013 5\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Rippling back strike snaps bones and\ntears cartilage.\n\u002B15H \u2013 5\u2211\u220F \u2013 (-40)", + "DescriptionText": "Rippling back strike snaps bones and tears cartilage.", + "RawAffixText": "\u002B15H \u2013 5\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 740, + "Width": 132, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2960, + "BoundsWidth": 528, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 2928, + "CropWidth": 624, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Blast shatters several ribs. Foe grips", + "his side and falls to his knees.", + "\u002B15H \u2013 5\u2211\u220F\u2013 3\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blast shatters several ribs. Foe grips", + "his side and falls to his knees.", + "\u002B15H \u2013 5\u2211\u220F\u2013 3\u222B \u2013 (-50)" + ], + "RawCellText": "Blast shatters several ribs. Foe grips\nhis side and falls to his knees.\n\u002B15H \u2013 5\u2211\u220F\u2013 3\u222B \u2013 (-50)", + "DescriptionText": "Blast shatters several ribs. Foe grips his side and falls to his knees.", + "RawAffixText": "\u002B15H \u2013 5\u2211\u220F\u2013 3\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 740, + "Width": 131, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 2960, + "BoundsWidth": 524, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 2928, + "CropWidth": 620, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Blast blisters foe. The burns cover", + "40% of his body.", + "\u002B20H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blast blisters foe. The burns cover", + "40% of his body.", + "\u002B20H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-50)" + ], + "RawCellText": "Blast blisters foe. The burns cover\n40% of his body.\n\u002B20H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-50)", + "DescriptionText": "Blast blisters foe. The burns cover 40% of his body.", + "RawAffixText": "\u002B20H \u2013 5\u2211\u220F \u2013 5\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 740, + "Width": 123, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2960, + "BoundsWidth": 492, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 2928, + "CropWidth": 588, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Foe tries to block blast with his hands.", + "Hand muscles are burned away.", + "\u002B25H \u2013 3\u2211 \u2013 3\u222B \u2013 (-60)" + ], + "BaseLines": [ + "Foe tries to block blast with his hands.", + "Hand muscles are burned away.", + "\u002B25H \u2013 3\u2211 \u2013 3\u222B \u2013 (-60)" + ], + "RawCellText": "Foe tries to block blast with his hands.\nHand muscles are burned away.\n\u002B25H \u2013 3\u2211 \u2013 3\u222B \u2013 (-60)", + "DescriptionText": "Foe tries to block blast with his hands. Hand muscles are burned away.", + "RawAffixText": "\u002B25H \u2013 3\u2211 \u2013 3\u222B \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 740, + "Width": 136, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 2960, + "BoundsWidth": 544, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 2928, + "CropWidth": 640, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s side causes several", + "organs to burst. Foe collapses after 6", + "rounds.", + "\u002B35H \u2013 6\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "Strike to foe\u0027s side causes several", + "organs to burst. Foe collapses after 6", + "rounds.", + "\u002B35H \u2013 6\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "Strike to foe\u0027s side causes several\norgans to burst. Foe collapses after 6\nrounds.\n\u002B35H \u2013 6\u2211 \u2013 (\u002B20)", + "DescriptionText": "Strike to foe\u0027s side causes several organs to burst. Foe collapses after 6 rounds.", + "RawAffixText": "\u002B35H \u2013 6\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 740, + "Width": 134, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 2960, + "BoundsWidth": 536, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 2928, + "CropWidth": 632, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Brutal blast puts foe on his back,", + "cracking several vertebrae.", + "\u002B15H \u2013 10\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Brutal blast puts foe on his back,", + "cracking several vertebrae.", + "\u002B15H \u2013 10\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Brutal blast puts foe on his back,\ncracking several vertebrae.\n\u002B15H \u2013 10\u2211\u220F \u2013 (-50)", + "DescriptionText": "Brutal blast puts foe on his back, cracking several vertebrae.", + "RawAffixText": "\u002B15H \u2013 10\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 790, + "Width": 116, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3160, + "BoundsWidth": 464, + "BoundsHeight": 180, + "CropLeft": 548, + "CropTop": 3128, + "CropWidth": 560, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Aether burns deeply into foe\u0027s calf.", + "Shin shatters.", + "\u002B25H \u2013 7\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Aether burns deeply into foe\u0027s calf.", + "Shin shatters.", + "\u002B25H \u2013 7\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Aether burns deeply into foe\u0027s calf.\nShin shatters.\n\u002B25H \u2013 7\u2211\u220F \u2013 (-60)", + "DescriptionText": "Aether burns deeply into foe\u0027s calf. Shin shatters.", + "RawAffixText": "\u002B25H \u2013 7\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 790, + "Width": 123, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 3160, + "BoundsWidth": 492, + "BoundsHeight": 180, + "CropLeft": 1116, + "CropTop": 3128, + "CropWidth": 588, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Aether shatters foe\u0027s thighbone.", + "\u002B20H \u2013 6\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Aether shatters foe\u0027s thighbone.", + "\u002B20H \u2013 6\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Aether shatters foe\u0027s thighbone.\n\u002B20H \u2013 6\u2211\u220F \u2013 (-60)", + "DescriptionText": "Aether shatters foe\u0027s thighbone.", + "RawAffixText": "\u002B20H \u2013 6\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 790, + "Width": 113, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3160, + "BoundsWidth": 452, + "BoundsHeight": 180, + "CropLeft": 1684, + "CropTop": 3128, + "CropWidth": 548, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blast causes foe\u0027s bowels to explode.", + "He dies after 4 rounds.", + "\u002B25H \u2013 4\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast causes foe\u0027s bowels to explode.", + "He dies after 4 rounds.", + "\u002B25H \u2013 4\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Blast causes foe\u0027s bowels to explode.\nHe dies after 4 rounds.\n\u002B25H \u2013 4\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Blast causes foe\u0027s bowels to explode. He dies after 4 rounds.", + "RawAffixText": "\u002B25H \u2013 4\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 790, + "Width": 132, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 3160, + "BoundsWidth": 528, + "BoundsHeight": 180, + "CropLeft": 2252, + "CropTop": 3128, + "CropWidth": 624, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Heat from the Aether melts foe\u0027s", + "backbone. He dies after 3 rounds of", + "massive shock.", + "\u002B35H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Heat from the Aether melts foe\u0027s", + "backbone. He dies after 3 rounds of", + "massive shock.", + "\u002B35H \u2013 (\u002B20)" + ], + "RawCellText": "Heat from the Aether melts foe\u0027s\nbackbone. He dies after 3 rounds of\nmassive shock.\n\u002B35H \u2013 (\u002B20)", + "DescriptionText": "Heat from the Aether melts foe\u0027s backbone. He dies after 3 rounds of massive shock.", + "RawAffixText": "\u002B35H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 790, + "Width": 129, + "Height": 45 + }, + "SourceImagePath": "arcane-aether/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 3160, + "BoundsWidth": 516, + "BoundsHeight": 180, + "CropLeft": 2820, + "CropTop": 3128, + "CropWidth": 612, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Crushing strike shatters foe\u0027s hip. He", + "collapses in agony.", + "\u002B25H \u2013 15\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Crushing strike shatters foe\u0027s hip. He", + "collapses in agony.", + "\u002B25H \u2013 15\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Crushing strike shatters foe\u0027s hip. He\ncollapses in agony.\n\u002B25H \u2013 15\u2211\u220F \u2013 (-60)", + "DescriptionText": "Crushing strike shatters foe\u0027s hip. He collapses in agony.", + "RawAffixText": "\u002B25H \u2013 15\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 840, + "Width": 133, + "Height": 58 + }, + "SourceImagePath": "arcane-aether/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3360, + "BoundsWidth": 532, + "BoundsHeight": 232, + "CropLeft": 548, + "CropTop": 3328, + "CropWidth": 628, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Temple strike. If foe has a helm, he", + "placed into a permanent coma. If not,", + "foe dies.", + "\u002B30H" + ], + "BaseLines": [ + "Temple strike. If foe has a helm, he", + "placed into a permanent coma. If not,", + "foe dies.", + "\u002B30H" + ], + "RawCellText": "Temple strike. If foe has a helm, he\nplaced into a permanent coma. If not,\nfoe dies.\n\u002B30H", + "DescriptionText": "Temple strike. If foe has a helm, he placed into a permanent coma. If not, foe dies.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 840, + "Width": 135, + "Height": 58 + }, + "SourceImagePath": "arcane-aether/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 3360, + "BoundsWidth": 540, + "BoundsHeight": 232, + "CropLeft": 1116, + "CropTop": 3328, + "CropWidth": 636, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Aether causes foe\u0027s hip to twist and", + "shatter. Pelvic girdle is ruined.", + "Organs slide out of abdominal cavity.", + "Foe dies after 15 rounds.", + "\u002B25H \u2013 15\u2211\u220F\u2013 5\u222B \u2013 (-70)" + ], + "BaseLines": [ + "Aether causes foe\u0027s hip to twist and", + "shatter. Pelvic girdle is ruined.", + "Organs slide out of abdominal cavity.", + "Foe dies after 15 rounds.", + "\u002B25H \u2013 15\u2211\u220F\u2013 5\u222B \u2013 (-70)" + ], + "RawCellText": "Aether causes foe\u0027s hip to twist and\nshatter. Pelvic girdle is ruined.\nOrgans slide out of abdominal cavity.\nFoe dies after 15 rounds.\n\u002B25H \u2013 15\u2211\u220F\u2013 5\u222B \u2013 (-70)", + "DescriptionText": "Aether causes foe\u0027s hip to twist and shatter. Pelvic girdle is ruined. Organs slide out of abdominal cavity. Foe dies after 15 rounds.", + "RawAffixText": "\u002B25H \u2013 15\u2211\u220F\u2013 5\u222B \u2013 (-70)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 840, + "Width": 132, + "Height": 58 + }, + "SourceImagePath": "arcane-aether/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3360, + "BoundsWidth": 528, + "BoundsHeight": 232, + "CropLeft": 1684, + "CropTop": 3328, + "CropWidth": 624, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Jawbone heats and explodes, sending", + "molten bone fragments through foe\u0027s", + "brain. It takes him 3 rounds to die", + "properly.", + "\u002B55H \u2013 3\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Jawbone heats and explodes, sending", + "molten bone fragments through foe\u0027s", + "brain. It takes him 3 rounds to die", + "properly.", + "\u002B55H \u2013 3\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Jawbone heats and explodes, sending\nmolten bone fragments through foe\u0027s\nbrain. It takes him 3 rounds to die\nproperly.\n\u002B55H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Jawbone heats and explodes, sending molten bone fragments through foe\u0027s brain. It takes him 3 rounds to die properly.", + "RawAffixText": "\u002B55H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 55, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B55H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 840, + "Width": 134, + "Height": 58 + }, + "SourceImagePath": "arcane-aether/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 3360, + "BoundsWidth": 536, + "BoundsHeight": 232, + "CropLeft": 2252, + "CropTop": 3328, + "CropWidth": 632, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blast pulses through foe\u0027s nervous", + "system. Foe dies after 6 rounds of", + "agony.", + "\u002B35H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast pulses through foe\u0027s nervous", + "system. Foe dies after 6 rounds of", + "agony.", + "\u002B35H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Blast pulses through foe\u0027s nervous\nsystem. Foe dies after 6 rounds of\nagony.\n\u002B35H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Blast pulses through foe\u0027s nervous system. Foe dies after 6 rounds of agony.", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 840, + "Width": 123, + "Height": 58 + }, + "SourceImagePath": "arcane-aether/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 3360, + "BoundsWidth": 492, + "BoundsHeight": 232, + "CropLeft": 2820, + "CropTop": 3328, + "CropWidth": 588, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Aether engulfs foe\u0027s head and neck. If", + "foe has a helm, he is knocked out. If", + "not, he dies after three rounds of", + "paralysis.", + "\u002B25H" + ], + "BaseLines": [ + "Aether engulfs foe\u0027s head and neck. If", + "foe has a helm, he is knocked out. If", + "not, he dies after three rounds of", + "paralysis.", + "\u002B25H" + ], + "RawCellText": "Aether engulfs foe\u0027s head and neck. If\nfoe has a helm, he is knocked out. If\nnot, he dies after three rounds of\nparalysis.\n\u002B25H", + "DescriptionText": "Aether engulfs foe\u0027s head and neck. If foe has a helm, he is knocked out. If not, he dies after three rounds of paralysis.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 903, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "arcane-aether/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3612, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 548, + "CropTop": 3580, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Strike burns foe\u0027s windpipe. Foe", + "collapses and dies after 12 helpless", + "rounds.", + "\u002B30H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Strike burns foe\u0027s windpipe. Foe", + "collapses and dies after 12 helpless", + "rounds.", + "\u002B30H \u2013 (\u002B20)" + ], + "RawCellText": "Strike burns foe\u0027s windpipe. Foe\ncollapses and dies after 12 helpless\nrounds.\n\u002B30H \u2013 (\u002B20)", + "DescriptionText": "Strike burns foe\u0027s windpipe. Foe collapses and dies after 12 helpless rounds.", + "RawAffixText": "\u002B30H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 903, + "Width": 126, + "Height": 57 + }, + "SourceImagePath": "arcane-aether/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 3612, + "BoundsWidth": 504, + "BoundsHeight": 228, + "CropLeft": 1116, + "CropTop": 3580, + "CropWidth": 600, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Aether begins to burn foe at the feet.", + "It devours him up to the knees. Foe", + "dies after 9 terrible rounds", + "\u002B25H \u2013 9\u2211\u220F \u2013 6\u222B \u2013 (-75)" + ], + "BaseLines": [ + "Aether begins to burn foe at the feet.", + "It devours him up to the knees. Foe", + "dies after 9 terrible rounds", + "\u002B25H \u2013 9\u2211\u220F \u2013 6\u222B \u2013 (-75)" + ], + "RawCellText": "Aether begins to burn foe at the feet.\nIt devours him up to the knees. Foe\ndies after 9 terrible rounds\n\u002B25H \u2013 9\u2211\u220F \u2013 6\u222B \u2013 (-75)", + "DescriptionText": "Aether begins to burn foe at the feet. It devours him up to the knees. Foe dies after 9 terrible rounds", + "RawAffixText": "\u002B25H \u2013 9\u2211\u220F \u2013 6\u222B \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 903, + "Width": 130, + "Height": 57 + }, + "SourceImagePath": "arcane-aether/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3612, + "BoundsWidth": 520, + "BoundsHeight": 228, + "CropLeft": 1684, + "CropTop": 3580, + "CropWidth": 616, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Foe inhales Aether. Lungs burn and", + "explode. Death after one round of", + "agony.", + "\u002B25H \u2013 \u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe inhales Aether. Lungs burn and", + "explode. Death after one round of", + "agony.", + "\u002B25H \u2013 \u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Foe inhales Aether. Lungs burn and\nexplode. Death after one round of\nagony.\n\u002B25H \u2013 \u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Foe inhales Aether. Lungs burn and explode. Death after one round of agony.", + "RawAffixText": "\u002B25H \u2013 \u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 903, + "Width": 128, + "Height": 57 + }, + "SourceImagePath": "arcane-aether/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 3612, + "BoundsWidth": 512, + "BoundsHeight": 228, + "CropLeft": 2252, + "CropTop": 3580, + "CropWidth": 608, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s body is reduced to a pile of", + "smoking pulp.", + "(\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s body is reduced to a pile of", + "smoking pulp.", + "(\u002B20)" + ], + "RawCellText": "Foe\u0027s body is reduced to a pile of\nsmoking pulp.\n(\u002B20)", + "DescriptionText": "Foe\u0027s body is reduced to a pile of smoking pulp.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 903, + "Width": 117, + "Height": 57 + }, + "SourceImagePath": "arcane-aether/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 3612, + "BoundsWidth": 468, + "BoundsHeight": 228, + "CropLeft": 2820, + "CropTop": 3580, + "CropWidth": 564, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Head strike gives multiple fractures to", + "foe\u0027s cranium. He dies after 3 rounds", + "of agony.", + "\u002B30H \u2013 3\u2211\u220F\u2013 (\u002B20)" + ], + "BaseLines": [ + "Head strike gives multiple fractures to", + "foe\u0027s cranium. He dies after 3 rounds", + "of agony.", + "\u002B30H \u2013 3\u2211\u220F\u2013 (\u002B20)" + ], + "RawCellText": "Head strike gives multiple fractures to\nfoe\u0027s cranium. He dies after 3 rounds\nof agony.\n\u002B30H \u2013 3\u2211\u220F\u2013 (\u002B20)", + "DescriptionText": "Head strike gives multiple fractures to foe\u0027s cranium. He dies after 3 rounds of agony.", + "RawAffixText": "\u002B30H \u2013 3\u2211\u220F\u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 965, + "Width": 134, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3860, + "BoundsWidth": 536, + "BoundsHeight": 184, + "CropLeft": 548, + "CropTop": 3828, + "CropWidth": 632, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Body is terribly burned. Foe dies after", + "2 rounds.", + "\u002B40H \u2013 2\u2211\u220F\u2013 (\u002B20)" + ], + "BaseLines": [ + "Body is terribly burned. Foe dies after", + "2 rounds.", + "\u002B40H \u2013 2\u2211\u220F\u2013 (\u002B20)" + ], + "RawCellText": "Body is terribly burned. Foe dies after\n2 rounds.\n\u002B40H \u2013 2\u2211\u220F\u2013 (\u002B20)", + "DescriptionText": "Body is terribly burned. Foe dies after 2 rounds.", + "RawAffixText": "\u002B40H \u2013 2\u2211\u220F\u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 291, + "Top": 965, + "Width": 135, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1164, + "BoundsTop": 3860, + "BoundsWidth": 540, + "BoundsHeight": 184, + "CropLeft": 1116, + "CropTop": 3828, + "CropWidth": 636, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Sizzling blast cause foe\u0027s eyes to flash", + "as his brain burns up.", + "(\u002B20)" + ], + "BaseLines": [ + "Sizzling blast cause foe\u0027s eyes to flash", + "as his brain burns up.", + "(\u002B20)" + ], + "RawCellText": "Sizzling blast cause foe\u0027s eyes to flash\nas his brain burns up.\n(\u002B20)", + "DescriptionText": "Sizzling blast cause foe\u0027s eyes to flash as his brain burns up.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 965, + "Width": 135, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3860, + "BoundsWidth": 540, + "BoundsHeight": 184, + "CropLeft": 1684, + "CropTop": 3828, + "CropWidth": 636, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s lungs and heart swell and", + "explode, blowing out of his chest.", + "\u002B25H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s lungs and heart swell and", + "explode, blowing out of his chest.", + "\u002B25H \u2013 (\u002B20)" + ], + "RawCellText": "Foe\u0027s lungs and heart swell and\nexplode, blowing out of his chest.\n\u002B25H \u2013 (\u002B20)", + "DescriptionText": "Foe\u0027s lungs and heart swell and explode, blowing out of his chest.", + "RawAffixText": "\u002B25H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 575, + "Top": 965, + "Width": 119, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2300, + "BoundsTop": 3860, + "BoundsWidth": 476, + "BoundsHeight": 184, + "CropLeft": 2252, + "CropTop": 3828, + "CropWidth": 572, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Foe is melted into a pool of sludge.", + "Get a mop.", + "(\u002B25)" + ], + "BaseLines": [ + "Foe is melted into a pool of sludge.", + "Get a mop.", + "(\u002B25)" + ], + "RawCellText": "Foe is melted into a pool of sludge.\nGet a mop.\n(\u002B25)", + "DescriptionText": "Foe is melted into a pool of sludge. Get a mop.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 717, + "Top": 965, + "Width": 124, + "Height": 46 + }, + "SourceImagePath": "arcane-aether/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2868, + "BoundsTop": 3860, + "BoundsWidth": 496, + "BoundsHeight": 184, + "CropLeft": 2820, + "CropTop": 3828, + "CropWidth": 592, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/source.xml b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/source.xml new file mode 100644 index 0000000..0bbcfa8 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/source.xml @@ -0,0 +1,321 @@ + + + + + + + + + + +125 +ARCANE AETHER CRITICAL STRIKE TABLE +A +B +C +D +E +Tiny bubbles. +Aether fizzles in a disappointing +fashion. +Ooooh. That’s the way to frighten him That looked like it hurt. It didn’t. +Did you miss? +01-05 ++0H ++0H ++1H ++2H ++3H +Foe steps away from the worst of it. +Foe ducks. +Keep that up and you might actually +hurt him. +Foe leaps back, frightened. +Foes sucks in air as the blast burns +him. +06-10 ++1H ++2H ++3H ++4H ++3H – ∑ +Foes loses initiative next round. You +have him worried. +Foe spins around. He loses initiative +for 1 round. +Foe is on guard. +Blast unbalances foe. +Foe winces in pain. +11-15 ++0H ++4H ++5H – π ++6H – π ++5H – ∑ +Foe is spun about and loses initiative +next round. +Foe brings his guard up, frightened by +your display. +Blast causes foe to stumble back, his +guard up. +Irritating burns put foe on the +defensive. +Aether causes foe to twitch +uncontrollably for a moment. +16-20 ++5H ++5H – π ++8H – π ++10H – π ++10H – ∑ +Unbalanced foe loses initiative for two +rounds. +Minor burns. +Crackling blast puts foe on the +defensive. +Glancing blow. +Strong blast sends foe reeling. +21-30 ++8H ++5H – π(-10) ++10H – π(-15) ++15H – π(-20) ++20H – ∑ +Burns cause foe to bring up his guard. Confused foe brings up his guard. He +loses initiative for two rounds. +Blast burns foe’s lower legs. +Aether bursts just before it hits foe. +The blast catches foe low on the body. +Aether burns deeply into foe’s foot. +31-40 ++10H – π ++9H – π ++15H – ∑ – ∫ + + + ++15H – ∑ – 2∫ ++20H – 2∑ – ∫ – (-20) +Foe is distracted by the sudden pain. +Staggering blast sends foe to his +knees. +Aether causes bad burns. +Foe is spun by a strike to his shoulder. Powerful blast knocks foe back three +steps and cause him to drop all +objects. +41-50 ++15H – 2∑ ++15H – ∑ – ∫ ++15H – ∑ ++25H – ∑ – 2∫ ++25H – ∑∏ – 2∫ +Burns cause foe to wince with pain. +Blast rocks foe back on his heels. +Hard blow disorients foe. +Slicing blow causes foe to stumble +back 5 feet. +Forceful blast burns through foe’s leg. +51-55 ++10H – ∑ ++12H – ∑ – 2∫ ++12H – ∑ – (+5) +2∑ – 2∫ – (+5) ++20H – 3∑ – 2∏ – 3∫ – (-10) +Crackling blast dazes foe. +Blast to foe’s back catches him and +spins him like a top. All small bits of +metal on his back turn to slag. +Foe is thrown back 10 feet and must +make an agility maneuver to land on +his feet. +Aether rings foe like a bell. +Blast to foe’s gut puts him down. +56-60 ++15H – 2∑ ++15H – ∑∏ – 2∫ – (-10) ++20H – 2∑ – (-10) ++15H – ∑∏ – ∫ – (-10) ++25H – 2∑∏ – 2∫ – (-20) +Powerful blow makes foe suck air +through gritted teeth. +Aether catches foe in shield arm. He +cries out any clutches it to stop the +bleeding. +Aether strike causes any leg greaves +to be destroyed. +Blast hits foe’s shield arm. If foe has +shield, it explodes. If not, foe’s shield +arm is paralyzed from nerve damage. +Precision strike blows straight through +foe’s side. +61-65 ++15H – ∑∏ ++15H – ∑∏ – 2∫ – (-20) ++15H – 2∑∏ – (-20) ++15H – 2∑∏ – (-20) ++25H – 5∑∏ – 3∫ – (-30) +Hammer blast shatters foe’s shield +arm. +Aether cause foe’s shoulder to expand +and shatter. +Blast of aether hits chest and shatters +both arms. +Blast shatters foe’s skull, killing him +instantly. +Surgical strike bursts head like an +over-ripe melon. +66 ++25H – 3∑∏– (-75) – (+20) ++20H – 3∑ – 5∫ – (-90) – (+20) +(+20) +(+20) +(+25) +Blast to foe’s back forces him to fight +around the pain. +Blast catches foe in lower back. +Heat expansion causes both of foe’s +arms to snap. +Focused blow creases foe’s head. +How’d he survive that? +Blast catches foe in shield arm. If foe +has a shield, it explodes. If not, foe’s +shoulder is shattered. +67-70 ++10H – ∑∏ – (-10) ++14H – ∑∏ – (-30) +3∑∏ – (-90) ++20H – 2∑∏ – 2∫ – (-30) +1∑∏ – 4∫ – (-50) +Blow to foe’s midsection makes him +grit his teeth in agony. +Strike catches foe in his side. He cries +out and falls to one knee. +Aether catches foe in the back. There +is extensive nerve damage. +Stunning blast shatters foe’s shield +arm. Foe reels with the pain. +Aether grounds into foe’s nervous +system, causing severe damage. Both +of his arms become useless. +71-75 ++30H – ∑∏– (-20) ++25H – 2∑∏– 3∫ – (-40) +3∑ – ∏ – (-30) ++15H – 7∑∏ – 3∫ – (-40) + (-25) +Strike to foe’s abdomen. The muscles +are terribly damaged. +Blow to feet sends foe sprawling. +Several muscles and bones are +damaged. +Foe is smashed to the ground by the +Aether. He is bleeding internally. +Terrible heat shatters foe’s weapon +arm. +Awesome chest strike knocks foe onto +his back. +76-80 ++20H – 3∑ – ∏ – (-30) ++15H – 5∑∏ – 4∫ – (-50) ++15H – 5∑∏ – 5∫ – (-40) ++15H – 7∑∏ – 3∫ – (-50) ++30H – 10∑∏ – (-60) +Rippling back strike snaps bones and +tears cartilage. +Blast shatters several ribs. Foe grips +his side and falls to his knees. +Blast blisters foe. The burns cover +40% of his body. +Foe tries to block blast with his hands. +Hand muscles are burned away. +Strike to foe’s side causes several +organs to burst. Foe collapses after 6 +rounds. +81-85 ++15H – 5∑∏ – (-40) ++15H – 5∑∏– 3∫ – (-50) ++20H – 5∑∏ – 5∫ – (-50) ++25H – 3∑ – 3∫ – (-60) ++35H – 6∑ – (+20) +Brutal blast puts foe on his back, +cracking several vertebrae. +Aether burns deeply into foe’s calf. +Shin shatters. +Aether shatters foe’s thighbone. +Blast causes foe’s bowels to explode. +He dies after 4 rounds. +Heat from the Aether melts foe’s +backbone. He dies after 3 rounds of +massive shock. +86-90 ++15H – 10∑∏ – (-50) ++25H – 7∑∏ – (-60) ++20H – 6∑∏ – (-60) ++25H – 4∑∏ – (+20) ++35H – (+20) +Crushing strike shatters foe’s hip. He +collapses in agony. +Temple strike. If foe has a helm, he +placed into a permanent coma. If not, +foe dies. +Aether causes foe’s hip to twist and +shatter. Pelvic girdle is ruined. +Organs slide out of abdominal cavity. +Foe dies after 15 rounds. +Jawbone heats and explodes, sending +molten bone fragments through foe’s +brain. It takes him 3 rounds to die +properly. +Blast pulses through foe’s nervous +system. Foe dies after 6 rounds of +agony. +91-95 ++25H – 15∑∏ – (-60) ++30H ++25H – 15∑∏– 5∫ – (-70) ++55H – 3∑∏ – (+20) ++35H – 6∑∏ – (+20) +Aether engulfs foe’s head and neck. If +foe has a helm, he is knocked out. If +not, he dies after three rounds of +paralysis. +Strike burns foe’s windpipe. Foe +collapses and dies after 12 helpless +rounds. +Aether begins to burn foe at the feet. +It devours him up to the knees. Foe +dies after 9 terrible rounds +Foe inhales Aether. Lungs burn and +explode. Death after one round of +agony. +Foe’s body is reduced to a pile of +smoking pulp. +96-99 ++25H ++30H – (+20) ++25H – 9∑∏ – 6∫ – (-75) ++25H – ∑∏ – (+20) +(+20) +Head strike gives multiple fractures to +foe’s cranium. He dies after 3 rounds +of agony. +Body is terribly burned. Foe dies after +2 rounds. +Sizzling blast cause foe’s eyes to flash +as his brain burns up. +Foe’s lungs and heart swell and +explode, blowing out of his chest. +Foe is melted into a pool of sludge. +Get a mop. +100 ++30H – 3∑∏– (+20) ++40H – 2∑∏– (+20) +(+20) ++25H – (+20) +(+25) +K +K +K +Keeeeyyyy:::: ßπ=must parry ß rounds; ß∏ =no parry for ß rounds; ß∑ =stunned for ß rounds; ß∫=bleed ß hits per round; (-ß)=foe has -ß penalty; (+ß)=attacker gets +ß next round + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-aether/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__01-05.png new file mode 100644 index 0000000..ec2390d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__06-10.png new file mode 100644 index 0000000..406d542 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__100.png new file mode 100644 index 0000000..de73641 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__11-15.png new file mode 100644 index 0000000..52cc6fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__16-20.png new file mode 100644 index 0000000..aa4098d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__21-30.png new file mode 100644 index 0000000..0647734 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__31-40.png new file mode 100644 index 0000000..44c7039 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__41-50.png new file mode 100644 index 0000000..a178973 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__51-55.png new file mode 100644 index 0000000..11ab6a0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__56-60.png new file mode 100644 index 0000000..11a6c44 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__61-65.png new file mode 100644 index 0000000..d508ea4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__66.png new file mode 100644 index 0000000..f1a34ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__67-70.png new file mode 100644 index 0000000..b192982 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__71-75.png new file mode 100644 index 0000000..279a03a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__76-80.png new file mode 100644 index 0000000..42c4815 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__81-85.png new file mode 100644 index 0000000..f17670a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__86-90.png new file mode 100644 index 0000000..2a1f70b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__91-95.png new file mode 100644 index 0000000..93cb3a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__96-99.png new file mode 100644 index 0000000..ae55571 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__01-05.png new file mode 100644 index 0000000..3ec6a63 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__06-10.png new file mode 100644 index 0000000..5128185 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__100.png new file mode 100644 index 0000000..fe1c778 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__11-15.png new file mode 100644 index 0000000..f48be80 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__16-20.png new file mode 100644 index 0000000..0ba8ed6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__21-30.png new file mode 100644 index 0000000..de3a016 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__31-40.png new file mode 100644 index 0000000..5b66d65 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__41-50.png new file mode 100644 index 0000000..8cf60f8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__51-55.png new file mode 100644 index 0000000..256b117 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__56-60.png new file mode 100644 index 0000000..8a54c10 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__61-65.png new file mode 100644 index 0000000..62ddb14 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__66.png new file mode 100644 index 0000000..4ab2d4d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__67-70.png new file mode 100644 index 0000000..4a37e5a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__71-75.png new file mode 100644 index 0000000..2a84390 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__76-80.png new file mode 100644 index 0000000..0d495ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__81-85.png new file mode 100644 index 0000000..09cd4f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__86-90.png new file mode 100644 index 0000000..5e02511 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__91-95.png new file mode 100644 index 0000000..2aad4f8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__96-99.png new file mode 100644 index 0000000..af58def Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__01-05.png new file mode 100644 index 0000000..9378242 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__06-10.png new file mode 100644 index 0000000..851372f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__100.png new file mode 100644 index 0000000..8fb0625 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__11-15.png new file mode 100644 index 0000000..22a58a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__16-20.png new file mode 100644 index 0000000..929a47b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__21-30.png new file mode 100644 index 0000000..7977148 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__31-40.png new file mode 100644 index 0000000..24af5f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__41-50.png new file mode 100644 index 0000000..54a6f06 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__51-55.png new file mode 100644 index 0000000..9f2c95b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__56-60.png new file mode 100644 index 0000000..b453f3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__61-65.png new file mode 100644 index 0000000..c7efb5a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__66.png new file mode 100644 index 0000000..21776e9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__67-70.png new file mode 100644 index 0000000..5f56f82 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__71-75.png new file mode 100644 index 0000000..0c14972 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__76-80.png new file mode 100644 index 0000000..c6431dd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__81-85.png new file mode 100644 index 0000000..ef43309 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__86-90.png new file mode 100644 index 0000000..e0116ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__91-95.png new file mode 100644 index 0000000..1fbd003 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__96-99.png new file mode 100644 index 0000000..ad0d786 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__01-05.png new file mode 100644 index 0000000..3f19de4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__06-10.png new file mode 100644 index 0000000..ef6334b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__100.png new file mode 100644 index 0000000..8acbb1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__11-15.png new file mode 100644 index 0000000..7e5cec2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__16-20.png new file mode 100644 index 0000000..50a7ce2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__21-30.png new file mode 100644 index 0000000..5371efa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__31-40.png new file mode 100644 index 0000000..4e9f71a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__41-50.png new file mode 100644 index 0000000..c6a17f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__51-55.png new file mode 100644 index 0000000..4bde7b3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__56-60.png new file mode 100644 index 0000000..38bd2bc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__61-65.png new file mode 100644 index 0000000..42a2c9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__66.png new file mode 100644 index 0000000..7ec7039 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__67-70.png new file mode 100644 index 0000000..c1ac24c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__71-75.png new file mode 100644 index 0000000..6ee57a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__76-80.png new file mode 100644 index 0000000..e4c3709 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__81-85.png new file mode 100644 index 0000000..bf9d62b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__86-90.png new file mode 100644 index 0000000..051dd8f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__91-95.png new file mode 100644 index 0000000..8636405 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__96-99.png new file mode 100644 index 0000000..bf1672c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__01-05.png new file mode 100644 index 0000000..346d5f3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__06-10.png new file mode 100644 index 0000000..6fe3628 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__100.png new file mode 100644 index 0000000..90d2fa8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__11-15.png new file mode 100644 index 0000000..f150d18 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__16-20.png new file mode 100644 index 0000000..ab44b23 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__21-30.png new file mode 100644 index 0000000..f872a07 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__31-40.png new file mode 100644 index 0000000..ed3b3cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__41-50.png new file mode 100644 index 0000000..9ffa675 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__51-55.png new file mode 100644 index 0000000..ea49bf7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__56-60.png new file mode 100644 index 0000000..4405113 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__61-65.png new file mode 100644 index 0000000..2089af1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__66.png new file mode 100644 index 0000000..f4562c3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__67-70.png new file mode 100644 index 0000000..1e62634 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__71-75.png new file mode 100644 index 0000000..4403195 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__76-80.png new file mode 100644 index 0000000..12c4639 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__81-85.png new file mode 100644 index 0000000..73b2409 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__86-90.png new file mode 100644 index 0000000..dd9839e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__91-95.png new file mode 100644 index 0000000..dd1fdf9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__96-99.png new file mode 100644 index 0000000..e7ce894 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/fragments.json new file mode 100644 index 0000000..a8a79d1 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/fragments.json @@ -0,0 +1,3082 @@ +[ + { + "PageNumber": 1, + "Top": 1140, + "Left": 57, + "Width": 22, + "Height": 14, + "Text": "126", + "Confidence": null, + "CenterX": 68 + }, + { + "PageNumber": 1, + "Top": 83, + "Left": 203, + "Width": 475, + "Height": 15, + "Text": "ARCANE NETHER CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 149, + "Width": 10, + "Height": 10, + "Text": "A", + "Confidence": null, + "CenterX": 154 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 276, + "Width": 10, + "Height": 10, + "Text": "B", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 416, + "Width": 11, + "Height": 10, + "Text": "C", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 561, + "Width": 13, + "Height": 10, + "Text": "D", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 714, + "Width": 9, + "Height": 10, + "Text": "E", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 95, + "Width": 93, + "Height": 8, + "Text": "Almost got a piece of him.", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 95, + "Width": 15, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 102.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 216, + "Width": 53, + "Height": 8, + "Text": "Glancing blow.", + "Confidence": null, + "CenterX": 242.5 + }, + { + "PageNumber": 1, + "Top": 167, + "Left": 216, + "Width": 15, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 350, + "Width": 126, + "Height": 8, + "Text": "Foes stumbles back, looking for the", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 350, + "Width": 30, + "Height": 8, + "Text": "damage.", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 350, + "Width": 15, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 498, + "Width": 117, + "Height": 8, + "Text": "Shouldn\u0027t that have caused more", + "Confidence": null, + "CenterX": 556.5 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 498, + "Width": 33, + "Height": 8, + "Text": "damage?", + "Confidence": null, + "CenterX": 514.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 498, + "Width": 15, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 643, + "Width": 125, + "Height": 8, + "Text": "Foe screams like a frightened child.", + "Confidence": null, + "CenterX": 705.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 643, + "Width": 15, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 95, + "Width": 68, + "Height": 8, + "Text": "Look at him dance.", + "Confidence": null, + "CenterX": 129 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 95, + "Width": 15, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 102.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 216, + "Width": 59, + "Height": 8, + "Text": "That scared him.", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 216, + "Width": 15, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 350, + "Width": 51, + "Height": 8, + "Text": "Foe is winged.", + "Confidence": null, + "CenterX": 375.5 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 350, + "Width": 43, + "Height": 8, + "Text": "\u002B4H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 371.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 498, + "Width": 112, + "Height": 8, + "Text": "Foe is frightened. You have the", + "Confidence": null, + "CenterX": 554 + }, + { + "PageNumber": 1, + "Top": 195, + "Left": 498, + "Width": 72, + "Height": 8, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 498, + "Width": 15, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 643, + "Width": 140, + "Height": 8, + "Text": "Foe spends a round counting his digits.", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 643, + "Width": 33, + "Height": 8, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 229, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 95, + "Width": 95, + "Height": 8, + "Text": "Foes is wary. You gain the", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 95, + "Width": 72, + "Height": 8, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 95, + "Width": 15, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 102.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 216, + "Width": 115, + "Height": 8, + "Text": "Soft tissue damage to side. You", + "Confidence": null, + "CenterX": 273.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 216, + "Width": 110, + "Height": 8, + "Text": "have the initiative for 3 rounds.", + "Confidence": null, + "CenterX": 271 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 216, + "Width": 15, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 350, + "Width": 66, + "Height": 8, + "Text": "Minor side wound.", + "Confidence": null, + "CenterX": 383 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 350, + "Width": 33, + "Height": 8, + "Text": "\u002B7H \u2013 2\u222B", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 498, + "Width": 81, + "Height": 8, + "Text": "Foe steps back in pain.", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 498, + "Width": 37, + "Height": 8, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 516.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 643, + "Width": 139, + "Height": 8, + "Text": "Foes steps back, his arms shielding his", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 643, + "Width": 17, + "Height": 8, + "Text": "face.", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 643, + "Width": 37, + "Height": 8, + "Text": "\u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 661.5 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 95, + "Width": 95, + "Height": 8, + "Text": "Foe leaps back, frightened.", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 95, + "Width": 21, + "Height": 8, + "Text": "\u002B3H \u2013", + "Confidence": null, + "CenterX": 105.5 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 119, + "Width": 29, + "Height": 8, + "Text": "\u2211 \u2013 2\u03C0", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 216, + "Width": 96, + "Height": 8, + "Text": "Foes catches it on the side.", + "Confidence": null, + "CenterX": 264 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 216, + "Width": 51, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0 (-30)", + "Confidence": null, + "CenterX": 241.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 350, + "Width": 79, + "Height": 8, + "Text": "Blow knocks foe back.", + "Confidence": null, + "CenterX": 389.5 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 350, + "Width": 37, + "Height": 8, + "Text": "\u002B8H \u2013 3\u2211", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 498, + "Width": 126, + "Height": 8, + "Text": "Foe catches a piece of it in the side.", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 498, + "Width": 30, + "Height": 8, + "Text": "\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 643, + "Width": 137, + "Height": 8, + "Text": "Minor damage cause foe to shift to the", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 643, + "Width": 36, + "Height": 8, + "Text": "defensive.", + "Confidence": null, + "CenterX": 661 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 643, + "Width": 5, + "Height": 8, + "Text": "3", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 281, + "Left": 697, + "Width": 18, + "Height": 8, + "Text": "\u03C0 \u2013\u222B", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 303, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "21-30", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 95, + "Width": 110, + "Height": 8, + "Text": "Chest strike causes foe\u0027s life to", + "Confidence": null, + "CenterX": 150 + }, + { + "PageNumber": 1, + "Top": 306, + "Left": 95, + "Width": 75, + "Height": 8, + "Text": "pass before his eyes.", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 95, + "Width": 66, + "Height": 8, + "Text": "\u002B4H \u2013 3 \u03C0 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 216, + "Width": 90, + "Height": 8, + "Text": "Attack grazes foe\u0027s chest.", + "Confidence": null, + "CenterX": 261 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 216, + "Width": 53, + "Height": 8, + "Text": "\u002B5H \u2013 3\u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 242.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 350, + "Width": 128, + "Height": 8, + "Text": "Blast takes chunk out of foe\u0027s chest.", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 350, + "Width": 60, + "Height": 8, + "Text": "\u002B9H \u2013 2\u2211\u220F \u20133\u222B", + "Confidence": null, + "CenterX": 380 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 498, + "Width": 106, + "Height": 8, + "Text": "Blast catches foe in lower leg.", + "Confidence": null, + "CenterX": 551 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 498, + "Width": 44, + "Height": 8, + "Text": "\u002B7H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 520 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 643, + "Width": 123, + "Height": 8, + "Text": "Attack cuts a hole in the foe\u0027s side.", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 643, + "Width": 49, + "Height": 8, + "Text": "\u002B9H \u2013 4\u2211 3\u222B", + "Confidence": null, + "CenterX": 667.5 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "31-40", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 95, + "Width": 103, + "Height": 8, + "Text": "Attack creases deep into calf.", + "Confidence": null, + "CenterX": 146.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 95, + "Width": 50, + "Height": 8, + "Text": "\u2211 \u2013 \u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 216, + "Width": 122, + "Height": 8, + "Text": "Nether wreaks havoc on foe\u0027s calf.", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 216, + "Width": 60, + "Height": 8, + "Text": "\u002B6H \u2013 4\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 350, + "Width": 141, + "Height": 8, + "Text": "Foe takes major wound to his lower leg.", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 350, + "Width": 95, + "Height": 8, + "Text": "He is knocked to one knee.", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 350, + "Width": 30, + "Height": 8, + "Text": "4\u2211 \u20135\u222B", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 498, + "Width": 121, + "Height": 8, + "Text": "Attack hits foe in the groin. Foe is", + "Confidence": null, + "CenterX": 558.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 498, + "Width": 136, + "Height": 8, + "Text": "stunned as he checks the extent of the", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 498, + "Width": 30, + "Height": 8, + "Text": "damage.", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 498, + "Width": 86, + "Height": 8, + "Text": "\u002B8H \u2013 7\u2211 \u2013 4\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 541 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 643, + "Width": 148, + "Height": 8, + "Text": "Attack to leg dissolves bone and muscles.", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 643, + "Width": 65, + "Height": 8, + "Text": "4\u222B \u2013 (-70) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 675.5 + }, + { + "PageNumber": 1, + "Top": 389, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "41-50", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 95, + "Width": 69, + "Height": 8, + "Text": "Just a flesh wound.", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 95, + "Width": 37, + "Height": 8, + "Text": "\u002B5H \u2013 2\u2211", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 216, + "Width": 93, + "Height": 8, + "Text": "Nether creases foe\u0027s back.", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 216, + "Width": 51, + "Height": 8, + "Text": "\u002B7H \u2013 4\u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 241.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 350, + "Width": 140, + "Height": 8, + "Text": "Blast disintegrates a swath across foe\u0027s", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 350, + "Width": 19, + "Height": 8, + "Text": "back.", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 350, + "Width": 30, + "Height": 8, + "Text": "5\u2211 \u20133\u222B", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 498, + "Width": 125, + "Height": 8, + "Text": "Blast disintegrates lower spine. He", + "Confidence": null, + "CenterX": 560.5 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 498, + "Width": 91, + "Height": 8, + "Text": "passes out for 20 rounds.", + "Confidence": null, + "CenterX": 543.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 498, + "Width": 19, + "Height": 8, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 643, + "Width": 124, + "Height": 8, + "Text": "Foe\u0027s lower back loses some semi-", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 643, + "Width": 69, + "Height": 8, + "Text": "important muscles.", + "Confidence": null, + "CenterX": 677.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 643, + "Width": 63, + "Height": 8, + "Text": "\u002B10H \u2013 5\u222B\u220F \u2013 4\u222B", + "Confidence": null, + "CenterX": 674.5 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 418, + "Left": 95, + "Width": 106, + "Height": 8, + "Text": "Chest blast causes foe to reel.", + "Confidence": null, + "CenterX": 148 + }, + { + "PageNumber": 1, + "Top": 442, + "Left": 95, + "Width": 39, + "Height": 8, + "Text": "3\u2211 \u220F\u2013 3\u222B", + "Confidence": null, + "CenterX": 114.5 + }, + { + "PageNumber": 1, + "Top": 418, + "Left": 216, + "Width": 121, + "Height": 8, + "Text": "Blast to foe\u0027s chest put him on the", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 216, + "Width": 28, + "Height": 8, + "Text": "ground.", + "Confidence": null, + "CenterX": 230 + }, + { + "PageNumber": 1, + "Top": 442, + "Left": 216, + "Width": 55, + "Height": 8, + "Text": "\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 418, + "Left": 350, + "Width": 142, + "Height": 8, + "Text": "Blast to foe\u0027s chest drops him like a bad", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 350, + "Width": 20, + "Height": 8, + "Text": "habit.", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 442, + "Left": 350, + "Width": 65, + "Height": 8, + "Text": "\u002B10H \u2013 3\u2211\u220F \u20133\u222B", + "Confidence": null, + "CenterX": 382.5 + }, + { + "PageNumber": 1, + "Top": 418, + "Left": 498, + "Width": 96, + "Height": 8, + "Text": "Blast destroys several ribs.", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 442, + "Left": 498, + "Width": 46, + "Height": 8, + "Text": "\u002B12H \u2013 (-50)", + "Confidence": null, + "CenterX": 521 + }, + { + "PageNumber": 1, + "Top": 418, + "Left": 643, + "Width": 149, + "Height": 8, + "Text": "Large swath eaten though foe\u0027s chest. He", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 643, + "Width": 143, + "Height": 8, + "Text": "drops for three rounds, then passes out.", + "Confidence": null, + "CenterX": 714.5 + }, + { + "PageNumber": 1, + "Top": 442, + "Left": 643, + "Width": 9, + "Height": 8, + "Text": "6\u222B", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 95, + "Width": 110, + "Height": 8, + "Text": "Minor thigh damage. Foe goes", + "Confidence": null, + "CenterX": 150 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 95, + "Width": 117, + "Height": 8, + "Text": "down, a startled look on his face.", + "Confidence": null, + "CenterX": 153.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 95, + "Width": 55, + "Height": 8, + "Text": "\u002B5H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 122.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 216, + "Width": 111, + "Height": 8, + "Text": "Nether devours chunks of foe\u0027s", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 216, + "Width": 48, + "Height": 8, + "Text": "thigh muscle.", + "Confidence": null, + "CenterX": 240 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 216, + "Width": 60, + "Height": 8, + "Text": "\u002B9H \u2013 4\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 350, + "Width": 118, + "Height": 8, + "Text": "Attack devastates foe\u0027s thigh. He", + "Confidence": null, + "CenterX": 409 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 350, + "Width": 138, + "Height": 8, + "Text": "collapses like someone threw a switch.", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 350, + "Width": 85, + "Height": 8, + "Text": "\u002B11H \u2013 5\u2211 \u20135\u222B \u2013 (-75)", + "Confidence": null, + "CenterX": 392.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 498, + "Width": 124, + "Height": 8, + "Text": "Foe takes a serious hit to his upper", + "Confidence": null, + "CenterX": 560 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 498, + "Width": 68, + "Height": 8, + "Text": "legs. He collapses.", + "Confidence": null, + "CenterX": 532 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 498, + "Width": 65, + "Height": 8, + "Text": "6\u222B \u2013 (-90) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 530.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 643, + "Width": 149, + "Height": 8, + "Text": "Attack the groin. All vitals vanish in a puff", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 643, + "Width": 60, + "Height": 8, + "Text": "of purple smoke.", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 643, + "Width": 36, + "Height": 8, + "Text": "14\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 661 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 95, + "Width": 114, + "Height": 8, + "Text": "Nether cuts deep wound in foe\u0027s", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 95, + "Width": 30, + "Height": 8, + "Text": "forearm.", + "Confidence": null, + "CenterX": 110 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 95, + "Width": 60, + "Height": 8, + "Text": "\u002B5H \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 216, + "Width": 108, + "Height": 8, + "Text": "Nether eats deep into forearm.", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 216, + "Width": 78, + "Height": 8, + "Text": "Foe\u0027s hand is useless.", + "Confidence": null, + "CenterX": 255 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 216, + "Width": 61, + "Height": 8, + "Text": "\u002B9H \u2013 5\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 246.5 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 350, + "Width": 143, + "Height": 8, + "Text": "Attack tears through foe\u0027s forearm. Arm", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 350, + "Width": 37, + "Height": 8, + "Text": "is useless.", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 350, + "Width": 64, + "Height": 8, + "Text": "\u002B12H \u2013 4\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 382 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 498, + "Width": 123, + "Height": 8, + "Text": "Nether dissolves foe\u0027s forearm in a", + "Confidence": null, + "CenterX": 559.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 498, + "Width": 99, + "Height": 8, + "Text": "agonizing blast of black fire.", + "Confidence": null, + "CenterX": 547.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 498, + "Width": 59, + "Height": 8, + "Text": "5\u2211 \u2013 7\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 527.5 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 643, + "Width": 148, + "Height": 8, + "Text": "Blast neatly disintegrates wafer-thin plane", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 643, + "Width": 133, + "Height": 8, + "Text": "through foe\u0027s elbow. Arm is severed.", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 643, + "Width": 61, + "Height": 8, + "Text": "8\u2211 \u2013 5\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 673.5 + }, + { + "PageNumber": 1, + "Top": 555, + "Left": 59, + "Width": 13, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 95, + "Width": 112, + "Height": 8, + "Text": "Shield shoulder collapses. Arm", + "Confidence": null, + "CenterX": 151 + }, + { + "PageNumber": 1, + "Top": 553, + "Left": 95, + "Width": 105, + "Height": 8, + "Text": "is useless. It will fall off if foe", + "Confidence": null, + "CenterX": 147.5 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 95, + "Width": 105, + "Height": 8, + "Text": "takes more than 25% activity.", + "Confidence": null, + "CenterX": 147.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 95, + "Width": 96, + "Height": 8, + "Text": "\u002B10H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 143 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 216, + "Width": 104, + "Height": 8, + "Text": "Elbow in foe\u0027s weapon arm is", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 553, + "Left": 216, + "Width": 96, + "Height": 8, + "Text": "destroyed. Arm is useless.", + "Confidence": null, + "CenterX": 264 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 216, + "Width": 82, + "Height": 8, + "Text": "\u002B10H \u2013 10\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 257 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 350, + "Width": 129, + "Height": 8, + "Text": "Blast disintegrates foe\u0027s knee. Foe\u0027s", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 553, + "Left": 350, + "Width": 63, + "Height": 8, + "Text": "lower leg falls off.", + "Confidence": null, + "CenterX": 381.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 350, + "Width": 115, + "Height": 8, + "Text": "\u002B25H \u2013 10\u2211\u220F \u20135\u222B \u2013 (-70) \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 407.5 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 498, + "Width": 133, + "Height": 8, + "Text": "Eyes, ears, nose and throat are wiped", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 553, + "Left": 498, + "Width": 136, + "Height": 8, + "Text": "clean by a nether sheet. Foe dies after", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 498, + "Width": 72, + "Height": 8, + "Text": "4 gruesome rounds.", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 498, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 643, + "Width": 146, + "Height": 8, + "Text": "Blast enters through small whole in torso", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 553, + "Left": 643, + "Width": 138, + "Height": 8, + "Text": "then bounces around, disintegrating all", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 643, + "Width": 91, + "Height": 8, + "Text": "organs. Foe falls, hollow.", + "Confidence": null, + "CenterX": 688.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 643, + "Width": 48, + "Height": 8, + "Text": "\u002B20H \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 667 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 95, + "Width": 112, + "Height": 8, + "Text": "Nether cracks foe\u0027s collar bone.", + "Confidence": null, + "CenterX": 151 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 95, + "Width": 85, + "Height": 8, + "Text": "\u002B6H \u2013 4\u2211 \u2013 2\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 137.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 216, + "Width": 125, + "Height": 8, + "Text": "Almost a miss. Foe catches part of", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 216, + "Width": 48, + "Height": 8, + "Text": "it in the neck.", + "Confidence": null, + "CenterX": 240 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 216, + "Width": 89, + "Height": 8, + "Text": "\u002B10H \u2013 6\u2211 \u2013 3\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 260.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 350, + "Width": 123, + "Height": 8, + "Text": "Blow catches foe at the base of the", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 350, + "Width": 143, + "Height": 8, + "Text": "neck. He grasps his throat, choking and", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 614, + "Left": 350, + "Width": 30, + "Height": 8, + "Text": "gasping.", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 350, + "Width": 73, + "Height": 8, + "Text": "\u002B13H \u2013 12\u2211 \u2013 (-80)", + "Confidence": null, + "CenterX": 386.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 498, + "Width": 132, + "Height": 8, + "Text": "Massive disruption and cells implode", + "Confidence": null, + "CenterX": 564 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 498, + "Width": 94, + "Height": 8, + "Text": "throughout foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 545 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 498, + "Width": 69, + "Height": 8, + "Text": "\u002B14H \u2013 6\u2211 \u2013 (-60)", + "Confidence": null, + "CenterX": 532.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 643, + "Width": 152, + "Height": 8, + "Text": "Blast catches foe in shoulder. He stares as", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 643, + "Width": 145, + "Height": 8, + "Text": "the nether consumes flesh and bone. He", + "Confidence": null, + "CenterX": 715.5 + }, + { + "PageNumber": 1, + "Top": 614, + "Left": 643, + "Width": 92, + "Height": 8, + "Text": "catches his arm as it falls.", + "Confidence": null, + "CenterX": 689 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 643, + "Width": 100, + "Height": 8, + "Text": "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 693 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 95, + "Width": 107, + "Height": 8, + "Text": "Disrupt tendons in foe\u0027s lower", + "Confidence": null, + "CenterX": 148.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 95, + "Width": 13, + "Height": 8, + "Text": "leg.", + "Confidence": null, + "CenterX": 101.5 + }, + { + "PageNumber": 1, + "Top": 675, + "Left": 95, + "Width": 59, + "Height": 8, + "Text": "3\u2211 \u2013 3\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 124.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 216, + "Width": 109, + "Height": 8, + "Text": "Foe\u0027s calf muscle comes apart.", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 675, + "Left": 216, + "Width": 64, + "Height": 8, + "Text": "\u002B11H \u2013 5\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 248 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 350, + "Width": 135, + "Height": 8, + "Text": "Nether catches foe in the calf. Muscle", + "Confidence": null, + "CenterX": 417.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 350, + "Width": 122, + "Height": 8, + "Text": "dissolves. Tendons are disrupted.", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 663, + "Left": 350, + "Width": 61, + "Height": 8, + "Text": "Bone is fractured", + "Confidence": null, + "CenterX": 380.5 + }, + { + "PageNumber": 1, + "Top": 675, + "Left": 350, + "Width": 65, + "Height": 8, + "Text": "6\u222B \u2013 (-50) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 382.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 498, + "Width": 141, + "Height": 8, + "Text": "Nether engulfs foes foot, devouring it in", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 498, + "Width": 103, + "Height": 8, + "Text": "a blast of black fire. Foe falls", + "Confidence": null, + "CenterX": 549.5 + }, + { + "PageNumber": 1, + "Top": 663, + "Left": 498, + "Width": 100, + "Height": 8, + "Text": "unconscious after 5 rounds.", + "Confidence": null, + "CenterX": 548 + }, + { + "PageNumber": 1, + "Top": 675, + "Left": 498, + "Width": 39, + "Height": 8, + "Text": "5\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 517.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 643, + "Width": 149, + "Height": 8, + "Text": "Nether consumes thighbone, muscles and", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 643, + "Width": 55, + "Height": 8, + "Text": "nearby vessels.", + "Confidence": null, + "CenterX": 670.5 + }, + { + "PageNumber": 1, + "Top": 675, + "Left": 643, + "Width": 62, + "Height": 8, + "Text": "\u002B24H \u2013 6\u2211 \u2013 6\u222B", + "Confidence": null, + "CenterX": 674 + }, + { + "PageNumber": 1, + "Top": 697, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 95, + "Width": 115, + "Height": 8, + "Text": "Blast takes a bite out of the foe\u0027s", + "Confidence": null, + "CenterX": 152.5 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 95, + "Width": 25, + "Height": 8, + "Text": "biceps.", + "Confidence": null, + "CenterX": 107.5 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 95, + "Width": 82, + "Height": 8, + "Text": "\u002B7H \u2013 4\u2211 \u2013 3\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 216, + "Width": 118, + "Height": 8, + "Text": "Nether eats deep into foe\u0027s shield", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 216, + "Width": 16, + "Height": 8, + "Text": "arm.", + "Confidence": null, + "CenterX": 224 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 216, + "Width": 66, + "Height": 8, + "Text": "7\u2211\u220F \u2013 6\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 249 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 350, + "Width": 128, + "Height": 8, + "Text": "Shield arm takes full blow. Muscles", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 350, + "Width": 96, + "Height": 8, + "Text": "dissolve and bone fracture.", + "Confidence": null, + "CenterX": 398 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 350, + "Width": 62, + "Height": 8, + "Text": "\u002B14H \u2013 12\u2211 \u20134\u222B", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 498, + "Width": 126, + "Height": 8, + "Text": "Blast removes shield arm, leaving a", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 498, + "Width": 50, + "Height": 8, + "Text": "messy stump.", + "Confidence": null, + "CenterX": 523 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 498, + "Width": 69, + "Height": 8, + "Text": "\u002B20H \u2013 18\u2211\u220F \u20136\u222B", + "Confidence": null, + "CenterX": 532.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 643, + "Width": 130, + "Height": 8, + "Text": "Foe\u0027s arm is consumed by black fire.", + "Confidence": null, + "CenterX": 708 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 643, + "Width": 64, + "Height": 8, + "Text": "\u002B30H \u2013 36\u2211 \u2013 6\u222B", + "Confidence": null, + "CenterX": 675 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 95, + "Width": 107, + "Height": 8, + "Text": "Nether catches foe in the side.", + "Confidence": null, + "CenterX": 148.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 95, + "Width": 62, + "Height": 8, + "Text": "Internal bleeding.", + "Confidence": null, + "CenterX": 126 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 95, + "Width": 60, + "Height": 8, + "Text": "8\u2211 \u2013 7\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 216, + "Width": 121, + "Height": 8, + "Text": "Nether eats its way into foe\u0027s side.", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 216, + "Width": 100, + "Height": 8, + "Text": "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 266 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 350, + "Width": 126, + "Height": 8, + "Text": "Blast eats a significant chunk out of", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 350, + "Width": 141, + "Height": 8, + "Text": "foe\u0027s side. Foe fights for 24 rounds and", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 350, + "Width": 107, + "Height": 8, + "Text": "then dies from organ damage.", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 350, + "Width": 37, + "Height": 8, + "Text": "\u002B15H \u2013 6\u222B", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 498, + "Width": 114, + "Height": 8, + "Text": "Foe\u0027s guts are disintegrated. He", + "Confidence": null, + "CenterX": 555 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 498, + "Width": 120, + "Height": 8, + "Text": "collapses and dies after 4 rounds.", + "Confidence": null, + "CenterX": 558 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 498, + "Width": 76, + "Height": 8, + "Text": "\u002B30H \u2013 8\u2211\u220F \u2013 (-80)", + "Confidence": null, + "CenterX": 536 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 643, + "Width": 143, + "Height": 8, + "Text": "Foe\u0027s backbone vanishes. Foe collapses", + "Confidence": null, + "CenterX": 714.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 643, + "Width": 123, + "Height": 8, + "Text": "and dies after 6 peaceful rounds of", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 643, + "Width": 93, + "Height": 8, + "Text": "catastrophic organ failure.", + "Confidence": null, + "CenterX": 689.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 643, + "Width": 80, + "Height": 8, + "Text": "\u002B40H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 683 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 95, + "Width": 97, + "Height": 8, + "Text": "Nether bites deep into foe\u0027s", + "Confidence": null, + "CenterX": 143.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 95, + "Width": 19, + "Height": 8, + "Text": "back.", + "Confidence": null, + "CenterX": 104.5 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 95, + "Width": 55, + "Height": 8, + "Text": "\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 122.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 216, + "Width": 117, + "Height": 8, + "Text": "Blast devours hip, destroying the", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 216, + "Width": 105, + "Height": 8, + "Text": "joint. Foe passes out after 10", + "Confidence": null, + "CenterX": 268.5 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 216, + "Width": 60, + "Height": 8, + "Text": "rounds of agony.", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 216, + "Width": 82, + "Height": 8, + "Text": "\u002B15H \u2013 10\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 257 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 350, + "Width": 130, + "Height": 8, + "Text": "Attack churns\u0027s foe\u0027s brain to mulch.", + "Confidence": null, + "CenterX": 415 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 350, + "Width": 69, + "Height": 8, + "Text": "He collapses, dead.", + "Confidence": null, + "CenterX": 384.5 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 350, + "Width": 48, + "Height": 8, + "Text": "\u002B25H \u2013 (\u002B15)", + "Confidence": null, + "CenterX": 374 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 498, + "Width": 139, + "Height": 8, + "Text": "Blast destroys spinal cord and kidneys.", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 498, + "Width": 72, + "Height": 8, + "Text": "Foe dies next round.", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 498, + "Width": 50, + "Height": 8, + "Text": "\u002B40H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 523 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 643, + "Width": 134, + "Height": 8, + "Text": "With a throb of energy, foe\u0027s hip bone", + "Confidence": null, + "CenterX": 710 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 643, + "Width": 145, + "Height": 8, + "Text": "disintegrates. He collapses and dies in 6", + "Confidence": null, + "CenterX": 715.5 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 643, + "Width": 27, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 643, + "Width": 77, + "Height": 8, + "Text": "\u002B30H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 681.5 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 95, + "Width": 108, + "Height": 8, + "Text": "Nether takes off foe\u0027s ear. Foe", + "Confidence": null, + "CenterX": 149 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 95, + "Width": 45, + "Height": 8, + "Text": "hears at -50.", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 95, + "Width": 87, + "Height": 8, + "Text": "\u002B9H \u2013 10\u2211 \u2013 5\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 216, + "Width": 109, + "Height": 8, + "Text": "Blast takes foe is back of head,", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 216, + "Width": 126, + "Height": 8, + "Text": "causing catastrophic brain damage.", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 216, + "Width": 20, + "Height": 8, + "Text": "Dead.", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 216, + "Width": 20, + "Height": 8, + "Text": "(\u002B15)", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 350, + "Width": 124, + "Height": 8, + "Text": "Foe\u0027s heart is destroyed. His chest", + "Confidence": null, + "CenterX": 412 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 350, + "Width": 131, + "Height": 8, + "Text": "implodes. He collapses and dies one", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 350, + "Width": 41, + "Height": 8, + "Text": "round later.", + "Confidence": null, + "CenterX": 370.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 350, + "Width": 48, + "Height": 8, + "Text": "\u002B35H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 374 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 498, + "Width": 105, + "Height": 8, + "Text": "Disgusting blast disintegrates", + "Confidence": null, + "CenterX": 550.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 498, + "Width": 133, + "Height": 8, + "Text": "abdomen. Foe is disemboweled. Ick.", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 498, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 643, + "Width": 151, + "Height": 8, + "Text": "Foes arm and side disappear in a flickering", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 643, + "Width": 139, + "Height": 8, + "Text": "of purple energy. Foe dies in 8 rounds.", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 643, + "Width": 77, + "Height": 8, + "Text": "\u002B35H \u2013 8\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 681.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 50, + "Width": 31, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 65.5 + }, + { + "PageNumber": 1, + "Top": 873, + "Left": 95, + "Width": 109, + "Height": 8, + "Text": "A piece of it catches him in the", + "Confidence": null, + "CenterX": 149.5 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 95, + "Width": 66, + "Height": 8, + "Text": "middle of the face.", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 95, + "Width": 68, + "Height": 8, + "Text": "12\u2211\u220F \u2013 5\u222B \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 129 + }, + { + "PageNumber": 1, + "Top": 873, + "Left": 216, + "Width": 112, + "Height": 8, + "Text": "Attack blows out the side of the", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 216, + "Width": 129, + "Height": 8, + "Text": "foe\u0027s head. He collapses and dies in", + "Confidence": null, + "CenterX": 280.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 216, + "Width": 48, + "Height": 8, + "Text": "three rounds.", + "Confidence": null, + "CenterX": 240 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 216, + "Width": 38, + "Height": 8, + "Text": "5\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 873, + "Left": 350, + "Width": 125, + "Height": 8, + "Text": "Blast opens up a hole in foe\u0027s back,", + "Confidence": null, + "CenterX": 412.5 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 350, + "Width": 123, + "Height": 8, + "Text": "destroying backbone and leaving a", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 350, + "Width": 79, + "Height": 8, + "Text": "dripping cavity. Dead.", + "Confidence": null, + "CenterX": 389.5 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 350, + "Width": 48, + "Height": 8, + "Text": "\u002B45H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 374 + }, + { + "PageNumber": 1, + "Top": 873, + "Left": 498, + "Width": 118, + "Height": 8, + "Text": "Foe reels in agony. He collapses,", + "Confidence": null, + "CenterX": 557 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 498, + "Width": 51, + "Height": 8, + "Text": "broken in two.", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 498, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 873, + "Left": 643, + "Width": 151, + "Height": 8, + "Text": "Rib cage and organs disintegrate, falling in", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 643, + "Width": 145, + "Height": 8, + "Text": "upon themselves. Foe collapses in a pile", + "Confidence": null, + "CenterX": 715.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 643, + "Width": 31, + "Height": 8, + "Text": "of limbs.", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 643, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 936, + "Left": 56, + "Width": 20, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 66 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 95, + "Width": 90, + "Height": 8, + "Text": "Blast catches foe in neck,", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 95, + "Width": 99, + "Height": 8, + "Text": "effectively decapitating him.", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 958, + "Left": 95, + "Width": 48, + "Height": 8, + "Text": "\u002B20H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 216, + "Width": 98, + "Height": 8, + "Text": "Head strike vaporizes brain.", + "Confidence": null, + "CenterX": 265 + }, + { + "PageNumber": 1, + "Top": 958, + "Left": 216, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 350, + "Width": 129, + "Height": 8, + "Text": "Blast enters eye and dissolves brain.", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 350, + "Width": 137, + "Height": 8, + "Text": "Purple smoke pours out of his eye and", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 350, + "Width": 78, + "Height": 8, + "Text": "ears. Boy, is he dead.", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 958, + "Left": 350, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 498, + "Width": 115, + "Height": 8, + "Text": "Blast cause head to implode into", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 498, + "Width": 136, + "Height": 8, + "Text": "nothingness. Foe collapses, headless.", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 498, + "Width": 56, + "Height": 8, + "Text": "Insert pun here.", + "Confidence": null, + "CenterX": 526 + }, + { + "PageNumber": 1, + "Top": 958, + "Left": 498, + "Width": 20, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 643, + "Width": 139, + "Height": 8, + "Text": "With a scream of agony, foe folds in on", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 643, + "Width": 140, + "Height": 8, + "Text": "himself, then is no more. You shiver at", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 643, + "Width": 60, + "Height": 8, + "Text": "your own power.", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 958, + "Left": 643, + "Width": 20, + "Height": 8, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 998, + "Left": 39, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 41.5 + }, + { + "PageNumber": 1, + "Top": 998, + "Left": 39, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 41.5 + }, + { + "PageNumber": 1, + "Top": 998, + "Left": 39, + "Width": 5, + "Height": 8, + "Text": "K", + "Confidence": null, + "CenterX": 41.5 + }, + { + "PageNumber": 1, + "Top": 998, + "Left": 39, + "Width": 649, + "Height": 9, + "Text": "Keeeeyyyy:::: \u00DF\u03C0 =must parry \u00DF rounds; \u00DF\u220F =no parry for \u00DF rounds; \u00DF\u2211 =stunned for \u00DF rounds; \u00DF\u222B =bleed \u00DF hits per round; (-\u00DF)=foe has -\u00DF penalty; (\u002B\u00DF)=attacker gets \u002B\u00DF next round", + "Confidence": null, + "CenterX": 363.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/pages/page-001.png new file mode 100644 index 0000000..15a1243 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/parsed-cells.json new file mode 100644 index 0000000..bfb2855 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/parsed-cells.json @@ -0,0 +1,7388 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Almost got a piece of him.", + "\u002B0H" + ], + "BaseLines": [ + "Almost got a piece of him.", + "\u002B0H" + ], + "RawCellText": "Almost got a piece of him.\n\u002B0H", + "DescriptionText": "Almost got a piece of him.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 146, + "Width": 93, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 584, + "BoundsWidth": 372, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 552, + "CropWidth": 468, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Glancing blow.", + "\u002B0H" + ], + "BaseLines": [ + "Glancing blow.", + "\u002B0H" + ], + "RawCellText": "Glancing blow.\n\u002B0H", + "DescriptionText": "Glancing blow.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 143, + "Width": 53, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 572, + "BoundsWidth": 212, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 540, + "CropWidth": 308, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Foes stumbles back, looking for the", + "damage.", + "\u002B1H" + ], + "BaseLines": [ + "Foes stumbles back, looking for the", + "damage.", + "\u002B1H" + ], + "RawCellText": "Foes stumbles back, looking for the\ndamage.\n\u002B1H", + "DescriptionText": "Foes stumbles back, looking for the damage.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 146, + "Width": 126, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 584, + "BoundsWidth": 504, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 552, + "CropWidth": 600, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Shouldn\u0027t that have caused more", + "damage?", + "\u002B3H" + ], + "BaseLines": [ + "Shouldn\u0027t that have caused more", + "damage?", + "\u002B3H" + ], + "RawCellText": "Shouldn\u0027t that have caused more\ndamage?\n\u002B3H", + "DescriptionText": "Shouldn\u0027t that have caused more damage?", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 146, + "Width": 117, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 584, + "BoundsWidth": 468, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 552, + "CropWidth": 564, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Foe screams like a frightened child.", + "\u002B4H" + ], + "BaseLines": [ + "Foe screams like a frightened child.", + "\u002B4H" + ], + "RawCellText": "Foe screams like a frightened child.\n\u002B4H", + "DescriptionText": "Foe screams like a frightened child.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 146, + "Width": 125, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 584, + "BoundsWidth": 500, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 552, + "CropWidth": 596, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Look at him dance.", + "\u002B1H" + ], + "BaseLines": [ + "Look at him dance.", + "\u002B1H" + ], + "RawCellText": "Look at him dance.\n\u002B1H", + "DescriptionText": "Look at him dance.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 183, + "Width": 68, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 732, + "BoundsWidth": 272, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 700, + "CropWidth": 368, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "That scared him.", + "\u002B3H" + ], + "BaseLines": [ + "That scared him.", + "\u002B3H" + ], + "RawCellText": "That scared him.\n\u002B3H", + "DescriptionText": "That scared him.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 183, + "Width": 59, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 732, + "BoundsWidth": 236, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 700, + "CropWidth": 332, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Foe is winged.", + "\u002B4H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe is winged.", + "\u002B4H \u2013 (\u002B10)" + ], + "RawCellText": "Foe is winged.\n\u002B4H \u2013 (\u002B10)", + "DescriptionText": "Foe is winged.", + "RawAffixText": "\u002B4H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 183, + "Width": 51, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 732, + "BoundsWidth": 204, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 700, + "CropWidth": 300, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe is frightened. You have the", + "initiative next round.", + "\u002B5H" + ], + "BaseLines": [ + "Foe is frightened. You have the", + "initiative next round.", + "\u002B5H" + ], + "RawCellText": "Foe is frightened. You have the\ninitiative next round.\n\u002B5H", + "DescriptionText": "Foe is frightened. You have the initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 183, + "Width": 112, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 732, + "BoundsWidth": 448, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 700, + "CropWidth": 544, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Foe spends a round counting his digits.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Foe spends a round counting his digits.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Foe spends a round counting his digits.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Foe spends a round counting his digits.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 183, + "Width": 140, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 732, + "BoundsWidth": 560, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 700, + "CropWidth": 656, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foes is wary. You gain the", + "initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "Foes is wary. You gain the", + "initiative next round.", + "\u002B2H" + ], + "RawCellText": "Foes is wary. You gain the\ninitiative next round.\n\u002B2H", + "DescriptionText": "Foes is wary. You gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 220, + "Width": 95, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 880, + "BoundsWidth": 380, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 848, + "CropWidth": 476, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Soft tissue damage to side. You", + "have the initiative for 3 rounds.", + "\u002B4H" + ], + "BaseLines": [ + "Soft tissue damage to side. You", + "have the initiative for 3 rounds.", + "\u002B4H" + ], + "RawCellText": "Soft tissue damage to side. You\nhave the initiative for 3 rounds.\n\u002B4H", + "DescriptionText": "Soft tissue damage to side. You have the initiative for 3 rounds.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 220, + "Width": 115, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 880, + "BoundsWidth": 460, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 848, + "CropWidth": 556, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Minor side wound.", + "\u002B7H \u2013 2\u222B" + ], + "BaseLines": [ + "Minor side wound.", + "\u002B7H \u2013 2\u222B" + ], + "RawCellText": "Minor side wound.\n\u002B7H \u2013 2\u222B", + "DescriptionText": "Minor side wound.", + "RawAffixText": "\u002B7H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 220, + "Width": 66, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 880, + "BoundsWidth": 264, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 848, + "CropWidth": 360, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe steps back in pain.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "Foe steps back in pain.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "Foe steps back in pain.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "Foe steps back in pain.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 220, + "Width": 81, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 880, + "BoundsWidth": 324, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 848, + "CropWidth": 420, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Foes steps back, his arms shielding his", + "face.", + "\u002B8H \u2013 2\u2211" + ], + "BaseLines": [ + "Foes steps back, his arms shielding his", + "face.", + "\u002B8H \u2013 2\u2211" + ], + "RawCellText": "Foes steps back, his arms shielding his\nface.\n\u002B8H \u2013 2\u2211", + "DescriptionText": "Foes steps back, his arms shielding his face.", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 220, + "Width": 139, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 880, + "BoundsWidth": 556, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 848, + "CropWidth": 652, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe leaps back, frightened.", + "\u002B3H \u2013 \u2211 \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe leaps back, frightened.", + "\u002B3H \u2013 \u2211 \u2013 2\u03C0" + ], + "RawCellText": "Foe leaps back, frightened.\n\u002B3H \u2013 \u2211 \u2013 2\u03C0", + "DescriptionText": "Foe leaps back, frightened.", + "RawAffixText": "\u002B3H \u2013 \u2211 \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 257, + "Width": 95, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1028, + "BoundsWidth": 380, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 996, + "CropWidth": 476, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foes catches it on the side.", + "\u002B5H \u2013 \u03C0 (-30)" + ], + "BaseLines": [ + "Foes catches it on the side.", + "\u002B5H \u2013 \u03C0 (-30)" + ], + "RawCellText": "Foes catches it on the side.\n\u002B5H \u2013 \u03C0 (-30)", + "DescriptionText": "Foes catches it on the side.", + "RawAffixText": "\u002B5H \u2013 \u03C0 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 257, + "Width": 96, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1028, + "BoundsWidth": 384, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 996, + "CropWidth": 480, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Blow knocks foe back.", + "\u002B8H \u2013 3\u2211" + ], + "BaseLines": [ + "Blow knocks foe back.", + "\u002B8H \u2013 3\u2211" + ], + "RawCellText": "Blow knocks foe back.\n\u002B8H \u2013 3\u2211", + "DescriptionText": "Blow knocks foe back.", + "RawAffixText": "\u002B8H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 257, + "Width": 79, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1028, + "BoundsWidth": 316, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 996, + "CropWidth": 412, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe catches a piece of it in the side.", + "\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Foe catches a piece of it in the side.", + "\u2211 \u2013 3\u222B" + ], + "RawCellText": "Foe catches a piece of it in the side.\n\u2211 \u2013 3\u222B", + "DescriptionText": "Foe catches a piece of it in the side.", + "RawAffixText": "\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 257, + "Width": 126, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1028, + "BoundsWidth": 504, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 996, + "CropWidth": 600, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Minor damage cause foe to shift to the", + "defensive.", + "3 \u03C0 \u2013\u222B" + ], + "BaseLines": [ + "Minor damage cause foe to shift to the", + "defensive.", + "3 \u03C0 \u2013\u222B" + ], + "RawCellText": "Minor damage cause foe to shift to the\ndefensive.\n3 \u03C0 \u2013\u222B", + "DescriptionText": "Minor damage cause foe to shift to the defensive.", + "RawAffixText": "3 \u03C0 \u2013\u222B", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 257, + "Width": 137, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1028, + "BoundsWidth": 548, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 996, + "CropWidth": 644, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "A", + "Lines": [ + "Chest strike causes foe\u0027s life to", + "pass before his eyes.", + "\u002B4H \u2013 3 \u03C0 \u2013 (\u002B5)" + ], + "BaseLines": [ + "Chest strike causes foe\u0027s life to", + "pass before his eyes.", + "\u002B4H \u2013 3 \u03C0 \u2013 (\u002B5)" + ], + "RawCellText": "Chest strike causes foe\u0027s life to\npass before his eyes.\n\u002B4H \u2013 3 \u03C0 \u2013 (\u002B5)", + "DescriptionText": "Chest strike causes foe\u0027s life to pass before his eyes.", + "RawAffixText": "\u002B4H \u2013 3 \u03C0 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 294, + "Width": 110, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1176, + "BoundsWidth": 440, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 1144, + "CropWidth": 536, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "B", + "Lines": [ + "Attack grazes foe\u0027s chest.", + "\u002B5H \u2013 3\u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Attack grazes foe\u0027s chest.", + "\u002B5H \u2013 3\u2211 \u2013 \u222B" + ], + "RawCellText": "Attack grazes foe\u0027s chest.\n\u002B5H \u2013 3\u2211 \u2013 \u222B", + "DescriptionText": "Attack grazes foe\u0027s chest.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 294, + "Width": 90, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1176, + "BoundsWidth": 360, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 1144, + "CropWidth": 456, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "C", + "Lines": [ + "Blast takes chunk out of foe\u0027s chest.", + "\u002B9H \u2013 2\u2211\u220F \u20133\u222B" + ], + "BaseLines": [ + "Blast takes chunk out of foe\u0027s chest.", + "\u002B9H \u2013 2\u2211\u220F \u20133\u222B" + ], + "RawCellText": "Blast takes chunk out of foe\u0027s chest.\n\u002B9H \u2013 2\u2211\u220F \u20133\u222B", + "DescriptionText": "Blast takes chunk out of foe\u0027s chest.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F \u20133\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 294, + "Width": 128, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1176, + "BoundsWidth": 512, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 1144, + "CropWidth": 608, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "D", + "Lines": [ + "Blast catches foe in lower leg.", + "\u002B7H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Blast catches foe in lower leg.", + "\u002B7H \u2013 3\u2211\u220F" + ], + "RawCellText": "Blast catches foe in lower leg.\n\u002B7H \u2013 3\u2211\u220F", + "DescriptionText": "Blast catches foe in lower leg.", + "RawAffixText": "\u002B7H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 294, + "Width": 106, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1176, + "BoundsWidth": 424, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 1144, + "CropWidth": 520, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "E", + "Lines": [ + "Attack cuts a hole in the foe\u0027s side.", + "\u002B9H \u2013 4\u2211 3\u222B" + ], + "BaseLines": [ + "Attack cuts a hole in the foe\u0027s side.", + "\u002B9H \u2013 4\u2211 3\u222B" + ], + "RawCellText": "Attack cuts a hole in the foe\u0027s side.\n\u002B9H \u2013 4\u2211 3\u222B", + "DescriptionText": "Attack cuts a hole in the foe\u0027s side.", + "RawAffixText": "\u002B9H \u2013 4\u2211 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 294, + "Width": 123, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1176, + "BoundsWidth": 492, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 1144, + "CropWidth": 588, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "A", + "Lines": [ + "Attack creases deep into calf.", + "\u2211 \u2013 \u222B \u2013 (-50)" + ], + "BaseLines": [ + "Attack creases deep into calf.", + "\u2211 \u2013 \u222B \u2013 (-50)" + ], + "RawCellText": "Attack creases deep into calf.\n\u2211 \u2013 \u222B \u2013 (-50)", + "DescriptionText": "Attack creases deep into calf.", + "RawAffixText": "\u2211 \u2013 \u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 331, + "Width": 103, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1324, + "BoundsWidth": 412, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 1292, + "CropWidth": 508, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "B", + "Lines": [ + "Nether wreaks havoc on foe\u0027s calf.", + "\u002B6H \u2013 4\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Nether wreaks havoc on foe\u0027s calf.", + "\u002B6H \u2013 4\u222B \u2013 (-50)" + ], + "RawCellText": "Nether wreaks havoc on foe\u0027s calf.\n\u002B6H \u2013 4\u222B \u2013 (-50)", + "DescriptionText": "Nether wreaks havoc on foe\u0027s calf.", + "RawAffixText": "\u002B6H \u2013 4\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 331, + "Width": 122, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1324, + "BoundsWidth": 488, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 1292, + "CropWidth": 584, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "C", + "Lines": [ + "Foe takes major wound to his lower leg.", + "He is knocked to one knee.", + "4\u2211 \u20135\u222B" + ], + "BaseLines": [ + "Foe takes major wound to his lower leg.", + "He is knocked to one knee.", + "4\u2211 \u20135\u222B" + ], + "RawCellText": "Foe takes major wound to his lower leg.\nHe is knocked to one knee.\n4\u2211 \u20135\u222B", + "DescriptionText": "Foe takes major wound to his lower leg. He is knocked to one knee.", + "RawAffixText": "4\u2211 \u20135\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 331, + "Width": 141, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1324, + "BoundsWidth": 564, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 1292, + "CropWidth": 660, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "D", + "Lines": [ + "Attack hits foe in the groin. Foe is", + "stunned as he checks the extent of the", + "damage.", + "\u002B8H \u2013 7\u2211 \u2013 4\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Attack hits foe in the groin. Foe is", + "stunned as he checks the extent of the", + "damage.", + "\u002B8H \u2013 7\u2211 \u2013 4\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Attack hits foe in the groin. Foe is\nstunned as he checks the extent of the\ndamage.\n\u002B8H \u2013 7\u2211 \u2013 4\u220F \u2013 (\u002B10)", + "DescriptionText": "Attack hits foe in the groin. Foe is stunned as he checks the extent of the damage.", + "RawAffixText": "\u002B8H \u2013 7\u2211 \u2013 4\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 331, + "Width": 136, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1324, + "BoundsWidth": 544, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 1292, + "CropWidth": 640, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "E", + "Lines": [ + "Attack to leg dissolves bone and muscles.", + "4\u222B \u2013 (-70) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Attack to leg dissolves bone and muscles.", + "4\u222B \u2013 (-70) \u2013 (\u002B10)" + ], + "RawCellText": "Attack to leg dissolves bone and muscles.\n4\u222B \u2013 (-70) \u2013 (\u002B10)", + "DescriptionText": "Attack to leg dissolves bone and muscles.", + "RawAffixText": "4\u222B \u2013 (-70) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 331, + "Width": 148, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1324, + "BoundsWidth": 592, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 1292, + "CropWidth": 688, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "A", + "Lines": [ + "Just a flesh wound.", + "\u002B5H \u2013 2\u2211" + ], + "BaseLines": [ + "Just a flesh wound.", + "\u002B5H \u2013 2\u2211" + ], + "RawCellText": "Just a flesh wound.\n\u002B5H \u2013 2\u2211", + "DescriptionText": "Just a flesh wound.", + "RawAffixText": "\u002B5H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 380, + "Width": 69, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1520, + "BoundsWidth": 276, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 1488, + "CropWidth": 372, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "B", + "Lines": [ + "Nether creases foe\u0027s back.", + "\u002B7H \u2013 4\u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Nether creases foe\u0027s back.", + "\u002B7H \u2013 4\u2211 \u2013 \u222B" + ], + "RawCellText": "Nether creases foe\u0027s back.\n\u002B7H \u2013 4\u2211 \u2013 \u222B", + "DescriptionText": "Nether creases foe\u0027s back.", + "RawAffixText": "\u002B7H \u2013 4\u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 380, + "Width": 93, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1520, + "BoundsWidth": 372, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 1488, + "CropWidth": 468, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "C", + "Lines": [ + "Blast disintegrates a swath across foe\u0027s", + "back.", + "5\u2211 \u20133\u222B" + ], + "BaseLines": [ + "Blast disintegrates a swath across foe\u0027s", + "back.", + "5\u2211 \u20133\u222B" + ], + "RawCellText": "Blast disintegrates a swath across foe\u0027s\nback.\n5\u2211 \u20133\u222B", + "DescriptionText": "Blast disintegrates a swath across foe\u0027s back.", + "RawAffixText": "5\u2211 \u20133\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 380, + "Width": 140, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1520, + "BoundsWidth": 560, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 1488, + "CropWidth": 656, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "D", + "Lines": [ + "Blast disintegrates lower spine. He", + "passes out for 20 rounds.", + "\u002B10H" + ], + "BaseLines": [ + "Blast disintegrates lower spine. He", + "passes out for 20 rounds.", + "\u002B10H" + ], + "RawCellText": "Blast disintegrates lower spine. He\npasses out for 20 rounds.\n\u002B10H", + "DescriptionText": "Blast disintegrates lower spine. He passes out for 20 rounds.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 380, + "Width": 125, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1520, + "BoundsWidth": 500, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 1488, + "CropWidth": 596, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s lower back loses some semi-", + "important muscles.", + "\u002B10H \u2013 5\u222B\u220F \u2013 4\u222B" + ], + "BaseLines": [ + "Foe\u0027s lower back loses some semi-", + "important muscles.", + "\u002B10H \u2013 5\u222B\u220F \u2013 4\u222B" + ], + "RawCellText": "Foe\u0027s lower back loses some semi-\nimportant muscles.\n\u002B10H \u2013 5\u222B\u220F \u2013 4\u222B", + "DescriptionText": "Foe\u0027s lower back loses some semi- important muscles.", + "RawAffixText": "\u002B10H \u2013 5\u222B\u220F \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 380, + "Width": 124, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1520, + "BoundsWidth": 496, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 1488, + "CropWidth": 592, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Chest blast causes foe to reel.", + "3\u2211 \u220F\u2013 3\u222B" + ], + "BaseLines": [ + "Chest blast causes foe to reel.", + "3\u2211 \u220F\u2013 3\u222B" + ], + "RawCellText": "Chest blast causes foe to reel.\n3\u2211 \u220F\u2013 3\u222B", + "DescriptionText": "Chest blast causes foe to reel.", + "RawAffixText": "3\u2211 \u220F\u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 418, + "Width": 106, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1672, + "BoundsWidth": 424, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 1640, + "CropWidth": 520, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Blast to foe\u0027s chest put him on the", + "ground.", + "\u002B8H \u2013 5\u2211 \u2013 4\u222B" + ], + "BaseLines": [ + "Blast to foe\u0027s chest put him on the", + "ground.", + "\u002B8H \u2013 5\u2211 \u2013 4\u222B" + ], + "RawCellText": "Blast to foe\u0027s chest put him on the\nground.\n\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "DescriptionText": "Blast to foe\u0027s chest put him on the ground.", + "RawAffixText": "\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 418, + "Width": 121, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1672, + "BoundsWidth": 484, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 1640, + "CropWidth": 580, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Blast to foe\u0027s chest drops him like a bad", + "habit.", + "\u002B10H \u2013 3\u2211\u220F \u20133\u222B" + ], + "BaseLines": [ + "Blast to foe\u0027s chest drops him like a bad", + "habit.", + "\u002B10H \u2013 3\u2211\u220F \u20133\u222B" + ], + "RawCellText": "Blast to foe\u0027s chest drops him like a bad\nhabit.\n\u002B10H \u2013 3\u2211\u220F \u20133\u222B", + "DescriptionText": "Blast to foe\u0027s chest drops him like a bad habit.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u20133\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 418, + "Width": 142, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1672, + "BoundsWidth": 568, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 1640, + "CropWidth": 664, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Blast destroys several ribs.", + "\u002B12H \u2013 (-50)" + ], + "BaseLines": [ + "Blast destroys several ribs.", + "\u002B12H \u2013 (-50)" + ], + "RawCellText": "Blast destroys several ribs.\n\u002B12H \u2013 (-50)", + "DescriptionText": "Blast destroys several ribs.", + "RawAffixText": "\u002B12H \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 418, + "Width": 96, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1672, + "BoundsWidth": 384, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 1640, + "CropWidth": 480, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Large swath eaten though foe\u0027s chest. He", + "drops for three rounds, then passes out.", + "6\u222B" + ], + "BaseLines": [ + "Large swath eaten though foe\u0027s chest. He", + "drops for three rounds, then passes out.", + "6\u222B" + ], + "RawCellText": "Large swath eaten though foe\u0027s chest. He\ndrops for three rounds, then passes out.\n6\u222B", + "DescriptionText": "Large swath eaten though foe\u0027s chest. He drops for three rounds, then passes out.", + "RawAffixText": "6\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 418, + "Width": 149, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1672, + "BoundsWidth": 596, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 1640, + "CropWidth": 692, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Minor thigh damage. Foe goes", + "down, a startled look on his face.", + "\u002B5H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Minor thigh damage. Foe goes", + "down, a startled look on his face.", + "\u002B5H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Minor thigh damage. Foe goes\ndown, a startled look on his face.\n\u002B5H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Minor thigh damage. Foe goes down, a startled look on his face.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 455, + "Width": 117, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 1820, + "BoundsWidth": 468, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 1788, + "CropWidth": 564, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Nether devours chunks of foe\u0027s", + "thigh muscle.", + "\u002B9H \u2013 4\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Nether devours chunks of foe\u0027s", + "thigh muscle.", + "\u002B9H \u2013 4\u222B \u2013 (-50)" + ], + "RawCellText": "Nether devours chunks of foe\u0027s\nthigh muscle.\n\u002B9H \u2013 4\u222B \u2013 (-50)", + "DescriptionText": "Nether devours chunks of foe\u0027s thigh muscle.", + "RawAffixText": "\u002B9H \u2013 4\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 455, + "Width": 111, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1820, + "BoundsWidth": 444, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 1788, + "CropWidth": 540, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Attack devastates foe\u0027s thigh. He", + "collapses like someone threw a switch.", + "\u002B11H \u2013 5\u2211 \u20135\u222B \u2013 (-75)" + ], + "BaseLines": [ + "Attack devastates foe\u0027s thigh. He", + "collapses like someone threw a switch.", + "\u002B11H \u2013 5\u2211 \u20135\u222B \u2013 (-75)" + ], + "RawCellText": "Attack devastates foe\u0027s thigh. He\ncollapses like someone threw a switch.\n\u002B11H \u2013 5\u2211 \u20135\u222B \u2013 (-75)", + "DescriptionText": "Attack devastates foe\u0027s thigh. He collapses like someone threw a switch.", + "RawAffixText": "\u002B11H \u2013 5\u2211 \u20135\u222B \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 455, + "Width": 138, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 1820, + "BoundsWidth": 552, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 1788, + "CropWidth": 648, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Foe takes a serious hit to his upper", + "legs. He collapses.", + "6\u222B \u2013 (-90) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe takes a serious hit to his upper", + "legs. He collapses.", + "6\u222B \u2013 (-90) \u2013 (\u002B10)" + ], + "RawCellText": "Foe takes a serious hit to his upper\nlegs. He collapses.\n6\u222B \u2013 (-90) \u2013 (\u002B10)", + "DescriptionText": "Foe takes a serious hit to his upper legs. He collapses.", + "RawAffixText": "6\u222B \u2013 (-90) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 455, + "Width": 124, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 1820, + "BoundsWidth": 496, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 1788, + "CropWidth": 592, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Attack the groin. All vitals vanish in a puff", + "of purple smoke.", + "14\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Attack the groin. All vitals vanish in a puff", + "of purple smoke.", + "14\u2211 \u2013 2\u222B" + ], + "RawCellText": "Attack the groin. All vitals vanish in a puff\nof purple smoke.\n14\u2211 \u2013 2\u222B", + "DescriptionText": "Attack the groin. All vitals vanish in a puff of purple smoke.", + "RawAffixText": "14\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 14, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "14\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 455, + "Width": 149, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 1820, + "BoundsWidth": 596, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 1788, + "CropWidth": 692, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Nether cuts deep wound in foe\u0027s", + "forearm.", + "\u002B5H \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Nether cuts deep wound in foe\u0027s", + "forearm.", + "\u002B5H \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Nether cuts deep wound in foe\u0027s\nforearm.\n\u002B5H \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Nether cuts deep wound in foe\u0027s forearm.", + "RawAffixText": "\u002B5H \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 504, + "Width": 114, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2016, + "BoundsWidth": 456, + "BoundsHeight": 128, + "CropLeft": 332, + "CropTop": 1984, + "CropWidth": 552, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Nether eats deep into forearm.", + "Foe\u0027s hand is useless.", + "\u002B9H \u2013 5\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Nether eats deep into forearm.", + "Foe\u0027s hand is useless.", + "\u002B9H \u2013 5\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Nether eats deep into forearm.\nFoe\u0027s hand is useless.\n\u002B9H \u2013 5\u222B \u2013 (\u002B10)", + "DescriptionText": "Nether eats deep into forearm. Foe\u0027s hand is useless.", + "RawAffixText": "\u002B9H \u2013 5\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 504, + "Width": 108, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2016, + "BoundsWidth": 432, + "BoundsHeight": 128, + "CropLeft": 816, + "CropTop": 1984, + "CropWidth": 528, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Attack tears through foe\u0027s forearm. Arm", + "is useless.", + "\u002B12H \u2013 4\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Attack tears through foe\u0027s forearm. Arm", + "is useless.", + "\u002B12H \u2013 4\u222B \u2013 (-40)" + ], + "RawCellText": "Attack tears through foe\u0027s forearm. Arm\nis useless.\n\u002B12H \u2013 4\u222B \u2013 (-40)", + "DescriptionText": "Attack tears through foe\u0027s forearm. Arm is useless.", + "RawAffixText": "\u002B12H \u2013 4\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 504, + "Width": 143, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2016, + "BoundsWidth": 572, + "BoundsHeight": 128, + "CropLeft": 1352, + "CropTop": 1984, + "CropWidth": 668, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Nether dissolves foe\u0027s forearm in a", + "agonizing blast of black fire.", + "5\u2211 \u2013 7\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Nether dissolves foe\u0027s forearm in a", + "agonizing blast of black fire.", + "5\u2211 \u2013 7\u222B \u2013 (-40)" + ], + "RawCellText": "Nether dissolves foe\u0027s forearm in a\nagonizing blast of black fire.\n5\u2211 \u2013 7\u222B \u2013 (-40)", + "DescriptionText": "Nether dissolves foe\u0027s forearm in a agonizing blast of black fire.", + "RawAffixText": "5\u2211 \u2013 7\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 7, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 504, + "Width": 123, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2016, + "BoundsWidth": 492, + "BoundsHeight": 128, + "CropLeft": 1944, + "CropTop": 1984, + "CropWidth": 588, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Blast neatly disintegrates wafer-thin plane", + "through foe\u0027s elbow. Arm is severed.", + "8\u2211 \u2013 5\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blast neatly disintegrates wafer-thin plane", + "through foe\u0027s elbow. Arm is severed.", + "8\u2211 \u2013 5\u222B \u2013 (-50)" + ], + "RawCellText": "Blast neatly disintegrates wafer-thin plane\nthrough foe\u0027s elbow. Arm is severed.\n8\u2211 \u2013 5\u222B \u2013 (-50)", + "DescriptionText": "Blast neatly disintegrates wafer-thin plane through foe\u0027s elbow. Arm is severed.", + "RawAffixText": "8\u2211 \u2013 5\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 504, + "Width": 148, + "Height": 32 + }, + "SourceImagePath": "arcane-nether/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2016, + "BoundsWidth": 592, + "BoundsHeight": 128, + "CropLeft": 2524, + "CropTop": 1984, + "CropWidth": 688, + "CropHeight": 192, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Shield shoulder collapses. Arm", + "is useless. It will fall off if foe", + "takes more than 25% activity.", + "\u002B10H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Shield shoulder collapses. Arm", + "is useless. It will fall off if foe", + "takes more than 25% activity.", + "\u002B10H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Shield shoulder collapses. Arm\nis useless. It will fall off if foe\ntakes more than 25% activity.\n\u002B10H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (\u002B20)", + "DescriptionText": "Shield shoulder collapses. Arm is useless. It will fall off if foe takes more than 25% activity.", + "RawAffixText": "\u002B10H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 541, + "Width": 112, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2164, + "BoundsWidth": 448, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 2132, + "CropWidth": 544, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Elbow in foe\u0027s weapon arm is", + "destroyed. Arm is useless.", + "\u002B10H \u2013 10\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Elbow in foe\u0027s weapon arm is", + "destroyed. Arm is useless.", + "\u002B10H \u2013 10\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Elbow in foe\u0027s weapon arm is\ndestroyed. Arm is useless.\n\u002B10H \u2013 10\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Elbow in foe\u0027s weapon arm is destroyed. Arm is useless.", + "RawAffixText": "\u002B10H \u2013 10\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 541, + "Width": 104, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2164, + "BoundsWidth": 416, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 2132, + "CropWidth": 512, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Blast disintegrates foe\u0027s knee. Foe\u0027s", + "lower leg falls off.", + "\u002B25H \u2013 10\u2211\u220F \u20135\u222B \u2013 (-70) \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast disintegrates foe\u0027s knee. Foe\u0027s", + "lower leg falls off.", + "\u002B25H \u2013 10\u2211\u220F \u20135\u222B \u2013 (-70) \u2013 (\u002B20)" + ], + "RawCellText": "Blast disintegrates foe\u0027s knee. Foe\u0027s\nlower leg falls off.\n\u002B25H \u2013 10\u2211\u220F \u20135\u222B \u2013 (-70) \u2013 (\u002B20)", + "DescriptionText": "Blast disintegrates foe\u0027s knee. Foe\u0027s lower leg falls off.", + "RawAffixText": "\u002B25H \u2013 10\u2211\u220F \u20135\u222B \u2013 (-70) \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 541, + "Width": 129, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2164, + "BoundsWidth": 516, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 2132, + "CropWidth": 612, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Eyes, ears, nose and throat are wiped", + "clean by a nether sheet. Foe dies after", + "4 gruesome rounds.", + "(\u002B20)" + ], + "BaseLines": [ + "Eyes, ears, nose and throat are wiped", + "clean by a nether sheet. Foe dies after", + "4 gruesome rounds.", + "(\u002B20)" + ], + "RawCellText": "Eyes, ears, nose and throat are wiped\nclean by a nether sheet. Foe dies after\n4 gruesome rounds.\n(\u002B20)", + "DescriptionText": "Eyes, ears, nose and throat are wiped clean by a nether sheet. Foe dies after 4 gruesome rounds.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 541, + "Width": 136, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2164, + "BoundsWidth": 544, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 2132, + "CropWidth": 640, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Blast enters through small whole in torso", + "then bounces around, disintegrating all", + "organs. Foe falls, hollow.", + "\u002B20H \u2013 (\u002B25)" + ], + "BaseLines": [ + "Blast enters through small whole in torso", + "then bounces around, disintegrating all", + "organs. Foe falls, hollow.", + "\u002B20H \u2013 (\u002B25)" + ], + "RawCellText": "Blast enters through small whole in torso\nthen bounces around, disintegrating all\norgans. Foe falls, hollow.\n\u002B20H \u2013 (\u002B25)", + "DescriptionText": "Blast enters through small whole in torso then bounces around, disintegrating all organs. Foe falls, hollow.", + "RawAffixText": "\u002B20H \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 541, + "Width": 146, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2164, + "BoundsWidth": 584, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 2132, + "CropWidth": 680, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Nether cracks foe\u0027s collar bone.", + "\u002B6H \u2013 4\u2211 \u2013 2\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Nether cracks foe\u0027s collar bone.", + "\u002B6H \u2013 4\u2211 \u2013 2\u220F \u2013 (-20)" + ], + "RawCellText": "Nether cracks foe\u0027s collar bone.\n\u002B6H \u2013 4\u2211 \u2013 2\u220F \u2013 (-20)", + "DescriptionText": "Nether cracks foe\u0027s collar bone.", + "RawAffixText": "\u002B6H \u2013 4\u2211 \u2013 2\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 590, + "Width": 112, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2360, + "BoundsWidth": 448, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 2328, + "CropWidth": 544, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Almost a miss. Foe catches part of", + "it in the neck.", + "\u002B10H \u2013 6\u2211 \u2013 3\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Almost a miss. Foe catches part of", + "it in the neck.", + "\u002B10H \u2013 6\u2211 \u2013 3\u220F \u2013 (-10)" + ], + "RawCellText": "Almost a miss. Foe catches part of\nit in the neck.\n\u002B10H \u2013 6\u2211 \u2013 3\u220F \u2013 (-10)", + "DescriptionText": "Almost a miss. Foe catches part of it in the neck.", + "RawAffixText": "\u002B10H \u2013 6\u2211 \u2013 3\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 590, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2360, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 2328, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Blow catches foe at the base of the", + "neck. He grasps his throat, choking and", + "gasping.", + "\u002B13H \u2013 12\u2211 \u2013 (-80)" + ], + "BaseLines": [ + "Blow catches foe at the base of the", + "neck. He grasps his throat, choking and", + "gasping.", + "\u002B13H \u2013 12\u2211 \u2013 (-80)" + ], + "RawCellText": "Blow catches foe at the base of the\nneck. He grasps his throat, choking and\ngasping.\n\u002B13H \u2013 12\u2211 \u2013 (-80)", + "DescriptionText": "Blow catches foe at the base of the neck. He grasps his throat, choking and gasping.", + "RawAffixText": "\u002B13H \u2013 12\u2211 \u2013 (-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 590, + "Width": 143, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2360, + "BoundsWidth": 572, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 2328, + "CropWidth": 668, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Massive disruption and cells implode", + "throughout foe\u0027s shoulder.", + "\u002B14H \u2013 6\u2211 \u2013 (-60)" + ], + "BaseLines": [ + "Massive disruption and cells implode", + "throughout foe\u0027s shoulder.", + "\u002B14H \u2013 6\u2211 \u2013 (-60)" + ], + "RawCellText": "Massive disruption and cells implode\nthroughout foe\u0027s shoulder.\n\u002B14H \u2013 6\u2211 \u2013 (-60)", + "DescriptionText": "Massive disruption and cells implode throughout foe\u0027s shoulder.", + "RawAffixText": "\u002B14H \u2013 6\u2211 \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 590, + "Width": 132, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2360, + "BoundsWidth": 528, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 2328, + "CropWidth": 624, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blast catches foe in shoulder. He stares as", + "the nether consumes flesh and bone. He", + "catches his arm as it falls.", + "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Blast catches foe in shoulder. He stares as", + "the nether consumes flesh and bone. He", + "catches his arm as it falls.", + "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Blast catches foe in shoulder. He stares as\nthe nether consumes flesh and bone. He\ncatches his arm as it falls.\n\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "DescriptionText": "Blast catches foe in shoulder. He stares as the nether consumes flesh and bone. He catches his arm as it falls.", + "RawAffixText": "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 22, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B22H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 590, + "Width": 152, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2360, + "BoundsWidth": 608, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 2328, + "CropWidth": 704, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Disrupt tendons in foe\u0027s lower", + "leg.", + "3\u2211 \u2013 3\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Disrupt tendons in foe\u0027s lower", + "leg.", + "3\u2211 \u2013 3\u222B \u2013 (-50)" + ], + "RawCellText": "Disrupt tendons in foe\u0027s lower\nleg.\n3\u2211 \u2013 3\u222B \u2013 (-50)", + "DescriptionText": "Disrupt tendons in foe\u0027s lower leg.", + "RawAffixText": "3\u2211 \u2013 3\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 639, + "Width": 107, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2556, + "BoundsWidth": 428, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 2524, + "CropWidth": 524, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s calf muscle comes apart.", + "\u002B11H \u2013 5\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Foe\u0027s calf muscle comes apart.", + "\u002B11H \u2013 5\u222B \u2013 (-50)" + ], + "RawCellText": "Foe\u0027s calf muscle comes apart.\n\u002B11H \u2013 5\u222B \u2013 (-50)", + "DescriptionText": "Foe\u0027s calf muscle comes apart.", + "RawAffixText": "\u002B11H \u2013 5\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 639, + "Width": 109, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2556, + "BoundsWidth": 436, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 2524, + "CropWidth": 532, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Nether catches foe in the calf. Muscle", + "dissolves. Tendons are disrupted.", + "Bone is fractured", + "6\u222B \u2013 (-50) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Nether catches foe in the calf. Muscle", + "dissolves. Tendons are disrupted.", + "Bone is fractured", + "6\u222B \u2013 (-50) \u2013 (\u002B10)" + ], + "RawCellText": "Nether catches foe in the calf. Muscle\ndissolves. Tendons are disrupted.\nBone is fractured\n6\u222B \u2013 (-50) \u2013 (\u002B10)", + "DescriptionText": "Nether catches foe in the calf. Muscle dissolves. Tendons are disrupted. Bone is fractured", + "RawAffixText": "6\u222B \u2013 (-50) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 639, + "Width": 135, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2556, + "BoundsWidth": 540, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 2524, + "CropWidth": 636, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Nether engulfs foes foot, devouring it in", + "a blast of black fire. Foe falls", + "unconscious after 5 rounds.", + "5\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Nether engulfs foes foot, devouring it in", + "a blast of black fire. Foe falls", + "unconscious after 5 rounds.", + "5\u222B \u2013 (-50)" + ], + "RawCellText": "Nether engulfs foes foot, devouring it in\na blast of black fire. Foe falls\nunconscious after 5 rounds.\n5\u222B \u2013 (-50)", + "DescriptionText": "Nether engulfs foes foot, devouring it in a blast of black fire. Foe falls unconscious after 5 rounds.", + "RawAffixText": "5\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 639, + "Width": 141, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2556, + "BoundsWidth": 564, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 2524, + "CropWidth": 660, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Nether consumes thighbone, muscles and", + "nearby vessels.", + "\u002B24H \u2013 6\u2211 \u2013 6\u222B" + ], + "BaseLines": [ + "Nether consumes thighbone, muscles and", + "nearby vessels.", + "\u002B24H \u2013 6\u2211 \u2013 6\u222B" + ], + "RawCellText": "Nether consumes thighbone, muscles and\nnearby vessels.\n\u002B24H \u2013 6\u2211 \u2013 6\u222B", + "DescriptionText": "Nether consumes thighbone, muscles and nearby vessels.", + "RawAffixText": "\u002B24H \u2013 6\u2211 \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 639, + "Width": 149, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2556, + "BoundsWidth": 596, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 2524, + "CropWidth": 692, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blast takes a bite out of the foe\u0027s", + "biceps.", + "\u002B7H \u2013 4\u2211 \u2013 3\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Blast takes a bite out of the foe\u0027s", + "biceps.", + "\u002B7H \u2013 4\u2211 \u2013 3\u222B \u2013 (-30)" + ], + "RawCellText": "Blast takes a bite out of the foe\u0027s\nbiceps.\n\u002B7H \u2013 4\u2211 \u2013 3\u222B \u2013 (-30)", + "DescriptionText": "Blast takes a bite out of the foe\u0027s biceps.", + "RawAffixText": "\u002B7H \u2013 4\u2211 \u2013 3\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 689, + "Width": 115, + "Height": 31 + }, + "SourceImagePath": "arcane-nether/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2756, + "BoundsWidth": 460, + "BoundsHeight": 124, + "CropLeft": 332, + "CropTop": 2724, + "CropWidth": 556, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Nether eats deep into foe\u0027s shield", + "arm.", + "7\u2211\u220F \u2013 6\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Nether eats deep into foe\u0027s shield", + "arm.", + "7\u2211\u220F \u2013 6\u222B \u2013 (-40)" + ], + "RawCellText": "Nether eats deep into foe\u0027s shield\narm.\n7\u2211\u220F \u2013 6\u222B \u2013 (-40)", + "DescriptionText": "Nether eats deep into foe\u0027s shield arm.", + "RawAffixText": "7\u2211\u220F \u2013 6\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 689, + "Width": 118, + "Height": 31 + }, + "SourceImagePath": "arcane-nether/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2756, + "BoundsWidth": 472, + "BoundsHeight": 124, + "CropLeft": 816, + "CropTop": 2724, + "CropWidth": 568, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Shield arm takes full blow. Muscles", + "dissolve and bone fracture.", + "\u002B14H \u2013 12\u2211 \u20134\u222B" + ], + "BaseLines": [ + "Shield arm takes full blow. Muscles", + "dissolve and bone fracture.", + "\u002B14H \u2013 12\u2211 \u20134\u222B" + ], + "RawCellText": "Shield arm takes full blow. Muscles\ndissolve and bone fracture.\n\u002B14H \u2013 12\u2211 \u20134\u222B", + "DescriptionText": "Shield arm takes full blow. Muscles dissolve and bone fracture.", + "RawAffixText": "\u002B14H \u2013 12\u2211 \u20134\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 689, + "Width": 128, + "Height": 31 + }, + "SourceImagePath": "arcane-nether/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2756, + "BoundsWidth": 512, + "BoundsHeight": 124, + "CropLeft": 1352, + "CropTop": 2724, + "CropWidth": 608, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Blast removes shield arm, leaving a", + "messy stump.", + "\u002B20H \u2013 18\u2211\u220F \u20136\u222B" + ], + "BaseLines": [ + "Blast removes shield arm, leaving a", + "messy stump.", + "\u002B20H \u2013 18\u2211\u220F \u20136\u222B" + ], + "RawCellText": "Blast removes shield arm, leaving a\nmessy stump.\n\u002B20H \u2013 18\u2211\u220F \u20136\u222B", + "DescriptionText": "Blast removes shield arm, leaving a messy stump.", + "RawAffixText": "\u002B20H \u2013 18\u2211\u220F \u20136\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 18, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "18\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 18, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "18\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 689, + "Width": 126, + "Height": 31 + }, + "SourceImagePath": "arcane-nether/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2756, + "BoundsWidth": 504, + "BoundsHeight": 124, + "CropLeft": 1944, + "CropTop": 2724, + "CropWidth": 600, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s arm is consumed by black fire.", + "\u002B30H \u2013 36\u2211 \u2013 6\u222B" + ], + "BaseLines": [ + "Foe\u0027s arm is consumed by black fire.", + "\u002B30H \u2013 36\u2211 \u2013 6\u222B" + ], + "RawCellText": "Foe\u0027s arm is consumed by black fire.\n\u002B30H \u2013 36\u2211 \u2013 6\u222B", + "DescriptionText": "Foe\u0027s arm is consumed by black fire.", + "RawAffixText": "\u002B30H \u2013 36\u2211 \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 36, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "36\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 689, + "Width": 130, + "Height": 31 + }, + "SourceImagePath": "arcane-nether/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2756, + "BoundsWidth": 520, + "BoundsHeight": 124, + "CropLeft": 2524, + "CropTop": 2724, + "CropWidth": 616, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Nether catches foe in the side.", + "Internal bleeding.", + "8\u2211 \u2013 7\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Nether catches foe in the side.", + "Internal bleeding.", + "8\u2211 \u2013 7\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Nether catches foe in the side.\nInternal bleeding.\n8\u2211 \u2013 7\u222B \u2013 (\u002B10)", + "DescriptionText": "Nether catches foe in the side. Internal bleeding.", + "RawAffixText": "8\u2211 \u2013 7\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 7, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 726, + "Width": 107, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 2904, + "BoundsWidth": 428, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 2872, + "CropWidth": 524, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Nether eats its way into foe\u0027s side.", + "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Nether eats its way into foe\u0027s side.", + "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Nether eats its way into foe\u0027s side.\n\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "DescriptionText": "Nether eats its way into foe\u0027s side.", + "RawAffixText": "\u002B22H \u2013 12\u2211\u220F \u2013 6\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 22, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B22H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 726, + "Width": 121, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2904, + "BoundsWidth": 484, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 2872, + "CropWidth": 580, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Blast eats a significant chunk out of", + "foe\u0027s side. Foe fights for 24 rounds and", + "then dies from organ damage.", + "\u002B15H \u2013 6\u222B" + ], + "BaseLines": [ + "Blast eats a significant chunk out of", + "foe\u0027s side. Foe fights for 24 rounds and", + "then dies from organ damage.", + "\u002B15H \u2013 6\u222B" + ], + "RawCellText": "Blast eats a significant chunk out of\nfoe\u0027s side. Foe fights for 24 rounds and\nthen dies from organ damage.\n\u002B15H \u2013 6\u222B", + "DescriptionText": "Blast eats a significant chunk out of foe\u0027s side. Foe fights for 24 rounds and then dies from organ damage.", + "RawAffixText": "\u002B15H \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 726, + "Width": 141, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 2904, + "BoundsWidth": 564, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 2872, + "CropWidth": 660, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s guts are disintegrated. He", + "collapses and dies after 4 rounds.", + "\u002B30H \u2013 8\u2211\u220F \u2013 (-80)" + ], + "BaseLines": [ + "Foe\u0027s guts are disintegrated. He", + "collapses and dies after 4 rounds.", + "\u002B30H \u2013 8\u2211\u220F \u2013 (-80)" + ], + "RawCellText": "Foe\u0027s guts are disintegrated. He\ncollapses and dies after 4 rounds.\n\u002B30H \u2013 8\u2211\u220F \u2013 (-80)", + "DescriptionText": "Foe\u0027s guts are disintegrated. He collapses and dies after 4 rounds.", + "RawAffixText": "\u002B30H \u2013 8\u2211\u220F \u2013 (-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 726, + "Width": 120, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 2904, + "BoundsWidth": 480, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 2872, + "CropWidth": 576, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s backbone vanishes. Foe collapses", + "and dies after 6 peaceful rounds of", + "catastrophic organ failure.", + "\u002B40H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s backbone vanishes. Foe collapses", + "and dies after 6 peaceful rounds of", + "catastrophic organ failure.", + "\u002B40H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Foe\u0027s backbone vanishes. Foe collapses\nand dies after 6 peaceful rounds of\ncatastrophic organ failure.\n\u002B40H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Foe\u0027s backbone vanishes. Foe collapses and dies after 6 peaceful rounds of catastrophic organ failure.", + "RawAffixText": "\u002B40H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 726, + "Width": 143, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 2904, + "BoundsWidth": 572, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 2872, + "CropWidth": 668, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Nether bites deep into foe\u0027s", + "back.", + "\u002B8H \u2013 5\u2211 \u2013 4\u222B" + ], + "BaseLines": [ + "Nether bites deep into foe\u0027s", + "back.", + "\u002B8H \u2013 5\u2211 \u2013 4\u222B" + ], + "RawCellText": "Nether bites deep into foe\u0027s\nback.\n\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "DescriptionText": "Nether bites deep into foe\u0027s back.", + "RawAffixText": "\u002B8H \u2013 5\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 775, + "Width": 97, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 3100, + "BoundsWidth": 388, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 3068, + "CropWidth": 484, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Blast devours hip, destroying the", + "joint. Foe passes out after 10", + "rounds of agony.", + "\u002B15H \u2013 10\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Blast devours hip, destroying the", + "joint. Foe passes out after 10", + "rounds of agony.", + "\u002B15H \u2013 10\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Blast devours hip, destroying the\njoint. Foe passes out after 10\nrounds of agony.\n\u002B15H \u2013 10\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Blast devours hip, destroying the joint. Foe passes out after 10 rounds of agony.", + "RawAffixText": "\u002B15H \u2013 10\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 775, + "Width": 117, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3100, + "BoundsWidth": 468, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 3068, + "CropWidth": 564, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Attack churns\u0027s foe\u0027s brain to mulch.", + "He collapses, dead.", + "\u002B25H \u2013 (\u002B15)" + ], + "BaseLines": [ + "Attack churns\u0027s foe\u0027s brain to mulch.", + "He collapses, dead.", + "\u002B25H \u2013 (\u002B15)" + ], + "RawCellText": "Attack churns\u0027s foe\u0027s brain to mulch.\nHe collapses, dead.\n\u002B25H \u2013 (\u002B15)", + "DescriptionText": "Attack churns\u0027s foe\u0027s brain to mulch. He collapses, dead.", + "RawAffixText": "\u002B25H \u2013 (\u002B15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 775, + "Width": 130, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 3100, + "BoundsWidth": 520, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 3068, + "CropWidth": 616, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blast destroys spinal cord and kidneys.", + "Foe dies next round.", + "\u002B40H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast destroys spinal cord and kidneys.", + "Foe dies next round.", + "\u002B40H \u2013 (\u002B20)" + ], + "RawCellText": "Blast destroys spinal cord and kidneys.\nFoe dies next round.\n\u002B40H \u2013 (\u002B20)", + "DescriptionText": "Blast destroys spinal cord and kidneys. Foe dies next round.", + "RawAffixText": "\u002B40H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 775, + "Width": 139, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 3100, + "BoundsWidth": 556, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 3068, + "CropWidth": 652, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "With a throb of energy, foe\u0027s hip bone", + "disintegrates. He collapses and dies in 6", + "rounds.", + "\u002B30H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "With a throb of energy, foe\u0027s hip bone", + "disintegrates. He collapses and dies in 6", + "rounds.", + "\u002B30H \u2013 6\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "With a throb of energy, foe\u0027s hip bone\ndisintegrates. He collapses and dies in 6\nrounds.\n\u002B30H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "With a throb of energy, foe\u0027s hip bone disintegrates. He collapses and dies in 6 rounds.", + "RawAffixText": "\u002B30H \u2013 6\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 775, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 3100, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 3068, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Nether takes off foe\u0027s ear. Foe", + "hears at -50.", + "\u002B9H \u2013 10\u2211 \u2013 5\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Nether takes off foe\u0027s ear. Foe", + "hears at -50.", + "\u002B9H \u2013 10\u2211 \u2013 5\u222B \u2013 (-50)" + ], + "RawCellText": "Nether takes off foe\u0027s ear. Foe\nhears at -50.\n\u002B9H \u2013 10\u2211 \u2013 5\u222B \u2013 (-50)", + "DescriptionText": "Nether takes off foe\u0027s ear. Foe hears at -50.", + "RawAffixText": "\u002B9H \u2013 10\u2211 \u2013 5\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 824, + "Width": 108, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 3296, + "BoundsWidth": 432, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 3264, + "CropWidth": 528, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Blast takes foe is back of head,", + "causing catastrophic brain damage.", + "Dead.", + "(\u002B15)" + ], + "BaseLines": [ + "Blast takes foe is back of head,", + "causing catastrophic brain damage.", + "Dead.", + "(\u002B15)" + ], + "RawCellText": "Blast takes foe is back of head,\ncausing catastrophic brain damage.\nDead.\n(\u002B15)", + "DescriptionText": "Blast takes foe is back of head, causing catastrophic brain damage. Dead.", + "RawAffixText": "(\u002B15)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 824, + "Width": 126, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3296, + "BoundsWidth": 504, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 3264, + "CropWidth": 600, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s heart is destroyed. His chest", + "implodes. He collapses and dies one", + "round later.", + "\u002B35H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s heart is destroyed. His chest", + "implodes. He collapses and dies one", + "round later.", + "\u002B35H \u2013 (\u002B20)" + ], + "RawCellText": "Foe\u0027s heart is destroyed. His chest\nimplodes. He collapses and dies one\nround later.\n\u002B35H \u2013 (\u002B20)", + "DescriptionText": "Foe\u0027s heart is destroyed. His chest implodes. He collapses and dies one round later.", + "RawAffixText": "\u002B35H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 824, + "Width": 131, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 3296, + "BoundsWidth": 524, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 3264, + "CropWidth": 620, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Disgusting blast disintegrates", + "abdomen. Foe is disemboweled. Ick.", + "(\u002B20)" + ], + "BaseLines": [ + "Disgusting blast disintegrates", + "abdomen. Foe is disemboweled. Ick.", + "(\u002B20)" + ], + "RawCellText": "Disgusting blast disintegrates\nabdomen. Foe is disemboweled. Ick.\n(\u002B20)", + "DescriptionText": "Disgusting blast disintegrates abdomen. Foe is disemboweled. Ick.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 824, + "Width": 133, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 3296, + "BoundsWidth": 532, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 3264, + "CropWidth": 628, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Foes arm and side disappear in a flickering", + "of purple energy. Foe dies in 8 rounds.", + "\u002B35H \u2013 8\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foes arm and side disappear in a flickering", + "of purple energy. Foe dies in 8 rounds.", + "\u002B35H \u2013 8\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Foes arm and side disappear in a flickering\nof purple energy. Foe dies in 8 rounds.\n\u002B35H \u2013 8\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Foes arm and side disappear in a flickering of purple energy. Foe dies in 8 rounds.", + "RawAffixText": "\u002B35H \u2013 8\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 824, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 3296, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 3264, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "A piece of it catches him in the", + "middle of the face.", + "12\u2211\u220F \u2013 5\u222B \u2013 (\u002B5)" + ], + "BaseLines": [ + "A piece of it catches him in the", + "middle of the face.", + "12\u2211\u220F \u2013 5\u222B \u2013 (\u002B5)" + ], + "RawCellText": "A piece of it catches him in the\nmiddle of the face.\n12\u2211\u220F \u2013 5\u222B \u2013 (\u002B5)", + "DescriptionText": "A piece of it catches him in the middle of the face.", + "RawAffixText": "12\u2211\u220F \u2013 5\u222B \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 873, + "Width": 109, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 3492, + "BoundsWidth": 436, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 3460, + "CropWidth": 532, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Attack blows out the side of the", + "foe\u0027s head. He collapses and dies in", + "three rounds.", + "5\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Attack blows out the side of the", + "foe\u0027s head. He collapses and dies in", + "three rounds.", + "5\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Attack blows out the side of the\nfoe\u0027s head. He collapses and dies in\nthree rounds.\n5\u222B \u2013 (\u002B20)", + "DescriptionText": "Attack blows out the side of the foe\u0027s head. He collapses and dies in three rounds.", + "RawAffixText": "5\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 873, + "Width": 129, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3492, + "BoundsWidth": 516, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 3460, + "CropWidth": 612, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Blast opens up a hole in foe\u0027s back,", + "destroying backbone and leaving a", + "dripping cavity. Dead.", + "\u002B45H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast opens up a hole in foe\u0027s back,", + "destroying backbone and leaving a", + "dripping cavity. Dead.", + "\u002B45H \u2013 (\u002B20)" + ], + "RawCellText": "Blast opens up a hole in foe\u0027s back,\ndestroying backbone and leaving a\ndripping cavity. Dead.\n\u002B45H \u2013 (\u002B20)", + "DescriptionText": "Blast opens up a hole in foe\u0027s back, destroying backbone and leaving a dripping cavity. Dead.", + "RawAffixText": "\u002B45H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 45, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B45H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 873, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 3492, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 3460, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Foe reels in agony. He collapses,", + "broken in two.", + "(\u002B20)" + ], + "BaseLines": [ + "Foe reels in agony. He collapses,", + "broken in two.", + "(\u002B20)" + ], + "RawCellText": "Foe reels in agony. He collapses,\nbroken in two.\n(\u002B20)", + "DescriptionText": "Foe reels in agony. He collapses, broken in two.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 873, + "Width": 118, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 3492, + "BoundsWidth": 472, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 3460, + "CropWidth": 568, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Rib cage and organs disintegrate, falling in", + "upon themselves. Foe collapses in a pile", + "of limbs.", + "(\u002B20)" + ], + "BaseLines": [ + "Rib cage and organs disintegrate, falling in", + "upon themselves. Foe collapses in a pile", + "of limbs.", + "(\u002B20)" + ], + "RawCellText": "Rib cage and organs disintegrate, falling in\nupon themselves. Foe collapses in a pile\nof limbs.\n(\u002B20)", + "DescriptionText": "Rib cage and organs disintegrate, falling in upon themselves. Foe collapses in a pile of limbs.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 873, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 3492, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 3460, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Blast catches foe in neck,", + "effectively decapitating him.", + "\u002B20H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blast catches foe in neck,", + "effectively decapitating him.", + "\u002B20H \u2013 (\u002B20)" + ], + "RawCellText": "Blast catches foe in neck,\neffectively decapitating him.\n\u002B20H \u2013 (\u002B20)", + "DescriptionText": "Blast catches foe in neck, effectively decapitating him.", + "RawAffixText": "\u002B20H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 95, + "Top": 922, + "Width": 99, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 380, + "BoundsTop": 3688, + "BoundsWidth": 396, + "BoundsHeight": 176, + "CropLeft": 332, + "CropTop": 3656, + "CropWidth": 492, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Head strike vaporizes brain.", + "(\u002B20)" + ], + "BaseLines": [ + "Head strike vaporizes brain.", + "(\u002B20)" + ], + "RawCellText": "Head strike vaporizes brain.\n(\u002B20)", + "DescriptionText": "Head strike vaporizes brain.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 922, + "Width": 98, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3688, + "BoundsWidth": 392, + "BoundsHeight": 176, + "CropLeft": 816, + "CropTop": 3656, + "CropWidth": 488, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Blast enters eye and dissolves brain.", + "Purple smoke pours out of his eye and", + "ears. Boy, is he dead.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast enters eye and dissolves brain.", + "Purple smoke pours out of his eye and", + "ears. Boy, is he dead.", + "(\u002B20)" + ], + "RawCellText": "Blast enters eye and dissolves brain.\nPurple smoke pours out of his eye and\nears. Boy, is he dead.\n(\u002B20)", + "DescriptionText": "Blast enters eye and dissolves brain. Purple smoke pours out of his eye and ears. Boy, is he dead.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 350, + "Top": 922, + "Width": 137, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1400, + "BoundsTop": 3688, + "BoundsWidth": 548, + "BoundsHeight": 176, + "CropLeft": 1352, + "CropTop": 3656, + "CropWidth": 644, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Blast cause head to implode into", + "nothingness. Foe collapses, headless.", + "Insert pun here.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast cause head to implode into", + "nothingness. Foe collapses, headless.", + "Insert pun here.", + "(\u002B20)" + ], + "RawCellText": "Blast cause head to implode into\nnothingness. Foe collapses, headless.\nInsert pun here.\n(\u002B20)", + "DescriptionText": "Blast cause head to implode into nothingness. Foe collapses, headless. Insert pun here.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 498, + "Top": 922, + "Width": 136, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 1992, + "BoundsTop": 3688, + "BoundsWidth": 544, + "BoundsHeight": 176, + "CropLeft": 1944, + "CropTop": 3656, + "CropWidth": 640, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "With a scream of agony, foe folds in on", + "himself, then is no more. You shiver at", + "your own power.", + "(\u002B25)" + ], + "BaseLines": [ + "With a scream of agony, foe folds in on", + "himself, then is no more. You shiver at", + "your own power.", + "(\u002B25)" + ], + "RawCellText": "With a scream of agony, foe folds in on\nhimself, then is no more. You shiver at\nyour own power.\n(\u002B25)", + "DescriptionText": "With a scream of agony, foe folds in on himself, then is no more. You shiver at your own power.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 643, + "Top": 922, + "Width": 140, + "Height": 44 + }, + "SourceImagePath": "arcane-nether/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3564, + "PageHeight": 4752, + "BoundsLeft": 2572, + "BoundsTop": 3688, + "BoundsWidth": 560, + "BoundsHeight": 176, + "CropLeft": 2524, + "CropTop": 3656, + "CropWidth": 656, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/source.xml b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/source.xml new file mode 100644 index 0000000..947106e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/source.xml @@ -0,0 +1,322 @@ + + + + + + + + + + + +126 +ARCANE NETHER CRITICAL STRIKE TABLE +A +B +C +D +E +01-05 +Almost got a piece of him. ++0H +Glancing blow. ++0H +Foes stumbles back, looking for the +damage. ++1H +Shouldn’t that have caused more +damage? ++3H +Foe screams like a frightened child. ++4H +06-10 +Look at him dance. ++1H +That scared him. ++3H +Foe is winged. ++4H – (+10) +Foe is frightened. You have the +initiative next round. ++5H +Foe spends a round counting his digits. ++6H – ∑ +11-15 +Foes is wary. You gain the +initiative next round. ++2H +Soft tissue damage to side. You +have the initiative for 3 rounds. ++4H +Minor side wound. ++7H – 2∫ +Foe steps back in pain. ++6H – 2∑ +Foes steps back, his arms shielding his +face. ++8H – 2∑ +16-20 +Foe leaps back, frightened. ++3H – + +∑ – 2π +Foes catches it on the side. ++5H – π (-30) +Blow knocks foe back. ++8H – 3∑ +Foe catches a piece of it in the side. + ∑ – 3∫ +Minor damage cause foe to shift to the +defensive. +3 +π –∫ +21-30 +Chest strike causes foe’s life to +pass before his eyes. ++4H – 3 π – (+5) +Attack grazes foe’s chest. ++5H – 3∑ – ∫ +Blast takes chunk out of foe’s chest. ++9H – 2∑∏ –3∫ +Blast catches foe in lower leg. ++7H – 3∑∏ +Attack cuts a hole in the foe’s side. ++9H – 4∑ 3∫ +31-40 +Attack creases deep into calf. +∑ – ∫ – (-50) +Nether wreaks havoc on foe’s calf. ++6H – 4∫ – (-50) +Foe takes major wound to his lower leg. +He is knocked to one knee. +4∑ –5∫ +Attack hits foe in the groin. Foe is +stunned as he checks the extent of the +damage. ++8H – 7∑ – 4∏ – (+10) +Attack to leg dissolves bone and muscles. +4∫ – (-70) – (+10) +41-50 +Just a flesh wound. ++5H – 2∑ +Nether creases foe’s back. ++7H – 4∑ – ∫ +Blast disintegrates a swath across foe’s +back. +5∑ –3∫ +Blast disintegrates lower spine. He +passes out for 20 rounds. ++10H +Foe’s lower back loses some semi- +important muscles. ++10H – 5∫∏ – 4∫ +51-55 +Chest blast causes foe to reel. +3∑ ∏– 3∫ +Blast to foe’s chest put him on the +ground. ++8H – 5∑ – 4∫ +Blast to foe’s chest drops him like a bad +habit. ++10H – 3∑∏ –3∫ +Blast destroys several ribs. ++12H – (-50) +Large swath eaten though foe’s chest. He +drops for three rounds, then passes out. +6∫ +56-60 +Minor thigh damage. Foe goes +down, a startled look on his face. ++5H – 2∑ – 3∫ +Nether devours chunks of foe’s +thigh muscle. ++9H – 4∫ – (-50) +Attack devastates foe’s thigh. He +collapses like someone threw a switch. ++11H – 5∑ –5∫ – (-75) +Foe takes a serious hit to his upper +legs. He collapses. +6∫ – (-90) – (+10) +Attack the groin. All vitals vanish in a puff +of purple smoke. +14∑ – 2∫ +61-65 +Nether cuts deep wound in foe’s +forearm. ++5H – 3∫ – (-25) +Nether eats deep into forearm. +Foe’s hand is useless. ++9H – 5∫ – (+10) +Attack tears through foe’s forearm. Arm +is useless. ++12H – 4∫ – (-40) +Nether dissolves foe’s forearm in a +agonizing blast of black fire. +5∑ – 7∫ – (-40) +Blast neatly disintegrates wafer-thin plane +through foe’s elbow. Arm is severed. + 8∑ – 5∫ – (-50) +66 +Shield shoulder collapses. Arm +is useless. It will fall off if foe +takes more than 25% activity. ++10H – 6∑∏ – 5∫ – (+20) +Elbow in foe’s weapon arm is +destroyed. Arm is useless. ++10H – 10∑∏ – (+20) +Blast disintegrates foe’s knee. Foe’s +lower leg falls off. ++25H – 10∑∏ –5∫ – (-70) – (+20) +Eyes, ears, nose and throat are wiped +clean by a nether sheet. Foe dies after +4 gruesome rounds. +(+20) +Blast enters through small whole in torso +then bounces around, disintegrating all +organs. Foe falls, hollow. ++20H – (+25) +67-70 +Nether cracks foe’s collar bone. ++6H – 4∑ – 2∏ – (-20) +Almost a miss. Foe catches part of +it in the neck. ++10H – 6∑ – 3∏ – (-10) +Blow catches foe at the base of the +neck. He grasps his throat, choking and +gasping. ++13H – 12∑ – (-80) +Massive disruption and cells implode +throughout foe’s shoulder. ++14H – 6∑ – (-60) +Blast catches foe in shoulder. He stares as +the nether consumes flesh and bone. He +catches his arm as it falls. ++22H – 12∑∏ – 6∫ – (+10) +71-75 +Disrupt tendons in foe’s lower +leg. +3∑ – 3∫ – (-50) +Foe’s calf muscle comes apart. ++11H – 5∫ – (-50) +Nether catches foe in the calf. Muscle +dissolves. Tendons are disrupted. +Bone is fractured +6∫ – (-50) – (+10) +Nether engulfs foes foot, devouring it in +a blast of black fire. Foe falls +unconscious after 5 rounds. +5∫ – (-50) +Nether consumes thighbone, muscles and +nearby vessels. ++24H – 6∑ – 6∫ +76-80 +Blast takes a bite out of the foe’s +biceps. ++7H – 4∑ – 3∫ – (-30) +Nether eats deep into foe’s shield +arm. +7∑∏ – 6∫ – (-40) +Shield arm takes full blow. Muscles +dissolve and bone fracture. ++14H – 12∑ –4∫ +Blast removes shield arm, leaving a +messy stump. ++20H – 18∑∏ –6∫ +Foe’s arm is consumed by black fire. ++30H – 36∑ – 6∫ +81-85 +Nether catches foe in the side. +Internal bleeding. +8∑ – 7∫ – (+10) +Nether eats its way into foe’s side. ++22H – 12∑∏ – 6∫ – (+10) +Blast eats a significant chunk out of +foe’s side. Foe fights for 24 rounds and +then dies from organ damage. ++15H – 6∫ +Foe’s guts are disintegrated. He +collapses and dies after 4 rounds. ++30H – 8∑∏ – (-80) +Foe’s backbone vanishes. Foe collapses +and dies after 6 peaceful rounds of +catastrophic organ failure. ++40H – 6∑∏ – (+20) +86-90 +Nether bites deep into foe’s +back. ++8H – 5∑ – 4∫ +Blast devours hip, destroying the +joint. Foe passes out after 10 +rounds of agony. ++15H – 10∑∏ – (+10) +Attack churns’s foe’s brain to mulch. +He collapses, dead. ++25H – (+15) +Blast destroys spinal cord and kidneys. +Foe dies next round. ++40H – (+20) +With a throb of energy, foe’s hip bone +disintegrates. He collapses and dies in 6 +rounds. ++30H – 6∑∏ – (+20) +91-95 +Nether takes off foe’s ear. Foe +hears at -50. ++9H – 10∑ – 5∫ – (-50) +Blast takes foe is back of head, +causing catastrophic brain damage. +Dead. +(+15) +Foe’s heart is destroyed. His chest +implodes. He collapses and dies one +round later. ++35H – (+20) +Disgusting blast disintegrates +abdomen. Foe is disemboweled. Ick. +(+20) +Foes arm and side disappear in a flickering +of purple energy. Foe dies in 8 rounds. ++35H – 8∑∏ – (+20) +96-99 +A piece of it catches him in the +middle of the face. +12∑∏ – 5∫ – (+5) +Attack blows out the side of the +foe’s head. He collapses and dies in +three rounds. +5∫ – (+20) +Blast opens up a hole in foe’s back, +destroying backbone and leaving a +dripping cavity. Dead. ++45H – (+20) +Foe reels in agony. He collapses, +broken in two. +(+20) +Rib cage and organs disintegrate, falling in +upon themselves. Foe collapses in a pile +of limbs. +(+20) +100 +Blast catches foe in neck, +effectively decapitating him. ++20H – (+20) +Head strike vaporizes brain. +(+20) +Blast enters eye and dissolves brain. +Purple smoke pours out of his eye and +ears. Boy, is he dead. +(+20) +Blast cause head to implode into +nothingness. Foe collapses, headless. +Insert pun here. +(+20) +With a scream of agony, foe folds in on +himself, then is no more. You shiver at +your own power. +(+25) +K +K +K +Keeeeyyyy:::: ßπ =must parry ß rounds; ß∏ =no parry for ß rounds; ß∑ =stunned for ß rounds; ß∫ =bleed ß hits per round; (-ß)=foe has -ß penalty; (+ß)=attacker gets +ß next round + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/arcane-nether/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__01-05.png new file mode 100644 index 0000000..cf2c4af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__06-10.png new file mode 100644 index 0000000..a942785 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__100.png new file mode 100644 index 0000000..cb95356 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__11-15.png new file mode 100644 index 0000000..18815a4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__16-20.png new file mode 100644 index 0000000..afbc654 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__21-30.png new file mode 100644 index 0000000..8304fb9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__31-40.png new file mode 100644 index 0000000..18f77e5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__41-50.png new file mode 100644 index 0000000..79af605 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__51-55.png new file mode 100644 index 0000000..851d6cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__56-60.png new file mode 100644 index 0000000..d124d6c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__61-65.png new file mode 100644 index 0000000..4547361 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__66.png new file mode 100644 index 0000000..a913eb7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__67-70.png new file mode 100644 index 0000000..fb9f4f6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__71-75.png new file mode 100644 index 0000000..f8f5f52 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__76-80.png new file mode 100644 index 0000000..ec8bb1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__81-85.png new file mode 100644 index 0000000..437a01a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__86-90.png new file mode 100644 index 0000000..1b92d2e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__91-95.png new file mode 100644 index 0000000..444c475 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__96-99.png new file mode 100644 index 0000000..8efb556 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__01-05.png new file mode 100644 index 0000000..13e5c1a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__06-10.png new file mode 100644 index 0000000..702d767 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__100.png new file mode 100644 index 0000000..025ebd9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__11-15.png new file mode 100644 index 0000000..8cfa660 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__16-20.png new file mode 100644 index 0000000..4452540 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__21-30.png new file mode 100644 index 0000000..99e27c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__31-40.png new file mode 100644 index 0000000..fd9196b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__41-50.png new file mode 100644 index 0000000..854e986 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__51-55.png new file mode 100644 index 0000000..11875df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__56-60.png new file mode 100644 index 0000000..9178684 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__61-65.png new file mode 100644 index 0000000..db8080f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__66.png new file mode 100644 index 0000000..7e21ebc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__67-70.png new file mode 100644 index 0000000..a0aa47d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__71-75.png new file mode 100644 index 0000000..c42409e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__76-80.png new file mode 100644 index 0000000..468e012 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__81-85.png new file mode 100644 index 0000000..01066cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__86-90.png new file mode 100644 index 0000000..3241525 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__91-95.png new file mode 100644 index 0000000..dfcc981 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__96-99.png new file mode 100644 index 0000000..5f29f68 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__01-05.png new file mode 100644 index 0000000..c528de7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__06-10.png new file mode 100644 index 0000000..2fea9ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__100.png new file mode 100644 index 0000000..9dd371b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__11-15.png new file mode 100644 index 0000000..bd612e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__16-20.png new file mode 100644 index 0000000..935c94b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__21-30.png new file mode 100644 index 0000000..7cc6809 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__31-40.png new file mode 100644 index 0000000..c5bad08 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__41-50.png new file mode 100644 index 0000000..4a48ec2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__51-55.png new file mode 100644 index 0000000..3d9c635 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__56-60.png new file mode 100644 index 0000000..02cdeb2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__61-65.png new file mode 100644 index 0000000..1e217d5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__66.png new file mode 100644 index 0000000..05f9550 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__67-70.png new file mode 100644 index 0000000..509e2aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__71-75.png new file mode 100644 index 0000000..ed2e1c3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__76-80.png new file mode 100644 index 0000000..a1a12d9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__81-85.png new file mode 100644 index 0000000..94dba94 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__86-90.png new file mode 100644 index 0000000..f22ff3c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__91-95.png new file mode 100644 index 0000000..31483e0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__96-99.png new file mode 100644 index 0000000..eed88ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__01-05.png new file mode 100644 index 0000000..0ad4097 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__06-10.png new file mode 100644 index 0000000..1b022cd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__100.png new file mode 100644 index 0000000..d9d1626 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__11-15.png new file mode 100644 index 0000000..cdf1840 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__16-20.png new file mode 100644 index 0000000..5be9f0b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__21-30.png new file mode 100644 index 0000000..8109034 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__31-40.png new file mode 100644 index 0000000..098e485 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__41-50.png new file mode 100644 index 0000000..7f394bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__51-55.png new file mode 100644 index 0000000..a61b791 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__56-60.png new file mode 100644 index 0000000..100ebfd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__61-65.png new file mode 100644 index 0000000..58f20f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__66.png new file mode 100644 index 0000000..1b9b39d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__67-70.png new file mode 100644 index 0000000..ea14013 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__71-75.png new file mode 100644 index 0000000..9b56af8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__76-80.png new file mode 100644 index 0000000..a0c06b0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__81-85.png new file mode 100644 index 0000000..b9022b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__86-90.png new file mode 100644 index 0000000..747ff1d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__91-95.png new file mode 100644 index 0000000..268b96f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__96-99.png new file mode 100644 index 0000000..e1848a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__01-05.png new file mode 100644 index 0000000..14ca333 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__06-10.png new file mode 100644 index 0000000..adc85dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__100.png new file mode 100644 index 0000000..e564520 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__11-15.png new file mode 100644 index 0000000..6470be1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__16-20.png new file mode 100644 index 0000000..456684b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__21-30.png new file mode 100644 index 0000000..50e83a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__31-40.png new file mode 100644 index 0000000..34a02a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__41-50.png new file mode 100644 index 0000000..a1a643c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__51-55.png new file mode 100644 index 0000000..48e2836 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__56-60.png new file mode 100644 index 0000000..5a3d9fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__61-65.png new file mode 100644 index 0000000..fd6263f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__66.png new file mode 100644 index 0000000..d70abc6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__67-70.png new file mode 100644 index 0000000..63cc997 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__71-75.png new file mode 100644 index 0000000..f3b3d20 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__76-80.png new file mode 100644 index 0000000..7fc1dcc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__81-85.png new file mode 100644 index 0000000..adc9112 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__86-90.png new file mode 100644 index 0000000..0207e5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__91-95.png new file mode 100644 index 0000000..c05d679 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__96-99.png new file mode 100644 index 0000000..cab88f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/fragments.json new file mode 100644 index 0000000..68d15d6 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/fragments.json @@ -0,0 +1,3742 @@ +[ + { + "PageNumber": 1, + "Top": 1145, + "Left": 100, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 109 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 127, + "Width": 4, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 129 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 139, + "Width": 81, + "Height": 8, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 228, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 230.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 239, + "Width": 85, + "Height": 8, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 333, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 335.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 337, + "Width": 6, + "Height": 9, + "Text": "\u2211", + "Confidence": null, + "CenterX": 340 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 342, + "Width": 5, + "Height": 8, + "Text": "=", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 346, + "Width": 78, + "Height": 8, + "Text": "stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 385 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 433, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 437, + "Width": 2, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 442, + "Width": 87, + "Height": 8, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 538, + "Width": 86, + "Height": 8, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 581 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 633, + "Width": 122, + "Height": 8, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 694 + }, + { + "PageNumber": 1, + "Top": 1141, + "Left": 845, + "Width": 23, + "Height": 14, + "Text": "123", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 65, + "Left": 256, + "Width": 474, + "Height": 13, + "Text": "6.5 Ballistic Shrapnel Critical Strike Table", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 202, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 346, + "Width": 12, + "Height": 13, + "Text": "B", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 497, + "Width": 14, + "Height": 13, + "Text": "C", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 648, + "Width": 17, + "Height": 13, + "Text": "D", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 808, + "Width": 11, + "Height": 13, + "Text": "E", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 121, + "Left": 145, + "Width": 129, + "Height": 9, + "Text": "Foe\u0027s hand is hit! If he is holding an", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 145, + "Width": 127, + "Height": 9, + "Text": "item, it must immediately check for", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 145, + "Width": 34, + "Height": 9, + "Text": "breakage.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 121, + "Left": 279, + "Width": 129, + "Height": 9, + "Text": "Foe\u0027s hand is hit! If he is holding an", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 279, + "Width": 127, + "Height": 9, + "Text": "item, it must immediately check for", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 279, + "Width": 99, + "Height": 9, + "Text": "breakage with a -10 penalty.", + "Confidence": null, + "CenterX": 328.5 + }, + { + "PageNumber": 1, + "Top": 121, + "Left": 431, + "Width": 129, + "Height": 9, + "Text": "Foe\u0027s hand is hit! If he is holding an", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 431, + "Width": 127, + "Height": 9, + "Text": "item, it must immediately check for", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 431, + "Width": 99, + "Height": 9, + "Text": "breakage with a -20 penalty.", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 121, + "Left": 584, + "Width": 129, + "Height": 9, + "Text": "Foe\u0027s hand is hit! If he is holding an", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 584, + "Width": 127, + "Height": 9, + "Text": "item, it must immediately check for", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 584, + "Width": 99, + "Height": 9, + "Text": "breakage with a -30 penalty.", + "Confidence": null, + "CenterX": 633.5 + }, + { + "PageNumber": 1, + "Top": 121, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "Foe\u0027s hand is hit! If he is holding an item,", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 132, + "Left": 737, + "Width": 81, + "Height": 9, + "Text": "it automatically breaks.", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 254, + "Width": 16, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 262 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 386, + "Width": 37, + "Height": 9, + "Text": "\u002B3H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 404.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 519, + "Width": 57, + "Height": 9, + "Text": "\u002B4H \u2013 2\u03C0 (-10)", + "Confidence": null, + "CenterX": 547.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 644, + "Width": 84, + "Height": 9, + "Text": "\u002B8H \u2013 4\u2211 \u2013 3\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 686 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 810, + "Width": 77, + "Height": 9, + "Text": "\u002B15H \u2013 5\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 848.5 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 145, + "Width": 126, + "Height": 9, + "Text": "Forearm strike burns! You gain the", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 145, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 181 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 279, + "Width": 144, + "Height": 9, + "Text": "Strike to foe\u0027s lower arm starts to bleed.", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 279, + "Width": 143, + "Height": 9, + "Text": "His grip may slip! You gain the initiative", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 194, + "Left": 279, + "Width": 40, + "Height": 9, + "Text": "next round.", + "Confidence": null, + "CenterX": 299 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 431, + "Width": 120, + "Height": 9, + "Text": "Forearm wound tears muscle and", + "Confidence": null, + "CenterX": 491 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 431, + "Width": 146, + "Height": 9, + "Text": "tendons. If foe is holding an item,it must", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 194, + "Left": 431, + "Width": 135, + "Height": 9, + "Text": "check for breakage with a -20 penalty.", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 584, + "Width": 116, + "Height": 9, + "Text": "Forearm shot tears muscles and", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 584, + "Width": 139, + "Height": 9, + "Text": "tendons. Foe drops any held items and", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 194, + "Left": 584, + "Width": 86, + "Height": 9, + "Text": "they check for breakage.", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "Incredible blast to foe\u0027s arm completely", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 737, + "Width": 153, + "Height": 9, + "Text": "rips off his hand and lower arm! Foe faints", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 194, + "Left": 737, + "Width": 88, + "Height": 9, + "Text": "and is out for 10 rounds.", + "Confidence": null, + "CenterX": 781 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 254, + "Width": 16, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 262 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 368, + "Width": 55, + "Height": 9, + "Text": "\u002B7H \u2013 3\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 395.5 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 491, + "Width": 84, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 533 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 639, + "Width": 89, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211 \u2013 4\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 683.5 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 792, + "Width": 96, + "Height": 9, + "Text": "\u002B15H \u2013 7\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 145, + "Width": 105, + "Height": 9, + "Text": "Lots of hot air over foe\u0027s arm.", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 279, + "Width": 135, + "Height": 9, + "Text": "Deep scratches on foe\u0027s biceps cause", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 279, + "Width": 81, + "Height": 9, + "Text": "minor muscle damage.", + "Confidence": null, + "CenterX": 319.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 431, + "Width": 125, + "Height": 9, + "Text": "Serious gash on upper arm causes", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 431, + "Width": 81, + "Height": 9, + "Text": "major muscle damage.", + "Confidence": null, + "CenterX": 471.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 584, + "Width": 143, + "Height": 9, + "Text": "Foe\u0027s elbow takes the brunt of the blast.", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 584, + "Width": 136, + "Height": 9, + "Text": "Broken bone and torn tendons are the", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 584, + "Width": 89, + "Height": 9, + "Text": "price. His arm is useless.", + "Confidence": null, + "CenterX": 628.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 737, + "Width": 148, + "Height": 9, + "Text": "Only dangling flesh is left on foe\u0027s arm. It", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 737, + "Width": 77, + "Height": 9, + "Text": "is completely useless.", + "Confidence": null, + "CenterX": 775.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 364, + "Width": 59, + "Height": 9, + "Text": "\u002B7H \u2013 3\u03C0 \u2013 (-5)", + "Confidence": null, + "CenterX": 393.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 466, + "Width": 109, + "Height": 9, + "Text": "\u002B15H \u2013 4\u2211 \u2013 2\u220F \u2013 4\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 520.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 639, + "Width": 89, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211 \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 683.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 789, + "Width": 98, + "Height": 9, + "Text": "\u002B 25H \u2013 7\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 838 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 145, + "Width": 108, + "Height": 9, + "Text": "An incredible shot leaves only", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 145, + "Width": 59, + "Height": 9, + "Text": "minor scratches.", + "Confidence": null, + "CenterX": 174.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 279, + "Width": 139, + "Height": 9, + "Text": "Upper arm strike leaves foe with minor", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 279, + "Width": 58, + "Height": 9, + "Text": "muscle damage.", + "Confidence": null, + "CenterX": 308 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 431, + "Width": 144, + "Height": 9, + "Text": "Foe\u0027s triceps take the blast. He will need", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 431, + "Width": 140, + "Height": 9, + "Text": "a doctor for that major muscle damage.", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 584, + "Width": 137, + "Height": 9, + "Text": "Right on the elbow! Blast breaks bone", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 584, + "Width": 114, + "Height": 9, + "Text": "and tears tendons. Arm useless.", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 737, + "Width": 153, + "Height": 9, + "Text": "Boned foe\u0027s arm just like a chicken. Arm is", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 737, + "Width": 28, + "Height": 9, + "Text": "useless.", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 233, + "Width": 37, + "Height": 9, + "Text": "\u002B4H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 357, + "Width": 66, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 480, + "Width": 96, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 528 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 614, + "Width": 114, + "Height": 9, + "Text": "\u002B12H \u2013 4\u2211 \u2013 2\u220F \u2014 3\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 671 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 790, + "Width": 98, + "Height": 9, + "Text": "\u002B 30H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (-60)", + "Confidence": null, + "CenterX": 839 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 145, + "Width": 114, + "Height": 9, + "Text": "Shrapnel grazes foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 328, + "Left": 145, + "Width": 78, + "Height": 9, + "Text": "That will leave a mark.", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 279, + "Width": 146, + "Height": 9, + "Text": "Shoulder hit. Minor muscle damage. The", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 328, + "Left": 279, + "Width": 126, + "Height": 9, + "Text": "strips on his uniform are ripped off.", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 431, + "Width": 138, + "Height": 9, + "Text": "Shrapnel goes through foe\u0027s shoulder,", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 328, + "Left": 431, + "Width": 143, + "Height": 9, + "Text": "tearing muscle and tendons. He will feel", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 431, + "Width": 70, + "Height": 9, + "Text": "that one for a while.", + "Confidence": null, + "CenterX": 466 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 584, + "Width": 138, + "Height": 9, + "Text": "Shrapnel tears muscles tendons on its", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 328, + "Left": 584, + "Width": 129, + "Height": 9, + "Text": "way through foe\u0027s shoulder. Nicks a", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 584, + "Width": 45, + "Height": 9, + "Text": "major artery.", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 737, + "Width": 155, + "Height": 9, + "Text": "Foe really didn\u0027t need that arm anyway. Foe", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 328, + "Left": 737, + "Width": 102, + "Height": 9, + "Text": "is unconscious for six hours.", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 353, + "Left": 233, + "Width": 37, + "Height": 9, + "Text": "\u002B5H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 353, + "Left": 364, + "Width": 59, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 (-10)", + "Confidence": null, + "CenterX": 393.5 + }, + { + "PageNumber": 1, + "Top": 353, + "Left": 480, + "Width": 96, + "Height": 9, + "Text": "\u002B16H \u2013 4\u2211\u220F \u2013 2\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 528 + }, + { + "PageNumber": 1, + "Top": 353, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B18H \u2013 5\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 353, + "Left": 817, + "Width": 71, + "Height": 9, + "Text": "\u002B25H \u2013 10\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 852.5 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 145, + "Width": 114, + "Height": 9, + "Text": "Shrapnel grazes foe\u0027s shoulder,", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 145, + "Width": 75, + "Height": 9, + "Text": "spinning him around.", + "Confidence": null, + "CenterX": 182.5 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 279, + "Width": 141, + "Height": 9, + "Text": "Shrapnel glances off clavicle. Foe looks", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 279, + "Width": 104, + "Height": 9, + "Text": "surprised to still have a head.", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 431, + "Width": 129, + "Height": 9, + "Text": "Shrapnel breaks collar bone. He will", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 431, + "Width": 80, + "Height": 9, + "Text": "never wear a tie again!", + "Confidence": null, + "CenterX": 471 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 584, + "Width": 136, + "Height": 9, + "Text": "Shrapnel lodges in the foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 584, + "Width": 135, + "Height": 9, + "Text": "Surgeon will have to chip away a little", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 584, + "Width": 86, + "Height": 9, + "Text": "bone to get this one out.", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "Shrapnel breaks clavicle and destroys", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 737, + "Width": 153, + "Height": 9, + "Text": "shoulder joint. His arm will hang limp until", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 737, + "Width": 25, + "Height": 9, + "Text": "healed.", + "Confidence": null, + "CenterX": 749.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 233, + "Width": 37, + "Height": 9, + "Text": "\u002B5H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 357, + "Width": 66, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 505, + "Width": 70, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211 \u2013 (-15)", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 651, + "Width": 78, + "Height": 9, + "Text": "\u002B20H \u2013 3\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 792, + "Width": 96, + "Height": 9, + "Text": "\u002B30H \u2013 6\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 145, + "Width": 120, + "Height": 9, + "Text": "Graze foe\u0027s thigh. Now those nice", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 145, + "Width": 59, + "Height": 9, + "Text": "pants are ripped.", + "Confidence": null, + "CenterX": 174.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 279, + "Width": 135, + "Height": 9, + "Text": "Thigh wound tears muscle and leaves", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 279, + "Width": 77, + "Height": 9, + "Text": "foe with a minor limp.", + "Confidence": null, + "CenterX": 317.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 431, + "Width": 141, + "Height": 9, + "Text": "Shrapnel lodged in thigh. Running very", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 431, + "Width": 139, + "Height": 9, + "Text": "painful. -25 to Moving Maneuvers until", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 431, + "Width": 75, + "Height": 9, + "Text": "Shrapnel is removed.", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 584, + "Width": 136, + "Height": 9, + "Text": "Shrapnel tears muscle and tendons in", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 584, + "Width": 133, + "Height": 9, + "Text": "the thigh. Foe is knocked backward 5", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 584, + "Width": 67, + "Height": 9, + "Text": "feet from the blast.", + "Confidence": null, + "CenterX": 617.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 737, + "Width": 140, + "Height": 9, + "Text": "foe\u0027s leg severed at the thigh. Foe falls.", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 737, + "Width": 91, + "Height": 9, + "Text": "Hope he has a belt handy.", + "Confidence": null, + "CenterX": 782.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 355, + "Width": 68, + "Height": 9, + "Text": "\u002B6 H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 491, + "Width": 84, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 533 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 651, + "Width": 78, + "Height": 9, + "Text": "\u002B16H \u2013 3\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 792, + "Width": 96, + "Height": 9, + "Text": "\u002B40H \u2013 4\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 145, + "Width": 108, + "Height": 9, + "Text": "Shrapnel grazes foe\u0027s calf and", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 145, + "Width": 80, + "Height": 9, + "Text": "causes him to stagger.", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 279, + "Width": 145, + "Height": 9, + "Text": "Several wide cuts on foe\u0027s calf, but none", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 279, + "Width": 132, + "Height": 9, + "Text": "are deep. Unfortunately, the muscles", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 495, + "Left": 279, + "Width": 74, + "Height": 9, + "Text": "have minor damage.", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 431, + "Width": 145, + "Height": 9, + "Text": "Shrapnel goes clean through the back of", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 431, + "Width": 141, + "Height": 9, + "Text": "foe\u0027s lower leg. He is knocked over and", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 495, + "Left": 431, + "Width": 134, + "Height": 9, + "Text": "now has muscle and tendon damage.", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 584, + "Width": 146, + "Height": 9, + "Text": "Shrapnel strikes calf. Broken bones have", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 584, + "Width": 123, + "Height": 9, + "Text": "ripped through the flesh of the leg.", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 737, + "Width": 138, + "Height": 9, + "Text": "Foe blown back 15\u0027. When he rises, he", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 737, + "Width": 145, + "Height": 9, + "Text": "realizes that he now has a ragged stump", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 495, + "Left": 737, + "Width": 139, + "Height": 9, + "Text": "below his knee (and he can\u0027t stand up).", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 509, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 509, + "Left": 339, + "Width": 84, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 509, + "Left": 484, + "Width": 91, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 529.5 + }, + { + "PageNumber": 1, + "Top": 509, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B25H \u2013 4\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 509, + "Left": 787, + "Width": 101, + "Height": 9, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-75)", + "Confidence": null, + "CenterX": 837.5 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 145, + "Width": 124, + "Height": 9, + "Text": "Blast near foe\u0027s feet causes him to", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 145, + "Width": 23, + "Height": 9, + "Text": "dance.", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 279, + "Width": 140, + "Height": 9, + "Text": "Lucky shot on foe\u0027s foot takes off all of", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 279, + "Width": 114, + "Height": 9, + "Text": "his toes! Now his shoe won\u0027t fit.", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 431, + "Width": 135, + "Height": 9, + "Text": "Solid blast to foe\u0027s foot. The sound of", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 431, + "Width": 143, + "Height": 9, + "Text": "breaking bone is very clear. The Several", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 431, + "Width": 70, + "Height": 9, + "Text": "toes have been lost.", + "Confidence": null, + "CenterX": 466 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 584, + "Width": 138, + "Height": 9, + "Text": "Ouch! Right on the ankle. Bones break", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 584, + "Width": 144, + "Height": 9, + "Text": "and tendons torn. Foe falls and will have", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 584, + "Width": 59, + "Height": 9, + "Text": "trouble standing.", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 737, + "Width": 148, + "Height": 9, + "Text": "Foot bone ain\u0027t connected to the leg bone", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "no mo\u0027. Blast rips the foot off at the ankle.", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 357, + "Width": 66, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 505, + "Width": 70, + "Height": 9, + "Text": "\u002B25H \u2013 4\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 651, + "Width": 78, + "Height": 9, + "Text": "\u002B24H \u2013 4\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 792, + "Width": 96, + "Height": 9, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 145, + "Width": 124, + "Height": 9, + "Text": "Close shot at foe\u0027s hip. Maybe it is", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 145, + "Width": 76, + "Height": 9, + "Text": "time to start that diet.", + "Confidence": null, + "CenterX": 183 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 279, + "Width": 144, + "Height": 9, + "Text": "Blast strikes solidly on foe\u0027s hip. Luckily", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 279, + "Width": 129, + "Height": 9, + "Text": "his bones are strong and it is only a", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 279, + "Width": 53, + "Height": 9, + "Text": "minor fracture.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 431, + "Width": 120, + "Height": 9, + "Text": "Shrapnel goes deep into foe\u0027s hip", + "Confidence": null, + "CenterX": 491 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 431, + "Width": 124, + "Height": 9, + "Text": "(lodging againt the bone). Walking", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 431, + "Width": 90, + "Height": 9, + "Text": "proves massively painful.", + "Confidence": null, + "CenterX": 476 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 584, + "Width": 134, + "Height": 9, + "Text": "Strong blast to foe\u0027s hip fractures his", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 584, + "Width": 115, + "Height": 9, + "Text": "pelvis. He now has a funny walk.", + "Confidence": null, + "CenterX": 641.5 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "Blast completely shatters foe\u0027s hip. Foe is", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 589, + "Left": 737, + "Width": 59, + "Height": 9, + "Text": "thrown back 15\u0027.", + "Confidence": null, + "CenterX": 766.5 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 233, + "Width": 37, + "Height": 9, + "Text": "\u002B7H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 357, + "Width": 66, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211 \u2013 (-5)", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 505, + "Width": 71, + "Height": 9, + "Text": "\u002B25H \u2013 4\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 540.5 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B30H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 796, + "Width": 92, + "Height": 9, + "Text": "\u002B34H \u2013 7\u2211\u220F \u2013 5\u222B -(-50)", + "Confidence": null, + "CenterX": 842 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 145, + "Width": 99, + "Height": 9, + "Text": "Shrapnel imbedded in foe\u0027s", + "Confidence": null, + "CenterX": 194.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 145, + "Width": 113, + "Height": 9, + "Text": "buttocks. He will need a special", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 145, + "Width": 80, + "Height": 9, + "Text": "pillow just to sit down.", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 279, + "Width": 131, + "Height": 9, + "Text": "Blast to foe\u0027s head! Amazingly, foe\u0027s", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 279, + "Width": 144, + "Height": 9, + "Text": "head is mostly intact. He will just be in a", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 279, + "Width": 73, + "Height": 9, + "Text": "coma for three days.", + "Confidence": null, + "CenterX": 315.5 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 431, + "Width": 143, + "Height": 9, + "Text": "Foe forget to duck. He takes shrapnel in", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 431, + "Width": 127, + "Height": 9, + "Text": "the eyes. Foe spins head over heels", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 431, + "Width": 136, + "Height": 9, + "Text": "backwards and will die in 10 rounds if", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 431, + "Width": 91, + "Height": 9, + "Text": "not tended to by a doctor.", + "Confidence": null, + "CenterX": 476.5 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 584, + "Width": 145, + "Height": 9, + "Text": "Abdomenal blast knocks foe through the", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 584, + "Width": 148, + "Height": 9, + "Text": "nearest wall. Major internal damage to all", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 584, + "Width": 131, + "Height": 9, + "Text": "kinds of organs. Hope a doctor is on", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 584, + "Width": 19, + "Height": 9, + "Text": "hand.", + "Confidence": null, + "CenterX": 593.5 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 737, + "Width": 152, + "Height": 9, + "Text": "Surprise shot to foe\u0027s groin. Foe no longer", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 737, + "Width": 130, + "Height": 9, + "Text": "needs his \u0022little black book\u0022. You are", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "stunned for 3 rounds in sympathy. He", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 737, + "Width": 152, + "Height": 9, + "Text": "collapses and won\u0027t get up until tomorrow.", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 222, + "Width": 48, + "Height": 9, + "Text": "\u002B20H \u2013 (-15)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 347, + "Width": 76, + "Height": 9, + "Text": "\u002B20H \u2013 (-40) \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 385 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 469, + "Width": 106, + "Height": 9, + "Text": "\u002B10H \u2013 5\u2211\u220F \u2013 (-30) \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 522 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 628, + "Width": 100, + "Height": 9, + "Text": "\u002B50H \u2013 8\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "Confidence": null, + "CenterX": 678 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 783, + "Width": 105, + "Height": 9, + "Text": "\u002B50H \u2013 15\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "Confidence": null, + "CenterX": 835.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 145, + "Width": 100, + "Height": 9, + "Text": "Foe\u0027s knee is peppered with", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 145, + "Width": 127, + "Height": 9, + "Text": "shrapnel. Amazingly, no permanent", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 145, + "Width": 30, + "Height": 9, + "Text": "damage.", + "Confidence": null, + "CenterX": 160 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 279, + "Width": 115, + "Height": 9, + "Text": "Knee strike fractures bone. Very", + "Confidence": null, + "CenterX": 336.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 279, + "Width": 40, + "Height": 9, + "Text": "impressive.", + "Confidence": null, + "CenterX": 299 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 431, + "Width": 132, + "Height": 9, + "Text": "Great shot to foe\u0027s leg causes him to", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 431, + "Width": 21, + "Height": 9, + "Text": "drop.", + "Confidence": null, + "CenterX": 441.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 584, + "Width": 140, + "Height": 9, + "Text": "Blast to foe\u0027s leg shatters his knee cap.", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 584, + "Width": 138, + "Height": 9, + "Text": "He will have a bad limp until the major", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 584, + "Width": 90, + "Height": 9, + "Text": "tendon damage is healed.", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 737, + "Width": 150, + "Height": 9, + "Text": "Blast annihilates foe\u0027s leg below the knee.", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 737, + "Width": 21, + "Height": 9, + "Text": "Wow!", + "Confidence": null, + "CenterX": 747.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 361, + "Width": 61, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 391.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 486, + "Width": 89, + "Height": 9, + "Text": "\u002B20H \u2013 3\u2211 \u2013 3\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 530.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B25H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 792, + "Width": 96, + "Height": 9, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 145, + "Width": 95, + "Height": 9, + "Text": "Blast in the gut throws foe", + "Confidence": null, + "CenterX": 192.5 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 145, + "Width": 56, + "Height": 9, + "Text": "backwards 10\u0027.", + "Confidence": null, + "CenterX": 173 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 279, + "Width": 144, + "Height": 9, + "Text": "Shot in the stomach does minor muscle", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 279, + "Width": 119, + "Height": 9, + "Text": "damage. But the scar looks like a", + "Confidence": null, + "CenterX": 338.5 + }, + { + "PageNumber": 1, + "Top": 767, + "Left": 279, + "Width": 30, + "Height": 9, + "Text": "turnip\u2026", + "Confidence": null, + "CenterX": 294 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 431, + "Width": 146, + "Height": 9, + "Text": "Abdomenal hit causes muscle and organ", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 431, + "Width": 103, + "Height": 9, + "Text": "damage. Foe flies off his feet.", + "Confidence": null, + "CenterX": 482.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 584, + "Width": 130, + "Height": 9, + "Text": "Lower abdominal shot causes much", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 584, + "Width": 124, + "Height": 9, + "Text": "internal damage to internal organs.", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 737, + "Width": 144, + "Height": 9, + "Text": "Blast rips out foe\u0027s kidney. Who needs a", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 737, + "Width": 31, + "Height": 9, + "Text": "surgeon.", + "Confidence": null, + "CenterX": 752.5 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 238, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 357, + "Width": 66, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 484, + "Width": 91, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211 \u2013 5\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 529.5 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B12H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 787, + "Width": 101, + "Height": 9, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 837.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 145, + "Width": 126, + "Height": 9, + "Text": "Blast in foe\u0027s side leaves a mass of", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 145, + "Width": 120, + "Height": 9, + "Text": "flesh dangling. Surprising, it only", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 145, + "Width": 71, + "Height": 9, + "Text": "leaves a small scar.", + "Confidence": null, + "CenterX": 180.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 279, + "Width": 129, + "Height": 9, + "Text": "Shrapnel finds a home in foe\u0027s side,", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 279, + "Width": 121, + "Height": 9, + "Text": "breaking a few ribs in the process.", + "Confidence": null, + "CenterX": 339.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 431, + "Width": 147, + "Height": 9, + "Text": "Solid shot to foe\u0027s ribs is followed by the", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 431, + "Width": 135, + "Height": 9, + "Text": "sound of breaking bone. There is also", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 431, + "Width": 123, + "Height": 9, + "Text": "major muscle and tendon damage.", + "Confidence": null, + "CenterX": 492.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 584, + "Width": 139, + "Height": 9, + "Text": "Shrapnel breaks ribs and lodges inside", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 584, + "Width": 130, + "Height": 9, + "Text": "foe. The bleeding just won\u0027t seem to", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 584, + "Width": 65, + "Height": 9, + "Text": "stop! Get a medic.", + "Confidence": null, + "CenterX": 616.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "Gut shot rips out several organs. Find a", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 737, + "Width": 53, + "Height": 9, + "Text": "donor, quickly.", + "Confidence": null, + "CenterX": 763.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 193, + "Width": 78, + "Height": 9, + "Text": "\u002B8H \u2013 3\u03C0 \u2013 \u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 232 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 352, + "Width": 70, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 498, + "Width": 78, + "Height": 9, + "Text": "\u002B20H \u2013 4\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 537 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B35H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 787, + "Width": 100, + "Height": 9, + "Text": "\u002B35H \u2013 6\u2211\u220F \u2013 15\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 837 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 145, + "Width": 99, + "Height": 9, + "Text": "Impressive shot right in the", + "Confidence": null, + "CenterX": 194.5 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 145, + "Width": 116, + "Height": 9, + "Text": "abdomen knocks foe backwards.", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 279, + "Width": 126, + "Height": 9, + "Text": "Blast rips into foe\u0027s gut and causes", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 279, + "Width": 128, + "Height": 9, + "Text": "major damage to everything it finds", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 871, + "Left": 279, + "Width": 22, + "Height": 9, + "Text": "there.", + "Confidence": null, + "CenterX": 290 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 431, + "Width": 137, + "Height": 9, + "Text": "Upper abdominal hit damages internal", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 431, + "Width": 73, + "Height": 9, + "Text": "organs and muscles.", + "Confidence": null, + "CenterX": 467.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 584, + "Width": 132, + "Height": 9, + "Text": "Blast in the gut leaves a gaping hole.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 584, + "Width": 104, + "Height": 9, + "Text": "Amazing, foe is still standing!", + "Confidence": null, + "CenterX": 636 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 737, + "Width": 131, + "Height": 9, + "Text": "Shrapnel passes clean through foe\u0027s", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 861, + "Left": 737, + "Width": 144, + "Height": 9, + "Text": "abdomen and lodges in his spine. Foe is", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 871, + "Left": 737, + "Width": 152, + "Height": 9, + "Text": "paralyzed until it is removed, and then still", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "suffers a -30 penalty to all maneuvers.", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 164, + "Width": 106, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211 \u2013 2\u220F- 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 334, + "Width": 89, + "Height": 9, + "Text": "\u002B15H \u2013 4\u2211 \u2013 5\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 378.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 479, + "Width": 96, + "Height": 9, + "Text": "\u002B14H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B25H \u2013 6\u2211\u220F \u2013 9\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 844, + "Width": 44, + "Height": 9, + "Text": "\u002B35 H \u2013 6\u222B", + "Confidence": null, + "CenterX": 866 + }, + { + "PageNumber": 1, + "Top": 913, + "Left": 145, + "Width": 128, + "Height": 9, + "Text": "Chest strike rips all of foe\u0027s buttons", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 145, + "Width": 42, + "Height": 9, + "Text": "off his shirt.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 913, + "Left": 279, + "Width": 139, + "Height": 9, + "Text": "Blast in the chest breaks ribs and tears", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 279, + "Width": 135, + "Height": 9, + "Text": "muscles and tendons. Get a new shirt.", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 913, + "Left": 431, + "Width": 132, + "Height": 9, + "Text": "Foe is wheezing as blast perforates a", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 431, + "Width": 18, + "Height": 9, + "Text": "lung.", + "Confidence": null, + "CenterX": 440 + }, + { + "PageNumber": 1, + "Top": 913, + "Left": 584, + "Width": 119, + "Height": 9, + "Text": "Shrapnel lodges near foe\u0027s heart.", + "Confidence": null, + "CenterX": 643.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 584, + "Width": 76, + "Height": 9, + "Text": "Sternum is shattered.", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 913, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "Blast through foe\u0027s chest and destroy his", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 737, + "Width": 125, + "Height": 9, + "Text": "heart. Foe flies 20\u0027 and everyone is", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 737, + "Width": 85, + "Height": 9, + "Text": "stunned for two rounds.", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 181, + "Width": 89, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211 \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 225.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 318, + "Width": 105, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 370.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 479, + "Width": 96, + "Height": 9, + "Text": "\u002B25H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 632, + "Width": 96, + "Height": 9, + "Text": "\u002B25H \u2013 4\u2211\u220F \u2013 8\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 869, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 145, + "Width": 126, + "Height": 9, + "Text": "Blast to foe\u0027s head rips off one ear.", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 976, + "Left": 145, + "Width": 59, + "Height": 9, + "Text": "Foe hears at -30.", + "Confidence": null, + "CenterX": 174.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 279, + "Width": 138, + "Height": 9, + "Text": "Shrapnel strikes foe\u0027s head. Luckily he", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 976, + "Left": 279, + "Width": 132, + "Height": 9, + "Text": "has a mighty skull and only loses his", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 279, + "Width": 15, + "Height": 9, + "Text": "hair.", + "Confidence": null, + "CenterX": 286.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 431, + "Width": 147, + "Height": 9, + "Text": "Shrapnel to side of foe\u0027s head. He can no", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 976, + "Left": 431, + "Width": 141, + "Height": 9, + "Text": "longer hear or see from that side of the", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 431, + "Width": 21, + "Height": 9, + "Text": "head.", + "Confidence": null, + "CenterX": 441.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 584, + "Width": 142, + "Height": 9, + "Text": "Blast cracks foe\u0027s skull. He is in a coma", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 976, + "Left": 584, + "Width": 143, + "Height": 9, + "Text": "for 3 weeks then awakens with amnesia", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 584, + "Width": 63, + "Height": 9, + "Text": "(and a headache).", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 737, + "Width": 151, + "Height": 9, + "Text": "Blast tears off the top of foe\u0027s head. Death", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 976, + "Left": 737, + "Width": 59, + "Height": 9, + "Text": "is instantaneous.", + "Confidence": null, + "CenterX": 766.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 179, + "Width": 91, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 347, + "Width": 75, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 \u2013 \u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 384.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 477, + "Width": 98, + "Height": 9, + "Text": "\u002B15H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 526 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 684, + "Width": 44, + "Height": 9, + "Text": "\u002B40H \u2013 10\u222B", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 869, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 145, + "Width": 113, + "Height": 9, + "Text": "Shrapnel peppers foe\u0027s jaw and", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 145, + "Width": 104, + "Height": 9, + "Text": "leaves several holes. Foe has", + "Confidence": null, + "CenterX": 197 + }, + { + "PageNumber": 1, + "Top": 1039, + "Left": 145, + "Width": 124, + "Height": 9, + "Text": "trouble talking because of damage", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 1050, + "Left": 145, + "Width": 51, + "Height": 9, + "Text": "to the tongue.", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 279, + "Width": 139, + "Height": 9, + "Text": "Blast shatters foe\u0027s jaw. He cannot talk", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 279, + "Width": 126, + "Height": 9, + "Text": "until healed. He suffers a -10 to his", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 1039, + "Left": 279, + "Width": 129, + "Height": 9, + "Text": "temporary Appearance and -5 to his", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 1050, + "Left": 279, + "Width": 76, + "Height": 9, + "Text": "potential Appearance.", + "Confidence": null, + "CenterX": 317 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 431, + "Width": 148, + "Height": 9, + "Text": "Blast rips through foe\u0027s throat. He is now", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 431, + "Width": 26, + "Height": 9, + "Text": "a mute.", + "Confidence": null, + "CenterX": 444 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 584, + "Width": 142, + "Height": 9, + "Text": "Shrapnel destroys foe\u0027s neck (and wind", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 584, + "Width": 130, + "Height": 9, + "Text": "pipe). He will probably die before he", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 1039, + "Left": 584, + "Width": 39, + "Height": 9, + "Text": "suffocates.", + "Confidence": null, + "CenterX": 603.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 737, + "Width": 151, + "Height": 9, + "Text": "Foe is left with nothing on top of his neck.", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 737, + "Width": 69, + "Height": 9, + "Text": "Anyone got a mop?", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 193, + "Width": 78, + "Height": 9, + "Text": "\u002B12H \u2013 4\u2211\u220F \u2013 (-15)", + "Confidence": null, + "CenterX": 232 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 327, + "Width": 96, + "Height": 9, + "Text": "\u002B11H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 375 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 479, + "Width": 96, + "Height": 9, + "Text": "\u002B20H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 628, + "Width": 100, + "Height": 9, + "Text": "\u002B25H \u2013 5\u2211\u220F \u2013 12\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 678 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 869, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 1081, + "Left": 145, + "Width": 117, + "Height": 9, + "Text": "Shrapnel passes through the ear", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 145, + "Width": 126, + "Height": 9, + "Text": "and into the brain. Foe is very dead.", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 1081, + "Left": 279, + "Width": 139, + "Height": 9, + "Text": "Foe\u0027s face is ripped off; right before he", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 279, + "Width": 111, + "Height": 9, + "Text": "dies from shrapnel in the brain.", + "Confidence": null, + "CenterX": 334.5 + }, + { + "PageNumber": 1, + "Top": 1081, + "Left": 431, + "Width": 142, + "Height": 9, + "Text": "Foe\u0027s head is opened from the blast. He", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 431, + "Width": 142, + "Height": 9, + "Text": "is quite dead. You have half a round left", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 431, + "Width": 22, + "Height": 9, + "Text": "to act.", + "Confidence": null, + "CenterX": 442 + }, + { + "PageNumber": 1, + "Top": 1081, + "Left": 584, + "Width": 131, + "Height": 9, + "Text": "Strong blast to foe\u0027s head cracks his", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 584, + "Width": 137, + "Height": 9, + "Text": "skull. He is in coma for next two years.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 1081, + "Left": 737, + "Width": 148, + "Height": 9, + "Text": "Don\u0027t loose your head! Ooops. Too late\u2026", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 249, + "Width": 21, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 259.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 401, + "Width": 21, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 554, + "Width": 21, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 707, + "Width": 21, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 869, + "Width": 19, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 136, + "Left": 98, + "Width": 34, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 115 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 240, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "21-30", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "31-40", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "41-50", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 593, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 109, + "Width": 15, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 813, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 871, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 929, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 1039, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 105, + "Width": 22, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 116 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/pages/page-001.png new file mode 100644 index 0000000..6f2fc1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/parsed-cells.json new file mode 100644 index 0000000..159a3ff --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/parsed-cells.json @@ -0,0 +1,8696 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage.", + "\u002B3H" + ], + "BaseLines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage.", + "\u002B3H" + ], + "RawCellText": "Foe\u0027s hand is hit! If he is holding an\nitem, it must immediately check for\nbreakage.\n\u002B3H", + "DescriptionText": "Foe\u0027s hand is hit! If he is holding an item, it must immediately check for breakage.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 121, + "Width": 129, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 484, + "BoundsWidth": 516, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 452, + "CropWidth": 612, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -10 penalty.", + "\u002B3H \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -10 penalty.", + "\u002B3H \u2013 2\u03C0" + ], + "RawCellText": "Foe\u0027s hand is hit! If he is holding an\nitem, it must immediately check for\nbreakage with a -10 penalty.\n\u002B3H \u2013 2\u03C0", + "DescriptionText": "Foe\u0027s hand is hit! If he is holding an item, it must immediately check for breakage with a -10 penalty.", + "RawAffixText": "\u002B3H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 121, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 484, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 452, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -20 penalty.", + "\u002B4H \u2013 2\u03C0 (-10)" + ], + "BaseLines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -20 penalty.", + "\u002B4H \u2013 2\u03C0 (-10)" + ], + "RawCellText": "Foe\u0027s hand is hit! If he is holding an\nitem, it must immediately check for\nbreakage with a -20 penalty.\n\u002B4H \u2013 2\u03C0 (-10)", + "DescriptionText": "Foe\u0027s hand is hit! If he is holding an item, it must immediately check for breakage with a -20 penalty.", + "RawAffixText": "\u002B4H \u2013 2\u03C0 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 121, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 484, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 452, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -30 penalty.", + "\u002B8H \u2013 4\u2211 \u2013 3\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Foe\u0027s hand is hit! If he is holding an", + "item, it must immediately check for", + "breakage with a -30 penalty.", + "\u002B8H \u2013 4\u2211 \u2013 3\u222B \u2013 (-20)" + ], + "RawCellText": "Foe\u0027s hand is hit! If he is holding an\nitem, it must immediately check for\nbreakage with a -30 penalty.\n\u002B8H \u2013 4\u2211 \u2013 3\u222B \u2013 (-20)", + "DescriptionText": "Foe\u0027s hand is hit! If he is holding an item, it must immediately check for breakage with a -30 penalty.", + "RawAffixText": "\u002B8H \u2013 4\u2211 \u2013 3\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 121, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 484, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 452, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s hand is hit! If he is holding an item,", + "it automatically breaks.", + "\u002B15H \u2013 5\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Foe\u0027s hand is hit! If he is holding an item,", + "it automatically breaks.", + "\u002B15H \u2013 5\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Foe\u0027s hand is hit! If he is holding an item,\nit automatically breaks.\n\u002B15H \u2013 5\u2211\u220F \u2013 (-50)", + "DescriptionText": "Foe\u0027s hand is hit! If he is holding an item, it automatically breaks.", + "RawAffixText": "\u002B15H \u2013 5\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 121, + "Width": 150, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 484, + "BoundsWidth": 600, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 452, + "CropWidth": 696, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Forearm strike burns! You gain the", + "initiative next round.", + "\u002B5H" + ], + "BaseLines": [ + "Forearm strike burns! You gain the", + "initiative next round.", + "\u002B5H" + ], + "RawCellText": "Forearm strike burns! You gain the\ninitiative next round.\n\u002B5H", + "DescriptionText": "Forearm strike burns! You gain the initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 173, + "Width": 126, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 692, + "BoundsWidth": 504, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 660, + "CropWidth": 600, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s lower arm starts to bleed.", + "His grip may slip! You gain the initiative", + "next round.", + "\u002B7H \u2013 3\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Strike to foe\u0027s lower arm starts to bleed.", + "His grip may slip! You gain the initiative", + "next round.", + "\u002B7H \u2013 3\u03C0 \u2013 2\u222B" + ], + "RawCellText": "Strike to foe\u0027s lower arm starts to bleed.\nHis grip may slip! You gain the initiative\nnext round.\n\u002B7H \u2013 3\u03C0 \u2013 2\u222B", + "DescriptionText": "Strike to foe\u0027s lower arm starts to bleed. His grip may slip! You gain the initiative next round.", + "RawAffixText": "\u002B7H \u2013 3\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 173, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 692, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 660, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Forearm wound tears muscle and", + "tendons. If foe is holding an item,it must", + "check for breakage with a -20 penalty.", + "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Forearm wound tears muscle and", + "tendons. If foe is holding an item,it must", + "check for breakage with a -20 penalty.", + "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Forearm wound tears muscle and\ntendons. If foe is holding an item,it must\ncheck for breakage with a -20 penalty.\n\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Forearm wound tears muscle and tendons. If foe is holding an item,it must check for breakage with a -20 penalty.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 173, + "Width": 146, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 692, + "BoundsWidth": 584, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 660, + "CropWidth": 680, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Forearm shot tears muscles and", + "tendons. Foe drops any held items and", + "they check for breakage.", + "\u002B10H \u2013 4\u2211 \u2013 4\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Forearm shot tears muscles and", + "tendons. Foe drops any held items and", + "they check for breakage.", + "\u002B10H \u2013 4\u2211 \u2013 4\u222B \u2013 (-25)" + ], + "RawCellText": "Forearm shot tears muscles and\ntendons. Foe drops any held items and\nthey check for breakage.\n\u002B10H \u2013 4\u2211 \u2013 4\u222B \u2013 (-25)", + "DescriptionText": "Forearm shot tears muscles and tendons. Foe drops any held items and they check for breakage.", + "RawAffixText": "\u002B10H \u2013 4\u2211 \u2013 4\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 173, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 692, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 660, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Incredible blast to foe\u0027s arm completely", + "rips off his hand and lower arm! Foe faints", + "and is out for 10 rounds.", + "\u002B15H \u2013 7\u2211\u220F \u2013 8\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Incredible blast to foe\u0027s arm completely", + "rips off his hand and lower arm! Foe faints", + "and is out for 10 rounds.", + "\u002B15H \u2013 7\u2211\u220F \u2013 8\u222B \u2013 (-50)" + ], + "RawCellText": "Incredible blast to foe\u0027s arm completely\nrips off his hand and lower arm! Foe faints\nand is out for 10 rounds.\n\u002B15H \u2013 7\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "DescriptionText": "Incredible blast to foe\u0027s arm completely rips off his hand and lower arm! Foe faints and is out for 10 rounds.", + "RawAffixText": "\u002B15H \u2013 7\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 173, + "Width": 153, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 692, + "BoundsWidth": 612, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 660, + "CropWidth": 708, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Lots of hot air over foe\u0027s arm.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Lots of hot air over foe\u0027s arm.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Lots of hot air over foe\u0027s arm.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Lots of hot air over foe\u0027s arm.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 225, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 900, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 868, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Deep scratches on foe\u0027s biceps cause", + "minor muscle damage.", + "\u002B7H \u2013 3\u03C0 \u2013 (-5)" + ], + "BaseLines": [ + "Deep scratches on foe\u0027s biceps cause", + "minor muscle damage.", + "\u002B7H \u2013 3\u03C0 \u2013 (-5)" + ], + "RawCellText": "Deep scratches on foe\u0027s biceps cause\nminor muscle damage.\n\u002B7H \u2013 3\u03C0 \u2013 (-5)", + "DescriptionText": "Deep scratches on foe\u0027s biceps cause minor muscle damage.", + "RawAffixText": "\u002B7H \u2013 3\u03C0 \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 225, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 900, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 868, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Serious gash on upper arm causes", + "major muscle damage.", + "\u002B15H \u2013 4\u2211 \u2013 2\u220F \u2013 4\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Serious gash on upper arm causes", + "major muscle damage.", + "\u002B15H \u2013 4\u2211 \u2013 2\u220F \u2013 4\u222B \u2013 (-20)" + ], + "RawCellText": "Serious gash on upper arm causes\nmajor muscle damage.\n\u002B15H \u2013 4\u2211 \u2013 2\u220F \u2013 4\u222B \u2013 (-20)", + "DescriptionText": "Serious gash on upper arm causes major muscle damage.", + "RawAffixText": "\u002B15H \u2013 4\u2211 \u2013 2\u220F \u2013 4\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 225, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 900, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 868, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s elbow takes the brunt of the blast.", + "Broken bone and torn tendons are the", + "price. His arm is useless.", + "\u002B10H \u2013 4\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Foe\u0027s elbow takes the brunt of the blast.", + "Broken bone and torn tendons are the", + "price. His arm is useless.", + "\u002B10H \u2013 4\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Foe\u0027s elbow takes the brunt of the blast.\nBroken bone and torn tendons are the\nprice. His arm is useless.\n\u002B10H \u2013 4\u2211 \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Foe\u0027s elbow takes the brunt of the blast. Broken bone and torn tendons are the price. His arm is useless.", + "RawAffixText": "\u002B10H \u2013 4\u2211 \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 225, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 900, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 868, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Only dangling flesh is left on foe\u0027s arm. It", + "is completely useless.", + "\u002B 25H \u2013 7\u2211\u220F \u2013 4\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Only dangling flesh is left on foe\u0027s arm. It", + "is completely useless.", + "\u002B 25H \u2013 7\u2211\u220F \u2013 4\u222B \u2013 (-40)" + ], + "RawCellText": "Only dangling flesh is left on foe\u0027s arm. It\nis completely useless.\n\u002B 25H \u2013 7\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "DescriptionText": "Only dangling flesh is left on foe\u0027s arm. It is completely useless.", + "RawAffixText": "\u002B 25H \u2013 7\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B 25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 225, + "Width": 150, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 900, + "BoundsWidth": 600, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 868, + "CropWidth": 696, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "An incredible shot leaves only", + "minor scratches.", + "\u002B4H \u2013 2\u03C0" + ], + "BaseLines": [ + "An incredible shot leaves only", + "minor scratches.", + "\u002B4H \u2013 2\u03C0" + ], + "RawCellText": "An incredible shot leaves only\nminor scratches.\n\u002B4H \u2013 2\u03C0", + "DescriptionText": "An incredible shot leaves only minor scratches.", + "RawAffixText": "\u002B4H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 277, + "Width": 125, + "Height": 33 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 1108, + "BoundsWidth": 500, + "BoundsHeight": 132, + "CropLeft": 532, + "CropTop": 1076, + "CropWidth": 596, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Upper arm strike leaves foe with minor", + "muscle damage.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Upper arm strike leaves foe with minor", + "muscle damage.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Upper arm strike leaves foe with minor\nmuscle damage.\n\u002B7H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Upper arm strike leaves foe with minor muscle damage.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 277, + "Width": 144, + "Height": 33 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 1108, + "BoundsWidth": 576, + "BoundsHeight": 132, + "CropLeft": 1068, + "CropTop": 1076, + "CropWidth": 672, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s triceps take the blast. He will need", + "a doctor for that major muscle damage.", + "\u002B12H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Foe\u0027s triceps take the blast. He will need", + "a doctor for that major muscle damage.", + "\u002B12H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Foe\u0027s triceps take the blast. He will need\na doctor for that major muscle damage.\n\u002B12H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Foe\u0027s triceps take the blast. He will need a doctor for that major muscle damage.", + "RawAffixText": "\u002B12H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 277, + "Width": 145, + "Height": 33 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 1108, + "BoundsWidth": 580, + "BoundsHeight": 132, + "CropLeft": 1676, + "CropTop": 1076, + "CropWidth": 676, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Right on the elbow! Blast breaks bone", + "and tears tendons. Arm useless.", + "\u002B12H \u2013 4\u2211 \u2013 2\u220F \u2014 3\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Right on the elbow! Blast breaks bone", + "and tears tendons. Arm useless.", + "\u002B12H \u2013 4\u2211 \u2013 2\u220F \u2014 3\u222B \u2013 (-20)" + ], + "RawCellText": "Right on the elbow! Blast breaks bone\nand tears tendons. Arm useless.\n\u002B12H \u2013 4\u2211 \u2013 2\u220F \u2014 3\u222B \u2013 (-20)", + "DescriptionText": "Right on the elbow! Blast breaks bone and tears tendons. Arm useless.", + "RawAffixText": "\u002B12H \u2013 4\u2211 \u2013 2\u220F \u2014 3\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 277, + "Width": 144, + "Height": 33 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1108, + "BoundsWidth": 576, + "BoundsHeight": 132, + "CropLeft": 2288, + "CropTop": 1076, + "CropWidth": 672, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Boned foe\u0027s arm just like a chicken. Arm is", + "useless.", + "\u002B 30H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (-60)" + ], + "BaseLines": [ + "Boned foe\u0027s arm just like a chicken. Arm is", + "useless.", + "\u002B 30H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (-60)" + ], + "RawCellText": "Boned foe\u0027s arm just like a chicken. Arm is\nuseless.\n\u002B 30H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (-60)", + "DescriptionText": "Boned foe\u0027s arm just like a chicken. Arm is useless.", + "RawAffixText": "\u002B 30H \u2013 6\u2211\u220F \u2013 5\u222B \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B 30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 277, + "Width": 153, + "Height": 33 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1108, + "BoundsWidth": 612, + "BoundsHeight": 132, + "CropLeft": 2900, + "CropTop": 1076, + "CropWidth": 708, + "CropHeight": 196, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "A", + "Lines": [ + "Shrapnel grazes foe\u0027s shoulder.", + "That will leave a mark.", + "\u002B5H \u2013 2\u03C0" + ], + "BaseLines": [ + "Shrapnel grazes foe\u0027s shoulder.", + "That will leave a mark.", + "\u002B5H \u2013 2\u03C0" + ], + "RawCellText": "Shrapnel grazes foe\u0027s shoulder.\nThat will leave a mark.\n\u002B5H \u2013 2\u03C0", + "DescriptionText": "Shrapnel grazes foe\u0027s shoulder. That will leave a mark.", + "RawAffixText": "\u002B5H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 317, + "Width": 125, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 1268, + "BoundsWidth": 500, + "BoundsHeight": 180, + "CropLeft": 532, + "CropTop": 1236, + "CropWidth": 596, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "B", + "Lines": [ + "Shoulder hit. Minor muscle damage. The", + "strips on his uniform are ripped off.", + "\u002B8H \u2013 3\u2211 (-10)" + ], + "BaseLines": [ + "Shoulder hit. Minor muscle damage. The", + "strips on his uniform are ripped off.", + "\u002B8H \u2013 3\u2211 (-10)" + ], + "RawCellText": "Shoulder hit. Minor muscle damage. The\nstrips on his uniform are ripped off.\n\u002B8H \u2013 3\u2211 (-10)", + "DescriptionText": "Shoulder hit. Minor muscle damage. The strips on his uniform are ripped off.", + "RawAffixText": "\u002B8H \u2013 3\u2211 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 317, + "Width": 146, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 1268, + "BoundsWidth": 584, + "BoundsHeight": 180, + "CropLeft": 1068, + "CropTop": 1236, + "CropWidth": 680, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "C", + "Lines": [ + "Shrapnel goes through foe\u0027s shoulder,", + "tearing muscle and tendons. He will feel", + "that one for a while.", + "\u002B16H \u2013 4\u2211\u220F \u2013 2\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel goes through foe\u0027s shoulder,", + "tearing muscle and tendons. He will feel", + "that one for a while.", + "\u002B16H \u2013 4\u2211\u220F \u2013 2\u222B \u2013 (-15)" + ], + "RawCellText": "Shrapnel goes through foe\u0027s shoulder,\ntearing muscle and tendons. He will feel\nthat one for a while.\n\u002B16H \u2013 4\u2211\u220F \u2013 2\u222B \u2013 (-15)", + "DescriptionText": "Shrapnel goes through foe\u0027s shoulder, tearing muscle and tendons. He will feel that one for a while.", + "RawAffixText": "\u002B16H \u2013 4\u2211\u220F \u2013 2\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 317, + "Width": 145, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 1268, + "BoundsWidth": 580, + "BoundsHeight": 180, + "CropLeft": 1676, + "CropTop": 1236, + "CropWidth": 676, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "D", + "Lines": [ + "Shrapnel tears muscles tendons on its", + "way through foe\u0027s shoulder. Nicks a", + "major artery.", + "\u002B18H \u2013 5\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Shrapnel tears muscles tendons on its", + "way through foe\u0027s shoulder. Nicks a", + "major artery.", + "\u002B18H \u2013 5\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "RawCellText": "Shrapnel tears muscles tendons on its\nway through foe\u0027s shoulder. Nicks a\nmajor artery.\n\u002B18H \u2013 5\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "DescriptionText": "Shrapnel tears muscles tendons on its way through foe\u0027s shoulder. Nicks a major artery.", + "RawAffixText": "\u002B18H \u2013 5\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 317, + "Width": 144, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1268, + "BoundsWidth": 576, + "BoundsHeight": 180, + "CropLeft": 2288, + "CropTop": 1236, + "CropWidth": 672, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "E", + "Lines": [ + "Foe really didn\u0027t need that arm anyway. Foe", + "is unconscious for six hours.", + "\u002B25H \u2013 10\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Foe really didn\u0027t need that arm anyway. Foe", + "is unconscious for six hours.", + "\u002B25H \u2013 10\u222B \u2013 (-50)" + ], + "RawCellText": "Foe really didn\u0027t need that arm anyway. Foe\nis unconscious for six hours.\n\u002B25H \u2013 10\u222B \u2013 (-50)", + "DescriptionText": "Foe really didn\u0027t need that arm anyway. Foe is unconscious for six hours.", + "RawAffixText": "\u002B25H \u2013 10\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 317, + "Width": 155, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1268, + "BoundsWidth": 620, + "BoundsHeight": 180, + "CropLeft": 2900, + "CropTop": 1236, + "CropWidth": 716, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "A", + "Lines": [ + "Shrapnel grazes foe\u0027s shoulder,", + "spinning him around.", + "\u002B5H \u2013 2\u03C0" + ], + "BaseLines": [ + "Shrapnel grazes foe\u0027s shoulder,", + "spinning him around.", + "\u002B5H \u2013 2\u03C0" + ], + "RawCellText": "Shrapnel grazes foe\u0027s shoulder,\nspinning him around.\n\u002B5H \u2013 2\u03C0", + "DescriptionText": "Shrapnel grazes foe\u0027s shoulder, spinning him around.", + "RawAffixText": "\u002B5H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 370, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 1480, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 1448, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "B", + "Lines": [ + "Shrapnel glances off clavicle. Foe looks", + "surprised to still have a head.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Shrapnel glances off clavicle. Foe looks", + "surprised to still have a head.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Shrapnel glances off clavicle. Foe looks\nsurprised to still have a head.\n\u002B7H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Shrapnel glances off clavicle. Foe looks surprised to still have a head.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 370, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 1480, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 1448, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "C", + "Lines": [ + "Shrapnel breaks collar bone. He will", + "never wear a tie again!", + "\u002B12H \u2013 3\u2211 \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel breaks collar bone. He will", + "never wear a tie again!", + "\u002B12H \u2013 3\u2211 \u2013 (-15)" + ], + "RawCellText": "Shrapnel breaks collar bone. He will\nnever wear a tie again!\n\u002B12H \u2013 3\u2211 \u2013 (-15)", + "DescriptionText": "Shrapnel breaks collar bone. He will never wear a tie again!", + "RawAffixText": "\u002B12H \u2013 3\u2211 \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 370, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 1480, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 1448, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "D", + "Lines": [ + "Shrapnel lodges in the foe\u0027s shoulder.", + "Surgeon will have to chip away a little", + "bone to get this one out.", + "\u002B20H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Shrapnel lodges in the foe\u0027s shoulder.", + "Surgeon will have to chip away a little", + "bone to get this one out.", + "\u002B20H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Shrapnel lodges in the foe\u0027s shoulder.\nSurgeon will have to chip away a little\nbone to get this one out.\n\u002B20H \u2013 3\u2211\u220F \u2013 (-25)", + "DescriptionText": "Shrapnel lodges in the foe\u0027s shoulder. Surgeon will have to chip away a little bone to get this one out.", + "RawAffixText": "\u002B20H \u2013 3\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 370, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1480, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 1448, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "E", + "Lines": [ + "Shrapnel breaks clavicle and destroys", + "shoulder joint. His arm will hang limp until", + "healed.", + "\u002B30H \u2013 6\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Shrapnel breaks clavicle and destroys", + "shoulder joint. His arm will hang limp until", + "healed.", + "\u002B30H \u2013 6\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Shrapnel breaks clavicle and destroys\nshoulder joint. His arm will hang limp until\nhealed.\n\u002B30H \u2013 6\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Shrapnel breaks clavicle and destroys shoulder joint. His arm will hang limp until healed.", + "RawAffixText": "\u002B30H \u2013 6\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 370, + "Width": 153, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1480, + "BoundsWidth": 612, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 1448, + "CropWidth": 708, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "A", + "Lines": [ + "Graze foe\u0027s thigh. Now those nice", + "pants are ripped.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Graze foe\u0027s thigh. Now those nice", + "pants are ripped.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Graze foe\u0027s thigh. Now those nice\npants are ripped.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Graze foe\u0027s thigh. Now those nice pants are ripped.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 422, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 1688, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 1656, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "B", + "Lines": [ + "Thigh wound tears muscle and leaves", + "foe with a minor limp.", + "\u002B6 H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Thigh wound tears muscle and leaves", + "foe with a minor limp.", + "\u002B6 H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Thigh wound tears muscle and leaves\nfoe with a minor limp.\n\u002B6 H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Thigh wound tears muscle and leaves foe with a minor limp.", + "RawAffixText": "\u002B6 H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6 H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 422, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 1688, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 1656, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "C", + "Lines": [ + "Shrapnel lodged in thigh. Running very", + "painful. -25 to Moving Maneuvers until", + "Shrapnel is removed.", + "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel lodged in thigh. Running very", + "painful. -25 to Moving Maneuvers until", + "Shrapnel is removed.", + "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Shrapnel lodged in thigh. Running very\npainful. -25 to Moving Maneuvers until\nShrapnel is removed.\n\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Shrapnel lodged in thigh. Running very painful. -25 to Moving Maneuvers until Shrapnel is removed.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 422, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 1688, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 1656, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "D", + "Lines": [ + "Shrapnel tears muscle and tendons in", + "the thigh. Foe is knocked backward 5", + "feet from the blast.", + "\u002B16H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Shrapnel tears muscle and tendons in", + "the thigh. Foe is knocked backward 5", + "feet from the blast.", + "\u002B16H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Shrapnel tears muscle and tendons in\nthe thigh. Foe is knocked backward 5\nfeet from the blast.\n\u002B16H \u2013 3\u2211\u220F \u2013 (-25)", + "DescriptionText": "Shrapnel tears muscle and tendons in the thigh. Foe is knocked backward 5 feet from the blast.", + "RawAffixText": "\u002B16H \u2013 3\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 422, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1688, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 1656, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "E", + "Lines": [ + "foe\u0027s leg severed at the thigh. Foe falls.", + "Hope he has a belt handy.", + "\u002B40H \u2013 4\u2211\u220F \u2013 4\u222B \u2013 (-40)" + ], + "BaseLines": [ + "foe\u0027s leg severed at the thigh. Foe falls.", + "Hope he has a belt handy.", + "\u002B40H \u2013 4\u2211\u220F \u2013 4\u222B \u2013 (-40)" + ], + "RawCellText": "foe\u0027s leg severed at the thigh. Foe falls.\nHope he has a belt handy.\n\u002B40H \u2013 4\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "DescriptionText": "foe\u0027s leg severed at the thigh. Foe falls. Hope he has a belt handy.", + "RawAffixText": "\u002B40H \u2013 4\u2211\u220F \u2013 4\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 422, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1688, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 1656, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Shrapnel grazes foe\u0027s calf and", + "causes him to stagger.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Shrapnel grazes foe\u0027s calf and", + "causes him to stagger.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Shrapnel grazes foe\u0027s calf and\ncauses him to stagger.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Shrapnel grazes foe\u0027s calf and causes him to stagger.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 474, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 1896, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 1864, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Several wide cuts on foe\u0027s calf, but none", + "are deep. Unfortunately, the muscles", + "have minor damage.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Several wide cuts on foe\u0027s calf, but none", + "are deep. Unfortunately, the muscles", + "have minor damage.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Several wide cuts on foe\u0027s calf, but none\nare deep. Unfortunately, the muscles\nhave minor damage.\n\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Several wide cuts on foe\u0027s calf, but none are deep. Unfortunately, the muscles have minor damage.", + "RawAffixText": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 474, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 1896, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 1864, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Shrapnel goes clean through the back of", + "foe\u0027s lower leg. He is knocked over and", + "now has muscle and tendon damage.", + "\u002B15H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel goes clean through the back of", + "foe\u0027s lower leg. He is knocked over and", + "now has muscle and tendon damage.", + "\u002B15H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Shrapnel goes clean through the back of\nfoe\u0027s lower leg. He is knocked over and\nnow has muscle and tendon damage.\n\u002B15H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Shrapnel goes clean through the back of foe\u0027s lower leg. He is knocked over and now has muscle and tendon damage.", + "RawAffixText": "\u002B15H \u2013 3\u2211 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 474, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 1896, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 1864, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Shrapnel strikes calf. Broken bones have", + "ripped through the flesh of the leg.", + "\u002B25H \u2013 4\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Shrapnel strikes calf. Broken bones have", + "ripped through the flesh of the leg.", + "\u002B25H \u2013 4\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Shrapnel strikes calf. Broken bones have\nripped through the flesh of the leg.\n\u002B25H \u2013 4\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Shrapnel strikes calf. Broken bones have ripped through the flesh of the leg.", + "RawAffixText": "\u002B25H \u2013 4\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 474, + "Width": 146, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1896, + "BoundsWidth": 584, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 1864, + "CropWidth": 680, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Foe blown back 15\u0027. When he rises, he", + "realizes that he now has a ragged stump", + "below his knee (and he can\u0027t stand up).", + "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-75)" + ], + "BaseLines": [ + "Foe blown back 15\u0027. When he rises, he", + "realizes that he now has a ragged stump", + "below his knee (and he can\u0027t stand up).", + "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-75)" + ], + "RawCellText": "Foe blown back 15\u0027. When he rises, he\nrealizes that he now has a ragged stump\nbelow his knee (and he can\u0027t stand up).\n\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-75)", + "DescriptionText": "Foe blown back 15\u0027. When he rises, he realizes that he now has a ragged stump below his knee (and he can\u0027t stand up).", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 474, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1896, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 1864, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Blast near foe\u0027s feet causes him to", + "dance.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Blast near foe\u0027s feet causes him to", + "dance.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Blast near foe\u0027s feet causes him to\ndance.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Blast near foe\u0027s feet causes him to dance.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 526, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 2104, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 2072, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Lucky shot on foe\u0027s foot takes off all of", + "his toes! Now his shoe won\u0027t fit.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Lucky shot on foe\u0027s foot takes off all of", + "his toes! Now his shoe won\u0027t fit.", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Lucky shot on foe\u0027s foot takes off all of\nhis toes! Now his shoe won\u0027t fit.\n\u002B7H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Lucky shot on foe\u0027s foot takes off all of his toes! Now his shoe won\u0027t fit.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 526, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 2104, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 2072, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Solid blast to foe\u0027s foot. The sound of", + "breaking bone is very clear. The Several", + "toes have been lost.", + "\u002B25H \u2013 4\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Solid blast to foe\u0027s foot. The sound of", + "breaking bone is very clear. The Several", + "toes have been lost.", + "\u002B25H \u2013 4\u2211 \u2013 (-25)" + ], + "RawCellText": "Solid blast to foe\u0027s foot. The sound of\nbreaking bone is very clear. The Several\ntoes have been lost.\n\u002B25H \u2013 4\u2211 \u2013 (-25)", + "DescriptionText": "Solid blast to foe\u0027s foot. The sound of breaking bone is very clear. The Several toes have been lost.", + "RawAffixText": "\u002B25H \u2013 4\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 526, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 2104, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 2072, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Ouch! Right on the ankle. Bones break", + "and tendons torn. Foe falls and will have", + "trouble standing.", + "\u002B24H \u2013 4\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Ouch! Right on the ankle. Bones break", + "and tendons torn. Foe falls and will have", + "trouble standing.", + "\u002B24H \u2013 4\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Ouch! Right on the ankle. Bones break\nand tendons torn. Foe falls and will have\ntrouble standing.\n\u002B24H \u2013 4\u2211\u220F \u2013 (-30)", + "DescriptionText": "Ouch! Right on the ankle. Bones break and tendons torn. Foe falls and will have trouble standing.", + "RawAffixText": "\u002B24H \u2013 4\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 526, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2104, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 2072, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Foot bone ain\u0027t connected to the leg bone", + "no mo\u0027. Blast rips the foot off at the ankle.", + "\u002B35H \u2013 6\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Foot bone ain\u0027t connected to the leg bone", + "no mo\u0027. Blast rips the foot off at the ankle.", + "\u002B35H \u2013 6\u2211\u220F \u2013 4\u222B \u2013 (-50)" + ], + "RawCellText": "Foot bone ain\u0027t connected to the leg bone\nno mo\u0027. Blast rips the foot off at the ankle.\n\u002B35H \u2013 6\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "DescriptionText": "Foot bone ain\u0027t connected to the leg bone no mo\u0027. Blast rips the foot off at the ankle.", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 4\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 526, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2104, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 2072, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Close shot at foe\u0027s hip. Maybe it is", + "time to start that diet.", + "\u002B7H \u2013 2\u03C0" + ], + "BaseLines": [ + "Close shot at foe\u0027s hip. Maybe it is", + "time to start that diet.", + "\u002B7H \u2013 2\u03C0" + ], + "RawCellText": "Close shot at foe\u0027s hip. Maybe it is\ntime to start that diet.\n\u002B7H \u2013 2\u03C0", + "DescriptionText": "Close shot at foe\u0027s hip. Maybe it is time to start that diet.", + "RawAffixText": "\u002B7H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 578, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 2312, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 2280, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Blast strikes solidly on foe\u0027s hip. Luckily", + "his bones are strong and it is only a", + "minor fracture.", + "\u002B10H \u2013 2\u2211 \u2013 (-5)" + ], + "BaseLines": [ + "Blast strikes solidly on foe\u0027s hip. Luckily", + "his bones are strong and it is only a", + "minor fracture.", + "\u002B10H \u2013 2\u2211 \u2013 (-5)" + ], + "RawCellText": "Blast strikes solidly on foe\u0027s hip. Luckily\nhis bones are strong and it is only a\nminor fracture.\n\u002B10H \u2013 2\u2211 \u2013 (-5)", + "DescriptionText": "Blast strikes solidly on foe\u0027s hip. Luckily his bones are strong and it is only a minor fracture.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 578, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 2312, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 2280, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Shrapnel goes deep into foe\u0027s hip", + "(lodging againt the bone). Walking", + "proves massively painful.", + "\u002B25H \u2013 4\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Shrapnel goes deep into foe\u0027s hip", + "(lodging againt the bone). Walking", + "proves massively painful.", + "\u002B25H \u2013 4\u220F \u2013 (-20)" + ], + "RawCellText": "Shrapnel goes deep into foe\u0027s hip\n(lodging againt the bone). Walking\nproves massively painful.\n\u002B25H \u2013 4\u220F \u2013 (-20)", + "DescriptionText": "Shrapnel goes deep into foe\u0027s hip (lodging againt the bone). Walking proves massively painful.", + "RawAffixText": "\u002B25H \u2013 4\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 578, + "Width": 145, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 2312, + "BoundsWidth": 580, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 2280, + "CropWidth": 676, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Strong blast to foe\u0027s hip fractures his", + "pelvis. He now has a funny walk.", + "\u002B30H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Strong blast to foe\u0027s hip fractures his", + "pelvis. He now has a funny walk.", + "\u002B30H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-25)" + ], + "RawCellText": "Strong blast to foe\u0027s hip fractures his\npelvis. He now has a funny walk.\n\u002B30H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-25)", + "DescriptionText": "Strong blast to foe\u0027s hip fractures his pelvis. He now has a funny walk.", + "RawAffixText": "\u002B30H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 578, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2312, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 2280, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Blast completely shatters foe\u0027s hip. Foe is", + "thrown back 15\u0027.", + "\u002B34H \u2013 7\u2211\u220F \u2013 5\u222B -(-50)" + ], + "BaseLines": [ + "Blast completely shatters foe\u0027s hip. Foe is", + "thrown back 15\u0027.", + "\u002B34H \u2013 7\u2211\u220F \u2013 5\u222B -(-50)" + ], + "RawCellText": "Blast completely shatters foe\u0027s hip. Foe is\nthrown back 15\u0027.\n\u002B34H \u2013 7\u2211\u220F \u2013 5\u222B -(-50)", + "DescriptionText": "Blast completely shatters foe\u0027s hip. Foe is thrown back 15\u0027.", + "RawAffixText": "\u002B34H \u2013 7\u2211\u220F \u2013 5\u222B -(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 34, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B34H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 578, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2312, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 2280, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Shrapnel imbedded in foe\u0027s", + "buttocks. He will need a special", + "pillow just to sit down.", + "\u002B20H \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel imbedded in foe\u0027s", + "buttocks. He will need a special", + "pillow just to sit down.", + "\u002B20H \u2013 (-15)" + ], + "RawCellText": "Shrapnel imbedded in foe\u0027s\nbuttocks. He will need a special\npillow just to sit down.\n\u002B20H \u2013 (-15)", + "DescriptionText": "Shrapnel imbedded in foe\u0027s buttocks. He will need a special pillow just to sit down.", + "RawAffixText": "\u002B20H \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 630, + "Width": 125, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 2520, + "BoundsWidth": 500, + "BoundsHeight": 224, + "CropLeft": 532, + "CropTop": 2488, + "CropWidth": 596, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Blast to foe\u0027s head! Amazingly, foe\u0027s", + "head is mostly intact. He will just be in a", + "coma for three days.", + "\u002B20H \u2013 (-40) \u2013 (\u002B25)" + ], + "BaseLines": [ + "Blast to foe\u0027s head! Amazingly, foe\u0027s", + "head is mostly intact. He will just be in a", + "coma for three days.", + "\u002B20H \u2013 (-40) \u2013 (\u002B25)" + ], + "RawCellText": "Blast to foe\u0027s head! Amazingly, foe\u0027s\nhead is mostly intact. He will just be in a\ncoma for three days.\n\u002B20H \u2013 (-40) \u2013 (\u002B25)", + "DescriptionText": "Blast to foe\u0027s head! Amazingly, foe\u0027s head is mostly intact. He will just be in a coma for three days.", + "RawAffixText": "\u002B20H \u2013 (-40) \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 630, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 2520, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 1068, + "CropTop": 2488, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Foe forget to duck. He takes shrapnel in", + "the eyes. Foe spins head over heels", + "backwards and will die in 10 rounds if", + "not tended to by a doctor.", + "\u002B10H \u2013 5\u2211\u220F \u2013 (-30) \u2013 (\u002B25)" + ], + "BaseLines": [ + "Foe forget to duck. He takes shrapnel in", + "the eyes. Foe spins head over heels", + "backwards and will die in 10 rounds if", + "not tended to by a doctor.", + "\u002B10H \u2013 5\u2211\u220F \u2013 (-30) \u2013 (\u002B25)" + ], + "RawCellText": "Foe forget to duck. He takes shrapnel in\nthe eyes. Foe spins head over heels\nbackwards and will die in 10 rounds if\nnot tended to by a doctor.\n\u002B10H \u2013 5\u2211\u220F \u2013 (-30) \u2013 (\u002B25)", + "DescriptionText": "Foe forget to duck. He takes shrapnel in the eyes. Foe spins head over heels backwards and will die in 10 rounds if not tended to by a doctor.", + "RawAffixText": "\u002B10H \u2013 5\u2211\u220F \u2013 (-30) \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 630, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 2520, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 1676, + "CropTop": 2488, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Abdomenal blast knocks foe through the", + "nearest wall. Major internal damage to all", + "kinds of organs. Hope a doctor is on", + "hand.", + "\u002B50H \u2013 8\u2211\u220F \u2013 15\u222B \u2013 (-75)" + ], + "BaseLines": [ + "Abdomenal blast knocks foe through the", + "nearest wall. Major internal damage to all", + "kinds of organs. Hope a doctor is on", + "hand.", + "\u002B50H \u2013 8\u2211\u220F \u2013 15\u222B \u2013 (-75)" + ], + "RawCellText": "Abdomenal blast knocks foe through the\nnearest wall. Major internal damage to all\nkinds of organs. Hope a doctor is on\nhand.\n\u002B50H \u2013 8\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "DescriptionText": "Abdomenal blast knocks foe through the nearest wall. Major internal damage to all kinds of organs. Hope a doctor is on hand.", + "RawAffixText": "\u002B50H \u2013 8\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 15, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 630, + "Width": 148, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2520, + "BoundsWidth": 592, + "BoundsHeight": 224, + "CropLeft": 2288, + "CropTop": 2488, + "CropWidth": 688, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Surprise shot to foe\u0027s groin. Foe no longer", + "needs his \u0022little black book\u0022. You are", + "stunned for 3 rounds in sympathy. He", + "collapses and won\u0027t get up until tomorrow.", + "\u002B50H \u2013 15\u2211\u220F \u2013 15\u222B \u2013 (-75)" + ], + "BaseLines": [ + "Surprise shot to foe\u0027s groin. Foe no longer", + "needs his \u0022little black book\u0022. You are", + "stunned for 3 rounds in sympathy. He", + "collapses and won\u0027t get up until tomorrow.", + "\u002B50H \u2013 15\u2211\u220F \u2013 15\u222B \u2013 (-75)" + ], + "RawCellText": "Surprise shot to foe\u0027s groin. Foe no longer\nneeds his \u0022little black book\u0022. You are\nstunned for 3 rounds in sympathy. He\ncollapses and won\u0027t get up until tomorrow.\n\u002B50H \u2013 15\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "DescriptionText": "Surprise shot to foe\u0027s groin. Foe no longer needs his \u0022little black book\u0022. You are stunned for 3 rounds in sympathy. He collapses and won\u0027t get up until tomorrow.", + "RawAffixText": "\u002B50H \u2013 15\u2211\u220F \u2013 15\u222B \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 15, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 630, + "Width": 152, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2520, + "BoundsWidth": 608, + "BoundsHeight": 224, + "CropLeft": 2900, + "CropTop": 2488, + "CropWidth": 704, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s knee is peppered with", + "shrapnel. Amazingly, no permanent", + "damage.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe\u0027s knee is peppered with", + "shrapnel. Amazingly, no permanent", + "damage.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Foe\u0027s knee is peppered with\nshrapnel. Amazingly, no permanent\ndamage.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Foe\u0027s knee is peppered with shrapnel. Amazingly, no permanent damage.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 694, + "Width": 127, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 2776, + "BoundsWidth": 508, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 2744, + "CropWidth": 604, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Knee strike fractures bone. Very", + "impressive.", + "\u002B7H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Knee strike fractures bone. Very", + "impressive.", + "\u002B7H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Knee strike fractures bone. Very\nimpressive.\n\u002B7H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Knee strike fractures bone. Very impressive.", + "RawAffixText": "\u002B7H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 694, + "Width": 143, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 2776, + "BoundsWidth": 572, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 2744, + "CropWidth": 668, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Great shot to foe\u0027s leg causes him to", + "drop.", + "\u002B20H \u2013 3\u2211 \u2013 3\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Great shot to foe\u0027s leg causes him to", + "drop.", + "\u002B20H \u2013 3\u2211 \u2013 3\u222B \u2013 (-20)" + ], + "RawCellText": "Great shot to foe\u0027s leg causes him to\ndrop.\n\u002B20H \u2013 3\u2211 \u2013 3\u222B \u2013 (-20)", + "DescriptionText": "Great shot to foe\u0027s leg causes him to drop.", + "RawAffixText": "\u002B20H \u2013 3\u2211 \u2013 3\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 694, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 2776, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 2744, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Blast to foe\u0027s leg shatters his knee cap.", + "He will have a bad limp until the major", + "tendon damage is healed.", + "\u002B25H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Blast to foe\u0027s leg shatters his knee cap.", + "He will have a bad limp until the major", + "tendon damage is healed.", + "\u002B25H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-30)" + ], + "RawCellText": "Blast to foe\u0027s leg shatters his knee cap.\nHe will have a bad limp until the major\ntendon damage is healed.\n\u002B25H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-30)", + "DescriptionText": "Blast to foe\u0027s leg shatters his knee cap. He will have a bad limp until the major tendon damage is healed.", + "RawAffixText": "\u002B25H \u2013 5\u2211\u220F \u2013 4\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 694, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2776, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 2744, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blast annihilates foe\u0027s leg below the knee.", + "Wow!", + "\u002B35H \u2013 6\u2211\u220F \u2013 8\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Blast annihilates foe\u0027s leg below the knee.", + "Wow!", + "\u002B35H \u2013 6\u2211\u220F \u2013 8\u222B \u2013 (-50)" + ], + "RawCellText": "Blast annihilates foe\u0027s leg below the knee.\nWow!\n\u002B35H \u2013 6\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "DescriptionText": "Blast annihilates foe\u0027s leg below the knee. Wow!", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 8\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 694, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2776, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 2744, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Blast in the gut throws foe", + "backwards 10\u0027.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Blast in the gut throws foe", + "backwards 10\u0027.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Blast in the gut throws foe\nbackwards 10\u0027.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Blast in the gut throws foe backwards 10\u0027.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 746, + "Width": 125, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 2984, + "BoundsWidth": 500, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 2952, + "CropWidth": 596, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Shot in the stomach does minor muscle", + "damage. But the scar looks like a", + "turnip\u2026", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Shot in the stomach does minor muscle", + "damage. But the scar looks like a", + "turnip\u2026", + "\u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Shot in the stomach does minor muscle\ndamage. But the scar looks like a\nturnip\u2026\n\u002B7H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Shot in the stomach does minor muscle damage. But the scar looks like a turnip\u2026", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 746, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 2984, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 2952, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Abdomenal hit causes muscle and organ", + "damage. Foe flies off his feet.", + "\u002B12H \u2013 3\u2211 \u2013 5\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Abdomenal hit causes muscle and organ", + "damage. Foe flies off his feet.", + "\u002B12H \u2013 3\u2211 \u2013 5\u222B \u2013 (-20)" + ], + "RawCellText": "Abdomenal hit causes muscle and organ\ndamage. Foe flies off his feet.\n\u002B12H \u2013 3\u2211 \u2013 5\u222B \u2013 (-20)", + "DescriptionText": "Abdomenal hit causes muscle and organ damage. Foe flies off his feet.", + "RawAffixText": "\u002B12H \u2013 3\u2211 \u2013 5\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 746, + "Width": 146, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 2984, + "BoundsWidth": 584, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 2952, + "CropWidth": 680, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Lower abdominal shot causes much", + "internal damage to internal organs.", + "\u002B12H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Lower abdominal shot causes much", + "internal damage to internal organs.", + "\u002B12H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)" + ], + "RawCellText": "Lower abdominal shot causes much\ninternal damage to internal organs.\n\u002B12H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "DescriptionText": "Lower abdominal shot causes much internal damage to internal organs.", + "RawAffixText": "\u002B12H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 7, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 746, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2984, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 2952, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Blast rips out foe\u0027s kidney. Who needs a", + "surgeon.", + "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Blast rips out foe\u0027s kidney. Who needs a", + "surgeon.", + "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "RawCellText": "Blast rips out foe\u0027s kidney. Who needs a\nsurgeon.\n\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "DescriptionText": "Blast rips out foe\u0027s kidney. Who needs a surgeon.", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 746, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2984, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 2952, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blast in foe\u0027s side leaves a mass of", + "flesh dangling. Surprising, it only", + "leaves a small scar.", + "\u002B8H \u2013 3\u03C0 \u2013 \u222B \u2013 (-10)" + ], + "BaseLines": [ + "Blast in foe\u0027s side leaves a mass of", + "flesh dangling. Surprising, it only", + "leaves a small scar.", + "\u002B8H \u2013 3\u03C0 \u2013 \u222B \u2013 (-10)" + ], + "RawCellText": "Blast in foe\u0027s side leaves a mass of\nflesh dangling. Surprising, it only\nleaves a small scar.\n\u002B8H \u2013 3\u03C0 \u2013 \u222B \u2013 (-10)", + "DescriptionText": "Blast in foe\u0027s side leaves a mass of flesh dangling. Surprising, it only leaves a small scar.", + "RawAffixText": "\u002B8H \u2013 3\u03C0 \u2013 \u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 798, + "Width": 126, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 3192, + "BoundsWidth": 504, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 3160, + "CropWidth": 600, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Shrapnel finds a home in foe\u0027s side,", + "breaking a few ribs in the process.", + "\u002B12H \u2013 3\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Shrapnel finds a home in foe\u0027s side,", + "breaking a few ribs in the process.", + "\u002B12H \u2013 3\u2211 \u2013 (-10)" + ], + "RawCellText": "Shrapnel finds a home in foe\u0027s side,\nbreaking a few ribs in the process.\n\u002B12H \u2013 3\u2211 \u2013 (-10)", + "DescriptionText": "Shrapnel finds a home in foe\u0027s side, breaking a few ribs in the process.", + "RawAffixText": "\u002B12H \u2013 3\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 798, + "Width": 143, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 3192, + "BoundsWidth": 572, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 3160, + "CropWidth": 668, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Solid shot to foe\u0027s ribs is followed by the", + "sound of breaking bone. There is also", + "major muscle and tendon damage.", + "\u002B20H \u2013 4\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Solid shot to foe\u0027s ribs is followed by the", + "sound of breaking bone. There is also", + "major muscle and tendon damage.", + "\u002B20H \u2013 4\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Solid shot to foe\u0027s ribs is followed by the\nsound of breaking bone. There is also\nmajor muscle and tendon damage.\n\u002B20H \u2013 4\u2211\u220F \u2013 (-20)", + "DescriptionText": "Solid shot to foe\u0027s ribs is followed by the sound of breaking bone. There is also major muscle and tendon damage.", + "RawAffixText": "\u002B20H \u2013 4\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 798, + "Width": 147, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 3192, + "BoundsWidth": 588, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 3160, + "CropWidth": 684, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Shrapnel breaks ribs and lodges inside", + "foe. The bleeding just won\u0027t seem to", + "stop! Get a medic.", + "\u002B35H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Shrapnel breaks ribs and lodges inside", + "foe. The bleeding just won\u0027t seem to", + "stop! Get a medic.", + "\u002B35H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)" + ], + "RawCellText": "Shrapnel breaks ribs and lodges inside\nfoe. The bleeding just won\u0027t seem to\nstop! Get a medic.\n\u002B35H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "DescriptionText": "Shrapnel breaks ribs and lodges inside foe. The bleeding just won\u0027t seem to stop! Get a medic.", + "RawAffixText": "\u002B35H \u2013 4\u2211\u220F \u2013 7\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 7, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 798, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3192, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 3160, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Gut shot rips out several organs. Find a", + "donor, quickly.", + "\u002B35H \u2013 6\u2211\u220F \u2013 15\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Gut shot rips out several organs. Find a", + "donor, quickly.", + "\u002B35H \u2013 6\u2211\u220F \u2013 15\u222B \u2013 (-40)" + ], + "RawCellText": "Gut shot rips out several organs. Find a\ndonor, quickly.\n\u002B35H \u2013 6\u2211\u220F \u2013 15\u222B \u2013 (-40)", + "DescriptionText": "Gut shot rips out several organs. Find a donor, quickly.", + "RawAffixText": "\u002B35H \u2013 6\u2211\u220F \u2013 15\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 15, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 798, + "Width": 150, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3192, + "BoundsWidth": 600, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 3160, + "CropWidth": 696, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Impressive shot right in the", + "abdomen knocks foe backwards.", + "\u002B10H \u2013 3\u2211 \u2013 2\u220F- 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Impressive shot right in the", + "abdomen knocks foe backwards.", + "\u002B10H \u2013 3\u2211 \u2013 2\u220F- 2\u222B \u2013 (-10)" + ], + "RawCellText": "Impressive shot right in the\nabdomen knocks foe backwards.\n\u002B10H \u2013 3\u2211 \u2013 2\u220F- 2\u222B \u2013 (-10)", + "DescriptionText": "Impressive shot right in the abdomen knocks foe backwards.", + "RawAffixText": "\u002B10H \u2013 3\u2211 \u2013 2\u220F- 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 850, + "Width": 125, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 3400, + "BoundsWidth": 500, + "BoundsHeight": 224, + "CropLeft": 532, + "CropTop": 3368, + "CropWidth": 596, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Blast rips into foe\u0027s gut and causes", + "major damage to everything it finds", + "there.", + "\u002B15H \u2013 4\u2211 \u2013 5\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Blast rips into foe\u0027s gut and causes", + "major damage to everything it finds", + "there.", + "\u002B15H \u2013 4\u2211 \u2013 5\u222B \u2013 (-20)" + ], + "RawCellText": "Blast rips into foe\u0027s gut and causes\nmajor damage to everything it finds\nthere.\n\u002B15H \u2013 4\u2211 \u2013 5\u222B \u2013 (-20)", + "DescriptionText": "Blast rips into foe\u0027s gut and causes major damage to everything it finds there.", + "RawAffixText": "\u002B15H \u2013 4\u2211 \u2013 5\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 850, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 3400, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 1068, + "CropTop": 3368, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Upper abdominal hit damages internal", + "organs and muscles.", + "\u002B14H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Upper abdominal hit damages internal", + "organs and muscles.", + "\u002B14H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "RawCellText": "Upper abdominal hit damages internal\norgans and muscles.\n\u002B14H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "DescriptionText": "Upper abdominal hit damages internal organs and muscles.", + "RawAffixText": "\u002B14H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 850, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 3400, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 1676, + "CropTop": 3368, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Blast in the gut leaves a gaping hole.", + "Amazing, foe is still standing!", + "\u002B25H \u2013 6\u2211\u220F \u2013 9\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Blast in the gut leaves a gaping hole.", + "Amazing, foe is still standing!", + "\u002B25H \u2013 6\u2211\u220F \u2013 9\u222B \u2013 (-30)" + ], + "RawCellText": "Blast in the gut leaves a gaping hole.\nAmazing, foe is still standing!\n\u002B25H \u2013 6\u2211\u220F \u2013 9\u222B \u2013 (-30)", + "DescriptionText": "Blast in the gut leaves a gaping hole. Amazing, foe is still standing!", + "RawAffixText": "\u002B25H \u2013 6\u2211\u220F \u2013 9\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 9, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 850, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3400, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 2288, + "CropTop": 3368, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Shrapnel passes clean through foe\u0027s", + "abdomen and lodges in his spine. Foe is", + "paralyzed until it is removed, and then still", + "suffers a -30 penalty to all maneuvers.", + "\u002B35 H \u2013 6\u222B" + ], + "BaseLines": [ + "Shrapnel passes clean through foe\u0027s", + "abdomen and lodges in his spine. Foe is", + "paralyzed until it is removed, and then still", + "suffers a -30 penalty to all maneuvers.", + "\u002B35 H \u2013 6\u222B" + ], + "RawCellText": "Shrapnel passes clean through foe\u0027s\nabdomen and lodges in his spine. Foe is\nparalyzed until it is removed, and then still\nsuffers a -30 penalty to all maneuvers.\n\u002B35 H \u2013 6\u222B", + "DescriptionText": "Shrapnel passes clean through foe\u0027s abdomen and lodges in his spine. Foe is paralyzed until it is removed, and then still suffers a -30 penalty to all maneuvers.", + "RawAffixText": "\u002B35 H \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35 H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 850, + "Width": 152, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3400, + "BoundsWidth": 608, + "BoundsHeight": 224, + "CropLeft": 2900, + "CropTop": 3368, + "CropWidth": 704, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Chest strike rips all of foe\u0027s buttons", + "off his shirt.", + "\u002B12H \u2013 3\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Chest strike rips all of foe\u0027s buttons", + "off his shirt.", + "\u002B12H \u2013 3\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "Chest strike rips all of foe\u0027s buttons\noff his shirt.\n\u002B12H \u2013 3\u2211 \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "Chest strike rips all of foe\u0027s buttons off his shirt.", + "RawAffixText": "\u002B12H \u2013 3\u2211 \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 913, + "Width": 128, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 3652, + "BoundsWidth": 512, + "BoundsHeight": 180, + "CropLeft": 532, + "CropTop": 3620, + "CropWidth": 608, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Blast in the chest breaks ribs and tears", + "muscles and tendons. Get a new shirt.", + "\u002B15H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Blast in the chest breaks ribs and tears", + "muscles and tendons. Get a new shirt.", + "\u002B15H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Blast in the chest breaks ribs and tears\nmuscles and tendons. Get a new shirt.\n\u002B15H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Blast in the chest breaks ribs and tears muscles and tendons. Get a new shirt.", + "RawAffixText": "\u002B15H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 913, + "Width": 144, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 3652, + "BoundsWidth": 576, + "BoundsHeight": 180, + "CropLeft": 1068, + "CropTop": 3620, + "CropWidth": 672, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Foe is wheezing as blast perforates a", + "lung.", + "\u002B25H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Foe is wheezing as blast perforates a", + "lung.", + "\u002B25H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "RawCellText": "Foe is wheezing as blast perforates a\nlung.\n\u002B25H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "DescriptionText": "Foe is wheezing as blast perforates a lung.", + "RawAffixText": "\u002B25H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 913, + "Width": 144, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 3652, + "BoundsWidth": 576, + "BoundsHeight": 180, + "CropLeft": 1676, + "CropTop": 3620, + "CropWidth": 672, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Shrapnel lodges near foe\u0027s heart.", + "Sternum is shattered.", + "\u002B25H \u2013 4\u2211\u220F \u2013 8\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Shrapnel lodges near foe\u0027s heart.", + "Sternum is shattered.", + "\u002B25H \u2013 4\u2211\u220F \u2013 8\u222B \u2013 (-30)" + ], + "RawCellText": "Shrapnel lodges near foe\u0027s heart.\nSternum is shattered.\n\u002B25H \u2013 4\u2211\u220F \u2013 8\u222B \u2013 (-30)", + "DescriptionText": "Shrapnel lodges near foe\u0027s heart. Sternum is shattered.", + "RawAffixText": "\u002B25H \u2013 4\u2211\u220F \u2013 8\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 913, + "Width": 144, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3652, + "BoundsWidth": 576, + "BoundsHeight": 180, + "CropLeft": 2288, + "CropTop": 3620, + "CropWidth": 672, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Blast through foe\u0027s chest and destroy his", + "heart. Foe flies 20\u0027 and everyone is", + "stunned for two rounds.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast through foe\u0027s chest and destroy his", + "heart. Foe flies 20\u0027 and everyone is", + "stunned for two rounds.", + "(\u002B20)" + ], + "RawCellText": "Blast through foe\u0027s chest and destroy his\nheart. Foe flies 20\u0027 and everyone is\nstunned for two rounds.\n(\u002B20)", + "DescriptionText": "Blast through foe\u0027s chest and destroy his heart. Foe flies 20\u0027 and everyone is stunned for two rounds.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 913, + "Width": 151, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3652, + "BoundsWidth": 604, + "BoundsHeight": 180, + "CropLeft": 2900, + "CropTop": 3620, + "CropWidth": 700, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Blast to foe\u0027s head rips off one ear.", + "Foe hears at -30.", + "\u002B8H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Blast to foe\u0027s head rips off one ear.", + "Foe hears at -30.", + "\u002B8H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Blast to foe\u0027s head rips off one ear.\nFoe hears at -30.\n\u002B8H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Blast to foe\u0027s head rips off one ear. Foe hears at -30.", + "RawAffixText": "\u002B8H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 965, + "Width": 126, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 3860, + "BoundsWidth": 504, + "BoundsHeight": 180, + "CropLeft": 532, + "CropTop": 3828, + "CropWidth": 600, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Shrapnel strikes foe\u0027s head. Luckily he", + "has a mighty skull and only loses his", + "hair.", + "\u002B8H \u2013 3\u2211 \u2013 \u222B \u2013 (-5)" + ], + "BaseLines": [ + "Shrapnel strikes foe\u0027s head. Luckily he", + "has a mighty skull and only loses his", + "hair.", + "\u002B8H \u2013 3\u2211 \u2013 \u222B \u2013 (-5)" + ], + "RawCellText": "Shrapnel strikes foe\u0027s head. Luckily he\nhas a mighty skull and only loses his\nhair.\n\u002B8H \u2013 3\u2211 \u2013 \u222B \u2013 (-5)", + "DescriptionText": "Shrapnel strikes foe\u0027s head. Luckily he has a mighty skull and only loses his hair.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 \u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 965, + "Width": 143, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 3860, + "BoundsWidth": 572, + "BoundsHeight": 180, + "CropLeft": 1068, + "CropTop": 3828, + "CropWidth": 668, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Shrapnel to side of foe\u0027s head. He can no", + "longer hear or see from that side of the", + "head.", + "\u002B15H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Shrapnel to side of foe\u0027s head. He can no", + "longer hear or see from that side of the", + "head.", + "\u002B15H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "RawCellText": "Shrapnel to side of foe\u0027s head. He can no\nlonger hear or see from that side of the\nhead.\n\u002B15H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "DescriptionText": "Shrapnel to side of foe\u0027s head. He can no longer hear or see from that side of the head.", + "RawAffixText": "\u002B15H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 965, + "Width": 147, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 3860, + "BoundsWidth": 588, + "BoundsHeight": 180, + "CropLeft": 1676, + "CropTop": 3828, + "CropWidth": 684, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Blast cracks foe\u0027s skull. He is in a coma", + "for 3 weeks then awakens with amnesia", + "(and a headache).", + "\u002B40H \u2013 10\u222B" + ], + "BaseLines": [ + "Blast cracks foe\u0027s skull. He is in a coma", + "for 3 weeks then awakens with amnesia", + "(and a headache).", + "\u002B40H \u2013 10\u222B" + ], + "RawCellText": "Blast cracks foe\u0027s skull. He is in a coma\nfor 3 weeks then awakens with amnesia\n(and a headache).\n\u002B40H \u2013 10\u222B", + "DescriptionText": "Blast cracks foe\u0027s skull. He is in a coma for 3 weeks then awakens with amnesia (and a headache).", + "RawAffixText": "\u002B40H \u2013 10\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 965, + "Width": 144, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3860, + "BoundsWidth": 576, + "BoundsHeight": 180, + "CropLeft": 2288, + "CropTop": 3828, + "CropWidth": 672, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blast tears off the top of foe\u0027s head. Death", + "is instantaneous.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast tears off the top of foe\u0027s head. Death", + "is instantaneous.", + "(\u002B20)" + ], + "RawCellText": "Blast tears off the top of foe\u0027s head. Death\nis instantaneous.\n(\u002B20)", + "DescriptionText": "Blast tears off the top of foe\u0027s head. Death is instantaneous.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 965, + "Width": 151, + "Height": 45 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3860, + "BoundsWidth": 604, + "BoundsHeight": 180, + "CropLeft": 2900, + "CropTop": 3828, + "CropWidth": 700, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Shrapnel peppers foe\u0027s jaw and", + "leaves several holes. Foe has", + "trouble talking because of damage", + "to the tongue.", + "\u002B12H \u2013 4\u2211\u220F \u2013 (-15)" + ], + "BaseLines": [ + "Shrapnel peppers foe\u0027s jaw and", + "leaves several holes. Foe has", + "trouble talking because of damage", + "to the tongue.", + "\u002B12H \u2013 4\u2211\u220F \u2013 (-15)" + ], + "RawCellText": "Shrapnel peppers foe\u0027s jaw and\nleaves several holes. Foe has\ntrouble talking because of damage\nto the tongue.\n\u002B12H \u2013 4\u2211\u220F \u2013 (-15)", + "DescriptionText": "Shrapnel peppers foe\u0027s jaw and leaves several holes. Foe has trouble talking because of damage to the tongue.", + "RawAffixText": "\u002B12H \u2013 4\u2211\u220F \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 1017, + "Width": 126, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 4068, + "BoundsWidth": 504, + "BoundsHeight": 224, + "CropLeft": 532, + "CropTop": 4036, + "CropWidth": 600, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Blast shatters foe\u0027s jaw. He cannot talk", + "until healed. He suffers a -10 to his", + "temporary Appearance and -5 to his", + "potential Appearance.", + "\u002B11H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Blast shatters foe\u0027s jaw. He cannot talk", + "until healed. He suffers a -10 to his", + "temporary Appearance and -5 to his", + "potential Appearance.", + "\u002B11H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Blast shatters foe\u0027s jaw. He cannot talk\nuntil healed. He suffers a -10 to his\ntemporary Appearance and -5 to his\npotential Appearance.\n\u002B11H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Blast shatters foe\u0027s jaw. He cannot talk until healed. He suffers a -10 to his temporary Appearance and -5 to his potential Appearance.", + "RawAffixText": "\u002B11H \u2013 3\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 1017, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 4068, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 1068, + "CropTop": 4036, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Blast rips through foe\u0027s throat. He is now", + "a mute.", + "\u002B20H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Blast rips through foe\u0027s throat. He is now", + "a mute.", + "\u002B20H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)" + ], + "RawCellText": "Blast rips through foe\u0027s throat. He is now\na mute.\n\u002B20H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "DescriptionText": "Blast rips through foe\u0027s throat. He is now a mute.", + "RawAffixText": "\u002B20H \u2013 4\u2211\u220F \u2013 6\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 1017, + "Width": 148, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 4068, + "BoundsWidth": 592, + "BoundsHeight": 224, + "CropLeft": 1676, + "CropTop": 4036, + "CropWidth": 688, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Shrapnel destroys foe\u0027s neck (and wind", + "pipe). He will probably die before he", + "suffocates.", + "\u002B25H \u2013 5\u2211\u220F \u2013 12\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Shrapnel destroys foe\u0027s neck (and wind", + "pipe). He will probably die before he", + "suffocates.", + "\u002B25H \u2013 5\u2211\u220F \u2013 12\u222B \u2013 (-20)" + ], + "RawCellText": "Shrapnel destroys foe\u0027s neck (and wind\npipe). He will probably die before he\nsuffocates.\n\u002B25H \u2013 5\u2211\u220F \u2013 12\u222B \u2013 (-20)", + "DescriptionText": "Shrapnel destroys foe\u0027s neck (and wind pipe). He will probably die before he suffocates.", + "RawAffixText": "\u002B25H \u2013 5\u2211\u220F \u2013 12\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 12, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 1017, + "Width": 144, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 4068, + "BoundsWidth": 576, + "BoundsHeight": 224, + "CropLeft": 2288, + "CropTop": 4036, + "CropWidth": 672, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Foe is left with nothing on top of his neck.", + "Anyone got a mop?", + "(\u002B20)" + ], + "BaseLines": [ + "Foe is left with nothing on top of his neck.", + "Anyone got a mop?", + "(\u002B20)" + ], + "RawCellText": "Foe is left with nothing on top of his neck.\nAnyone got a mop?\n(\u002B20)", + "DescriptionText": "Foe is left with nothing on top of his neck. Anyone got a mop?", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 1017, + "Width": 151, + "Height": 56 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 4068, + "BoundsWidth": 604, + "BoundsHeight": 224, + "CropLeft": 2900, + "CropTop": 4036, + "CropWidth": 700, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Shrapnel passes through the ear", + "and into the brain. Foe is very dead.", + "(\u002B20)" + ], + "BaseLines": [ + "Shrapnel passes through the ear", + "and into the brain. Foe is very dead.", + "(\u002B20)" + ], + "RawCellText": "Shrapnel passes through the ear\nand into the brain. Foe is very dead.\n(\u002B20)", + "DescriptionText": "Shrapnel passes through the ear and into the brain. Foe is very dead.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 145, + "Top": 1081, + "Width": 126, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 580, + "BoundsTop": 4324, + "BoundsWidth": 504, + "BoundsHeight": 176, + "CropLeft": 532, + "CropTop": 4292, + "CropWidth": 600, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s face is ripped off; right before he", + "dies from shrapnel in the brain.", + "(\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s face is ripped off; right before he", + "dies from shrapnel in the brain.", + "(\u002B20)" + ], + "RawCellText": "Foe\u0027s face is ripped off; right before he\ndies from shrapnel in the brain.\n(\u002B20)", + "DescriptionText": "Foe\u0027s face is ripped off; right before he dies from shrapnel in the brain.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 279, + "Top": 1081, + "Width": 143, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1116, + "BoundsTop": 4324, + "BoundsWidth": 572, + "BoundsHeight": 176, + "CropLeft": 1068, + "CropTop": 4292, + "CropWidth": 668, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s head is opened from the blast. He", + "is quite dead. You have half a round left", + "to act.", + "(\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s head is opened from the blast. He", + "is quite dead. You have half a round left", + "to act.", + "(\u002B20)" + ], + "RawCellText": "Foe\u0027s head is opened from the blast. He\nis quite dead. You have half a round left\nto act.\n(\u002B20)", + "DescriptionText": "Foe\u0027s head is opened from the blast. He is quite dead. You have half a round left to act.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 431, + "Top": 1081, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1724, + "BoundsTop": 4324, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 1676, + "CropTop": 4292, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Strong blast to foe\u0027s head cracks his", + "skull. He is in coma for next two years.", + "(\u002B20)" + ], + "BaseLines": [ + "Strong blast to foe\u0027s head cracks his", + "skull. He is in coma for next two years.", + "(\u002B20)" + ], + "RawCellText": "Strong blast to foe\u0027s head cracks his\nskull. He is in coma for next two years.\n(\u002B20)", + "DescriptionText": "Strong blast to foe\u0027s head cracks his skull. He is in coma for next two years.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 1081, + "Width": 144, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 4324, + "BoundsWidth": 576, + "BoundsHeight": 176, + "CropLeft": 2288, + "CropTop": 4292, + "CropWidth": 672, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Don\u0027t loose your head! Ooops. Too late\u2026", + "(\u002B25)" + ], + "BaseLines": [ + "Don\u0027t loose your head! Ooops. Too late\u2026", + "(\u002B25)" + ], + "RawCellText": "Don\u0027t loose your head! Ooops. Too late\u2026\n(\u002B25)", + "DescriptionText": "Don\u0027t loose your head! Ooops. Too late\u2026", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 1081, + "Width": 151, + "Height": 44 + }, + "SourceImagePath": "ballistic-shrapnel/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 4324, + "BoundsWidth": 604, + "BoundsHeight": 176, + "CropLeft": 2900, + "CropTop": 4292, + "CropWidth": 700, + "CropHeight": 240, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/source.xml b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/source.xml new file mode 100644 index 0000000..39bfde5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/source.xml @@ -0,0 +1,389 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + += +stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +123 + 6.5 Ballistic Shrapnel Critical Strike Table +A +B +C +D +E +Foe's hand is hit! If he is holding an +item, it must immediately check for +breakage. +Foe's hand is hit! If he is holding an +item, it must immediately check for +breakage with a -10 penalty. +Foe's hand is hit! If he is holding an +item, it must immediately check for +breakage with a -20 penalty. +Foe's hand is hit! If he is holding an +item, it must immediately check for +breakage with a -30 penalty. +Foe's hand is hit! If he is holding an item, +it automatically breaks. + +3H + +3H – 2π + +4H – 2π (-10) + +8H – 4∑ – 3∫ – (-20) + +15H – 5∑∏ – (-50) +Forearm strike burns! You gain the +initiative next round. +Strike to foe's lower arm starts to bleed. +His grip may slip! You gain the initiative +next round. +Forearm wound tears muscle and +tendons. If foe is holding an item,it must +check for breakage with a -20 penalty. +Forearm shot tears muscles and +tendons. Foe drops any held items and +they check for breakage. +Incredible blast to foe's arm completely +rips off his hand and lower arm! Foe faints +and is out for 10 rounds. + +5H + +7H – 3π – 2∫ + +8H – 3∑ – 3∫ – (-15) + +10H – 4∑ – 4∫ – (-25) + +15H – 7∑∏ – 8∫ – (-50) +Lots of hot air over foe's arm. +Deep scratches on foe’s biceps cause +minor muscle damage. +Serious gash on upper arm causes +major muscle damage. +Foe's elbow takes the brunt of the blast. +Broken bone and torn tendons are the +price. His arm is useless. +Only dangling flesh is left on foe's arm. It +is completely useless. + +3H – π + +7H – 3π – (-5) + +15H – 4∑ – 2∏ – 4∫ – (-20) + +10H – 4∑ – 2∫ – (-20) + + 25H – 7∑∏ – 4∫ – (-40) +An incredible shot leaves only +minor scratches. +Upper arm strike leaves foe with minor +muscle damage. +Foe's triceps take the blast. He will need +a doctor for that major muscle damage. +Right on the elbow! Blast breaks bone +and tears tendons. Arm useless. +Boned foe’s arm just like a chicken. Arm is +useless. + +4H – 2π + +7H – 2∑ – (-10) + +12H – 3∑∏ – 3∫ – (-25) + +12H – 4∑ – 2∏ — 3∫ – (-20) + + 30H – 6∑∏ – 5∫ – (-60) +Shrapnel grazes foe’s shoulder. +That will leave a mark. +Shoulder hit. Minor muscle damage. The +strips on his uniform are ripped off. +Shrapnel goes through foe’s shoulder, +tearing muscle and tendons. He will feel +that one for a while. +Shrapnel tears muscles tendons on its +way through foe’s shoulder. Nicks a +major artery. +Foe really didn’t need that arm anyway. Foe +is unconscious for six hours. + +5H – 2π + +8H – 3∑ (-10) + +16H – 4∑∏ – 2∫ – (-15) + +18H – 5∑∏ – 6∫ – (-25) + +25H – 10∫ – (-50) +Shrapnel grazes foe’s shoulder, +spinning him around. +Shrapnel glances off clavicle. Foe looks +surprised to still have a head. +Shrapnel breaks collar bone. He will +never wear a tie again! +Shrapnel lodges in the foe’s shoulder. +Surgeon will have to chip away a little +bone to get this one out. +Shrapnel breaks clavicle and destroys +shoulder joint. His arm will hang limp until +healed. + +5H – 2π + +7H – 2∑ – (-10) + +12H – 3∑ – (-15) + +20H – 3∑∏ – (-25) + +30H – 6∑∏ – 3∫ – (-40) +Graze foe’s thigh. Now those nice +pants are ripped. +Thigh wound tears muscle and leaves +foe with a minor limp. +Shrapnel lodged in thigh. Running very +painful. -25 to Moving Maneuvers until +Shrapnel is removed. +Shrapnel tears muscle and tendons in +the thigh. Foe is knocked backward 5 +feet from the blast. +foe’s leg severed at the thigh. Foe falls. +Hope he has a belt handy. + +3H – π + +6 H – 2∑ – (-10) + +8H – 3∑ – 3∫ – (-15) + +16H – 3∑∏ – (-25) + +40H – 4∑∏ – 4∫ – (-40) +Shrapnel grazes foe’s calf and +causes him to stagger. +Several wide cuts on foe's calf, but none +are deep. Unfortunately, the muscles +have minor damage. +Shrapnel goes clean through the back of +foe's lower leg. He is knocked over and +now has muscle and tendon damage. +Shrapnel strikes calf. Broken bones have +ripped through the flesh of the leg. +Foe blown back 15'. When he rises, he +realizes that he now has a ragged stump +below his knee (and he can't stand up). + +4H – π + +8H – 2∑ – 2∫ – (-10) + +15H – 3∑ – 3∫ – (-15) + +25H – 4∑∏ – 3∫ – (-25) + +35H – 6∑∏ – 10∫ – (-75) +Blast near foe's feet causes him to +dance. +Lucky shot on foe's foot takes off all of +his toes! Now his shoe won't fit. +Solid blast to foe's foot. The sound of +breaking bone is very clear. The Several +toes have been lost. +Ouch! Right on the ankle. Bones break +and tendons torn. Foe falls and will have +trouble standing. +Foot bone ain’t connected to the leg bone +no mo’. Blast rips the foot off at the ankle. + +4H – π + +7H – 2∑ – (-10) + +25H – 4∑ – (-25) + +24H – 4∑∏ – (-30) + +35H – 6∑∏ – 4∫ – (-50) +Close shot at foe's hip. Maybe it is +time to start that diet. +Blast strikes solidly on foe's hip. Luckily +his bones are strong and it is only a +minor fracture. +Shrapnel goes deep into foe's hip +(lodging againt the bone). Walking +proves massively painful. +Strong blast to foe's hip fractures his +pelvis. He now has a funny walk. +Blast completely shatters foe's hip. Foe is +thrown back 15'. + +7H – 2π + +10H – 2∑ – (-5) + +25H – 4∏ – (-20) + +30H – 5∑∏ – 4∫ – (-25) + +34H – 7∑∏ – 5∫ -(-50) +Shrapnel imbedded in foe’s +buttocks. He will need a special +pillow just to sit down. +Blast to foe's head! Amazingly, foe's +head is mostly intact. He will just be in a +coma for three days. +Foe forget to duck. He takes shrapnel in +the eyes. Foe spins head over heels +backwards and will die in 10 rounds if +not tended to by a doctor. +Abdomenal blast knocks foe through the +nearest wall. Major internal damage to all +kinds of organs. Hope a doctor is on +hand. +Surprise shot to foe's groin. Foe no longer +needs his "little black book". You are +stunned for 3 rounds in sympathy. He +collapses and won't get up until tomorrow. + +20H – (-15) + +20H – (-40) – (+25) + +10H – 5∑∏ – (-30) – (+25) + +50H – 8∑∏ – 15∫ – (-75) + +50H – 15∑∏ – 15∫ – (-75) +Foe's knee is peppered with +shrapnel. Amazingly, no permanent +damage. +Knee strike fractures bone. Very +impressive. +Great shot to foe's leg causes him to +drop. +Blast to foe's leg shatters his knee cap. +He will have a bad limp until the major +tendon damage is healed. +Blast annihilates foe's leg below the knee. +Wow! + +3H – π + +7H – ∑ – (-10) + +20H – 3∑ – 3∫ – (-20) + +25H – 5∑∏ – 4∫ – (-30) + +35H – 6∑∏ – 8∫ – (-50) +Blast in the gut throws foe +backwards 10'. +Shot in the stomach does minor muscle +damage. But the scar looks like a +turnip… +Abdomenal hit causes muscle and organ +damage. Foe flies off his feet. +Lower abdominal shot causes much +internal damage to internal organs. +Blast rips out foe's kidney. Who needs a +surgeon. + +5H – π + +7H – 2∑ – (-10) + +12H – 3∑ – 5∫ – (-20) + +12H – 4∑∏ – 7∫ – (-20) + +35H – 6∑∏ – 10∫ – (-40) +Blast in foe's side leaves a mass of +flesh dangling. Surprising, it only +leaves a small scar. +Shrapnel finds a home in foe's side, +breaking a few ribs in the process. +Solid shot to foe's ribs is followed by the +sound of breaking bone. There is also +major muscle and tendon damage. +Shrapnel breaks ribs and lodges inside +foe. The bleeding just won't seem to +stop! Get a medic. +Gut shot rips out several organs. Find a +donor, quickly. + +8H – 3π – ∫ – (-10) + +12H – 3∑ – (-10) + +20H – 4∑∏ – (-20) + +35H – 4∑∏ – 7∫ – (-20) + +35H – 6∑∏ – 15∫ – (-40) +Impressive shot right in the +abdomen knocks foe backwards. +Blast rips into foe's gut and causes +major damage to everything it finds +there. +Upper abdominal hit damages internal +organs and muscles. +Blast in the gut leaves a gaping hole. +Amazing, foe is still standing! +Shrapnel passes clean through foe's +abdomen and lodges in his spine. Foe is +paralyzed until it is removed, and then still +suffers a -30 penalty to all maneuvers. + +10H – 3∑ – 2∏- 2∫ – (-10) + +15H – 4∑ – 5∫ – (-20) + +14H – 3∑∏ – 6∫ – (-20) + +25H – 6∑∏ – 9∫ – (-30) + +35 H – 6∫ +Chest strike rips all of foe's buttons +off his shirt. +Blast in the chest breaks ribs and tears +muscles and tendons. Get a new shirt. +Foe is wheezing as blast perforates a +lung. +Shrapnel lodges near foe's heart. +Sternum is shattered. +Blast through foe's chest and destroy his +heart. Foe flies 20' and everyone is +stunned for two rounds. + +12H – 3∑ – 3∫ – (-10) + +15H – 3∑ – ∏ – 3∫ – (-15) + +25H – 4∑∏ – 6∫ – (-25) + +25H – 4∑∏ – 8∫ – (-30) +(+20) +Blast to foe's head rips off one ear. +Foe hears at -30. +Shrapnel strikes foe's head. Luckily he +has a mighty skull and only loses his +hair. +Shrapnel to side of foe’s head. He can no +longer hear or see from that side of the +head. +Blast cracks foe's skull. He is in a coma +for 3 weeks then awakens with amnesia +(and a headache). +Blast tears off the top of foe's head. Death +is instantaneous. + +8H – 3∑∏ – 2∫ – (-10) + +8H – 3∑ – ∫ – (-5) + +15H – 4∑∏ – 6∫ – (-20) + +40H – 10∫ +(+20) +Shrapnel peppers foe’s jaw and +leaves several holes. Foe has +trouble talking because of damage +to the tongue. +Blast shatters foe's jaw. He cannot talk +until healed. He suffers a -10 to his +temporary Appearance and -5 to his +potential Appearance. +Blast rips through foe's throat. He is now +a mute. +Shrapnel destroys foe's neck (and wind +pipe). He will probably die before he +suffocates. +Foe is left with nothing on top of his neck. +Anyone got a mop? + +12H – 4∑∏ – (-15) + +11H – 3∑∏ – 3∫ – (-15) + +20H – 4∑∏ – 6∫ – (-25) + +25H – 5∑∏ – 12∫ – (-20) +(+20) +Shrapnel passes through the ear +and into the brain. Foe is very dead. +Foe's face is ripped off; right before he +dies from shrapnel in the brain. +Foe's head is opened from the blast. He +is quite dead. You have half a round left +to act. +Strong blast to foe's head cracks his +skull. He is in coma for next two years. +Don't loose your head! Ooops. Too late… + (+20) + (+20) + (+20) + (+20) +(+25) +56-60 +01-05 +06-10 +11-15 +16-20 +21-30 +31-40 +41-50 +51-55 +61-65 +66 +67-70 +71-75 +76-80 +81-85 +86-90 +91-95 +96-99 +100 + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ballistic-shrapnel/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__01-05.png new file mode 100644 index 0000000..e0e61ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__06-10.png new file mode 100644 index 0000000..a630de9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__100.png new file mode 100644 index 0000000..2db6ce4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__11-15.png new file mode 100644 index 0000000..d226b97 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__16-20.png new file mode 100644 index 0000000..a7069c1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__21-35.png new file mode 100644 index 0000000..1b1abce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__36-45.png new file mode 100644 index 0000000..a84cbae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__46-50.png new file mode 100644 index 0000000..073e8e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__51-55.png new file mode 100644 index 0000000..d8c10ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__56-60.png new file mode 100644 index 0000000..c50e9eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__61-65.png new file mode 100644 index 0000000..d8c3761 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__66.png new file mode 100644 index 0000000..e95b495 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__67-70.png new file mode 100644 index 0000000..671f665 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__71-75.png new file mode 100644 index 0000000..207eae9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__76-80.png new file mode 100644 index 0000000..eef24c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__81-85.png new file mode 100644 index 0000000..89f44fd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__86-90.png new file mode 100644 index 0000000..9a56c88 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__91-95.png new file mode 100644 index 0000000..51623a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__96-99.png new file mode 100644 index 0000000..ca41ec3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__01-05.png new file mode 100644 index 0000000..4547f26 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__06-10.png new file mode 100644 index 0000000..59bf3c7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__100.png new file mode 100644 index 0000000..0c0faec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__11-15.png new file mode 100644 index 0000000..991e360 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__16-20.png new file mode 100644 index 0000000..7a63852 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__21-35.png new file mode 100644 index 0000000..ef84d1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__36-45.png new file mode 100644 index 0000000..bc4663f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__46-50.png new file mode 100644 index 0000000..988b658 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__51-55.png new file mode 100644 index 0000000..d412b49 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__56-60.png new file mode 100644 index 0000000..84dacd6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__61-65.png new file mode 100644 index 0000000..cd4cbec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__66.png new file mode 100644 index 0000000..6c4ed9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__67-70.png new file mode 100644 index 0000000..6213ad4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__71-75.png new file mode 100644 index 0000000..2017e12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__76-80.png new file mode 100644 index 0000000..7631246 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__81-85.png new file mode 100644 index 0000000..12886d5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__86-90.png new file mode 100644 index 0000000..56d48e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__91-95.png new file mode 100644 index 0000000..b583272 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__96-99.png new file mode 100644 index 0000000..1de6ce3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__01-05.png new file mode 100644 index 0000000..df88190 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__06-10.png new file mode 100644 index 0000000..60f8bdf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__100.png new file mode 100644 index 0000000..bdaf933 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__11-15.png new file mode 100644 index 0000000..a4f2eee Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__16-20.png new file mode 100644 index 0000000..590167b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__21-35.png new file mode 100644 index 0000000..ed062d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__36-45.png new file mode 100644 index 0000000..10e1e8e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__46-50.png new file mode 100644 index 0000000..f4874a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__51-55.png new file mode 100644 index 0000000..f12a137 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__56-60.png new file mode 100644 index 0000000..f0813a2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__61-65.png new file mode 100644 index 0000000..d72d5b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__66.png new file mode 100644 index 0000000..8d9b273 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__67-70.png new file mode 100644 index 0000000..723e159 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__71-75.png new file mode 100644 index 0000000..0f561ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__76-80.png new file mode 100644 index 0000000..833cb12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__81-85.png new file mode 100644 index 0000000..ddfe2b3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__86-90.png new file mode 100644 index 0000000..9e5e173 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__91-95.png new file mode 100644 index 0000000..a5d3902 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__96-99.png new file mode 100644 index 0000000..488ef95 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__01-05.png new file mode 100644 index 0000000..cd12c60 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__06-10.png new file mode 100644 index 0000000..8496851 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__100.png new file mode 100644 index 0000000..03cd442 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__11-15.png new file mode 100644 index 0000000..9a9b621 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__16-20.png new file mode 100644 index 0000000..76a2446 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__21-35.png new file mode 100644 index 0000000..becdd4b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__36-45.png new file mode 100644 index 0000000..c08d649 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__46-50.png new file mode 100644 index 0000000..ca3de1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__51-55.png new file mode 100644 index 0000000..0cee28f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__56-60.png new file mode 100644 index 0000000..9e7902f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__61-65.png new file mode 100644 index 0000000..d9fc186 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__66.png new file mode 100644 index 0000000..4ee3061 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__67-70.png new file mode 100644 index 0000000..fc58699 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__71-75.png new file mode 100644 index 0000000..d27b66d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__76-80.png new file mode 100644 index 0000000..1679bfd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__81-85.png new file mode 100644 index 0000000..4f7e5a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__86-90.png new file mode 100644 index 0000000..9da66c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__91-95.png new file mode 100644 index 0000000..4bcb003 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__96-99.png new file mode 100644 index 0000000..82babc7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__01-05.png new file mode 100644 index 0000000..bad00d8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__06-10.png new file mode 100644 index 0000000..4b4650f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__100.png new file mode 100644 index 0000000..2746012 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__11-15.png new file mode 100644 index 0000000..19e0206 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__16-20.png new file mode 100644 index 0000000..20530bf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__21-35.png new file mode 100644 index 0000000..af4f503 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__36-45.png new file mode 100644 index 0000000..9e3d9f9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__46-50.png new file mode 100644 index 0000000..40af9c3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__51-55.png new file mode 100644 index 0000000..8ef9fad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__56-60.png new file mode 100644 index 0000000..f3d7521 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__61-65.png new file mode 100644 index 0000000..d29f2be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__66.png new file mode 100644 index 0000000..2fa1901 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__67-70.png new file mode 100644 index 0000000..e1d03ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__71-75.png new file mode 100644 index 0000000..cec6e86 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__76-80.png new file mode 100644 index 0000000..d2c10cf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__81-85.png new file mode 100644 index 0000000..0777631 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__86-90.png new file mode 100644 index 0000000..3d47b89 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__91-95.png new file mode 100644 index 0000000..b9ae535 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__96-99.png new file mode 100644 index 0000000..eb967b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/brawling/fragments.json new file mode 100644 index 0000000..7ed607e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/brawling/fragments.json @@ -0,0 +1,3652 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 51, + "Width": 15, + "Height": 13, + "Text": "94", + "Confidence": null, + "CenterX": 58.5 + }, + { + "PageNumber": 1, + "Top": 110, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 80, + "Width": 92, + "Height": 9, + "Text": "Feeble. You\u0027re getting old.", + "Confidence": null, + "CenterX": 126 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 215, + "Width": 67, + "Height": 9, + "Text": "Maybe next time....", + "Confidence": null, + "CenterX": 248.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 366, + "Width": 53, + "Height": 9, + "Text": "Barely made it.", + "Confidence": null, + "CenterX": 392.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 516, + "Width": 43, + "Height": 9, + "Text": "Great move.", + "Confidence": null, + "CenterX": 537.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 667, + "Width": 147, + "Height": 9, + "Text": "Light blow, but foe\u0027s thinks it\u0027s your best.", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 344, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 495, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 646, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 802, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 80, + "Width": 80, + "Height": 9, + "Text": "You hit foe\u0027s forehead.", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 215, + "Width": 59, + "Height": 9, + "Text": "A glancing blow.", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 366, + "Width": 75, + "Height": 9, + "Text": "You pull at foe\u0027s hair.", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 516, + "Width": 119, + "Height": 9, + "Text": "You gain the initiative next round.", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 667, + "Width": 121, + "Height": 9, + "Text": "Things just failed to connect right.", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 344, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 495, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 646, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 786, + "Width": 30, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 33, + "Width": 37, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 51.5 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 80, + "Width": 107, + "Height": 9, + "Text": "Push foe with the punch. You", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 80, + "Width": 102, + "Height": 9, + "Text": "receive initiative next round.", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 215, + "Width": 116, + "Height": 9, + "Text": "Deflected blow, but you gain the", + "Confidence": null, + "CenterX": 273 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 215, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 366, + "Width": 116, + "Height": 9, + "Text": "You move quickly after blocking", + "Confidence": null, + "CenterX": 424 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 366, + "Width": 145, + "Height": 9, + "Text": "punch.You gain the initiative next round.", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 516, + "Width": 125, + "Height": 9, + "Text": "Use your body like a broom. Foe is", + "Confidence": null, + "CenterX": 578.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 516, + "Width": 43, + "Height": 9, + "Text": "unbalanced.", + "Confidence": null, + "CenterX": 537.5 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 667, + "Width": 136, + "Height": 9, + "Text": "You block foe\u0027s forearm. You gain the", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 667, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 703 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 344, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 495, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 630, + "Width": 30, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 786, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 233, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 80, + "Width": 115, + "Height": 9, + "Text": "Foe steps aside unbalanced.You", + "Confidence": null, + "CenterX": 137.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 80, + "Width": 103, + "Height": 9, + "Text": "gain the initiative next round.", + "Confidence": null, + "CenterX": 131.5 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "Your backhand is powerful. Strike foe", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 215, + "Width": 125, + "Height": 9, + "Text": "across his face.You unbalance him.", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 366, + "Width": 139, + "Height": 9, + "Text": "Step into foe to knock him down. Bash", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 366, + "Width": 81, + "Height": 9, + "Text": "to side unbalances foe.", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 516, + "Width": 136, + "Height": 9, + "Text": "Elbow to foe\u0027s side sends him reeling.", + "Confidence": null, + "CenterX": 584 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 516, + "Width": 108, + "Height": 9, + "Text": "Your follow-up swing misses.", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 667, + "Width": 133, + "Height": 9, + "Text": "Duck in close and hammer foe\u0027s side.", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 667, + "Width": 119, + "Height": 9, + "Text": "You gain the initiative next round.", + "Confidence": null, + "CenterX": 726.5 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 327, + "Width": 30, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 479, + "Width": 30, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 625, + "Width": 35, + "Height": 9, + "Text": "\u002B4H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 784, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 80, + "Width": 109, + "Height": 9, + "Text": "Good placement. You gain the", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "initiative for the next two rounds.", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 215, + "Width": 145, + "Height": 9, + "Text": "Push foe back and kick his leg. You gain", + "Confidence": null, + "CenterX": 287.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 215, + "Width": 85, + "Height": 9, + "Text": "the initiative next round.", + "Confidence": null, + "CenterX": 257.5 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 366, + "Width": 135, + "Height": 9, + "Text": "You try to sweep your foe off his feet.", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 516, + "Width": 134, + "Height": 9, + "Text": "You trip foe. He shuffles a full 15 feet", + "Confidence": null, + "CenterX": 583 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 516, + "Width": 95, + "Height": 9, + "Text": "before he gets his balance.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 667, + "Width": 148, + "Height": 9, + "Text": "Cheap shot to foe\u0027s side bruises ribs. Foe", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 667, + "Width": 121, + "Height": 9, + "Text": "crashes into the nearest obstacle.", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 327, + "Width": 30, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 450, + "Width": 59, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 612, + "Width": 48, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 \u03C0", + "Confidence": null, + "CenterX": 636 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 753, + "Width": 64, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211 \u2013 4(-20)", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 80, + "Width": 104, + "Height": 9, + "Text": "Slight abrasion. You gain the", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "initiative for the next two rounds.", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 215, + "Width": 133, + "Height": 9, + "Text": "Leg strike unsteadies foe. You stomp", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 215, + "Width": 118, + "Height": 9, + "Text": "foe\u0027s feet for an extra advantage.", + "Confidence": null, + "CenterX": 274 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 366, + "Width": 126, + "Height": 9, + "Text": "Boot to calf hits hard. You have the", + "Confidence": null, + "CenterX": 429 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 366, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 402 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 516, + "Width": 151, + "Height": 9, + "Text": "You go in low and strike foe in his calf. He", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 516, + "Width": 122, + "Height": 9, + "Text": "stumbles back with a nasty bruise.", + "Confidence": null, + "CenterX": 577 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 667, + "Width": 147, + "Height": 9, + "Text": "Strike to the back of foe\u0027s leg gives you a", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 667, + "Width": 82, + "Height": 9, + "Text": "back attack next round.", + "Confidence": null, + "CenterX": 708 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 327, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 450, + "Width": 59, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 624, + "Width": 37, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 780, + "Width": 37, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "Glancing blow to foe\u0027s back. You", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 80, + "Width": 125, + "Height": 9, + "Text": "gain the initiative for the next three", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 80, + "Width": 27, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 93.5 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 215, + "Width": 125, + "Height": 9, + "Text": "Foe lunges past you and you come", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 215, + "Width": 137, + "Height": 9, + "Text": "down on his back. He realizes his pain.", + "Confidence": null, + "CenterX": 283.5 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 366, + "Width": 136, + "Height": 9, + "Text": "You grab foe and bring your knee into", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 366, + "Width": 139, + "Height": 9, + "Text": "foe\u0027s side. Strike lifts foe up and sends", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 366, + "Width": 42, + "Height": 9, + "Text": "foe reeling.", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 516, + "Width": 141, + "Height": 9, + "Text": "Pull foe off balance and hammer him in", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 516, + "Width": 90, + "Height": 9, + "Text": "the back with a solid fist.", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 667, + "Width": 148, + "Height": 9, + "Text": "You bash foe brutally. Your strike is solid.", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 193, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 326, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 453, + "Width": 56, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 481 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 616, + "Width": 44, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 638 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 771, + "Width": 46, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 794 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 416, + "Left": 80, + "Width": 124, + "Height": 9, + "Text": "Strike lands solid to the chest. Foe", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 80, + "Width": 100, + "Height": 9, + "Text": "leaps back on the defensive.", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 416, + "Left": 215, + "Width": 130, + "Height": 9, + "Text": "You strike foe in his chest. Foe reels.", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 416, + "Left": 366, + "Width": 144, + "Height": 9, + "Text": "Classic grip to foe\u0027s collar garment. You", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 366, + "Width": 132, + "Height": 9, + "Text": "punch him hard. He stumbles back 5", + "Confidence": null, + "CenterX": 432 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 366, + "Width": 15, + "Height": 9, + "Text": "feet.", + "Confidence": null, + "CenterX": 373.5 + }, + { + "PageNumber": 1, + "Top": 416, + "Left": 516, + "Width": 131, + "Height": 9, + "Text": "Chest strike causes deep bruise. Foe", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 516, + "Width": 74, + "Height": 9, + "Text": "looks very surprised.", + "Confidence": null, + "CenterX": 553 + }, + { + "PageNumber": 1, + "Top": 416, + "Left": 667, + "Width": 132, + "Height": 9, + "Text": "Chest wound knocks foe down. Your", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 667, + "Width": 141, + "Height": 9, + "Text": "attack puts you in the place he was just", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 667, + "Width": 35, + "Height": 9, + "Text": "standing.", + "Confidence": null, + "CenterX": 684.5 + }, + { + "PageNumber": 1, + "Top": 456, + "Left": 176, + "Width": 30, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 456, + "Left": 326, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 456, + "Left": 473, + "Width": 37, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 456, + "Left": 589, + "Width": 71, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 624.5 + }, + { + "PageNumber": 1, + "Top": 456, + "Left": 768, + "Width": 49, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 80, + "Width": 125, + "Height": 9, + "Text": "Foe kicks out at you and you strike", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 80, + "Width": 69, + "Height": 9, + "Text": "his leg in response.", + "Confidence": null, + "CenterX": 114.5 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 215, + "Width": 144, + "Height": 9, + "Text": "You duck down and strike across at foe.", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 215, + "Width": 119, + "Height": 9, + "Text": "Blow to thigh leaves a bad bruise.", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 366, + "Width": 140, + "Height": 9, + "Text": "Strike to foe\u0027s thigh. Your fist hits hard.", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 516, + "Width": 144, + "Height": 9, + "Text": "Bring your forearm down on foe\u0027s thigh,", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 516, + "Width": 142, + "Height": 9, + "Text": "with most of your weight behind it. You", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 516, + "Width": 106, + "Height": 9, + "Text": "have the initiative next round.", + "Confidence": null, + "CenterX": 569 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 667, + "Width": 126, + "Height": 9, + "Text": "You do not know what a sweep or a", + "Confidence": null, + "CenterX": 730 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 667, + "Width": 140, + "Height": 9, + "Text": "throw is, but this surely seems like one.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 667, + "Width": 99, + "Height": 9, + "Text": "You slam foe to the ground.", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 175, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 321, + "Width": 37, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 339.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 465, + "Width": 44, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 612, + "Width": 49, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 636.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 768, + "Width": 49, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 540, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "Arm strike gives foe a bruised", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 80, + "Width": 73, + "Height": 9, + "Text": "bicep. You are cruel.", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 215, + "Width": 143, + "Height": 9, + "Text": "You block foe\u0027s guard and punch him in", + "Confidence": null, + "CenterX": 286.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 215, + "Width": 107, + "Height": 9, + "Text": "the face. He just stands there.", + "Confidence": null, + "CenterX": 268.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 366, + "Width": 137, + "Height": 9, + "Text": "Catch weapon arm and strike it across", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 366, + "Width": 136, + "Height": 9, + "Text": "your own knee. Foe drops his weapon.", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 516, + "Width": 147, + "Height": 9, + "Text": "Strike to nerve in foe\u0027s upper arm causes", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 516, + "Width": 128, + "Height": 9, + "Text": "him to drop whatever he is carrying.", + "Confidence": null, + "CenterX": 580 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 667, + "Width": 138, + "Height": 9, + "Text": "Strong shoulder strike and a follow-up", + "Confidence": null, + "CenterX": 736 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 667, + "Width": 61, + "Height": 9, + "Text": "strike to the face.", + "Confidence": null, + "CenterX": 697.5 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 158, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 182 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 318, + "Width": 40, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 441, + "Width": 68, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 475 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 588, + "Width": 73, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 624.5 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 768, + "Width": 49, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211\u220F", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 43, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 51.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 80, + "Width": 125, + "Height": 9, + "Text": "Grapple foe\u0027s weapon arm and jerk", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 80, + "Width": 124, + "Height": 9, + "Text": "his weapon free. Foe goes twisting", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 80, + "Width": 111, + "Height": 9, + "Text": "and spinning out of your grasp.", + "Confidence": null, + "CenterX": 135.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 215, + "Width": 134, + "Height": 9, + "Text": "Hammer foe in his kidneys. You know", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 215, + "Width": 140, + "Height": 9, + "Text": "he is in pain. He grips his side and falls", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 215, + "Width": 138, + "Height": 9, + "Text": "down. Finish him, the pain will not last.", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 366, + "Width": 145, + "Height": 9, + "Text": "Nasty strike to foe\u0027s mouth knocks out 2", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 366, + "Width": 140, + "Height": 9, + "Text": "teeth and reduces foe\u0027s appearance, by", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 366, + "Width": 66, + "Height": 9, + "Text": "5, when he smiles.", + "Confidence": null, + "CenterX": 399 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 516, + "Width": 143, + "Height": 9, + "Text": "Drive your finger into foe\u0027s eye, causing", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 516, + "Width": 137, + "Height": 9, + "Text": "blindness. There is a 10% chance that", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 516, + "Width": 96, + "Height": 9, + "Text": "this affliction is permanent.", + "Confidence": null, + "CenterX": 564 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 667, + "Width": 145, + "Height": 9, + "Text": "Face strike is so hard foe\u0027s cheekbone is", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 667, + "Width": 136, + "Height": 9, + "Text": "shattered. The shards mortally wound", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 667, + "Width": 133, + "Height": 9, + "Text": "foe. He dies after 10 rounds of agony.", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 143, + "Width": 64, + "Height": 9, + "Text": "\u002B8H \u2013 6\u2211 \u2013 (-15)", + "Confidence": null, + "CenterX": 175 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 286, + "Width": 73, + "Height": 9, + "Text": "\u002B18H \u2013 3\u2211 \u2013 6(-60)", + "Confidence": null, + "CenterX": 322.5 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 438, + "Width": 71, + "Height": 9, + "Text": "\u002B9H \u2013 6\u2211\u220F \u2013 (-45)", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 615, + "Width": 46, + "Height": 9, + "Text": "\u002B15H \u2013 (-60)", + "Confidence": null, + "CenterX": 638 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 798, + "Width": 19, + "Height": 9, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 80, + "Width": 122, + "Height": 9, + "Text": "Blow to abdomen. Foe bends over", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 80, + "Width": 53, + "Height": 9, + "Text": "and throws up.", + "Confidence": null, + "CenterX": 106.5 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 215, + "Width": 142, + "Height": 9, + "Text": "Blow to foe\u0027s chest. You have mastered", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 215, + "Width": 71, + "Height": 9, + "Text": "the common punch.", + "Confidence": null, + "CenterX": 250.5 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 366, + "Width": 131, + "Height": 9, + "Text": "Strong blow to foe\u0027s forearm causes", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 366, + "Width": 30, + "Height": 9, + "Text": "fracture.", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 516, + "Width": 141, + "Height": 9, + "Text": "Smash foe\u0027s hip. You have the initiative", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 516, + "Width": 40, + "Height": 9, + "Text": "next round.", + "Confidence": null, + "CenterX": 536 + }, + { + "PageNumber": 1, + "Top": 630, + "Left": 667, + "Width": 133, + "Height": 9, + "Text": "Throw foe into a solid object. He falls", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 667, + "Width": 24, + "Height": 9, + "Text": "down.", + "Confidence": null, + "CenterX": 679 + }, + { + "PageNumber": 1, + "Top": 660, + "Left": 163, + "Width": 44, + "Height": 9, + "Text": "\u002B4H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 660, + "Left": 318, + "Width": 40, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 660, + "Left": 461, + "Width": 49, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 660, + "Left": 585, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 623 + }, + { + "PageNumber": 1, + "Top": 660, + "Left": 798, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "Leg strike damages muscle and", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 80, + "Width": 93, + "Height": 9, + "Text": "sends foe stumbling back.", + "Confidence": null, + "CenterX": 126.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 215, + "Width": 134, + "Height": 9, + "Text": "Calf strike delivers a deep bruise. Foe", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 215, + "Width": 134, + "Height": 9, + "Text": "looks down at the damage, forgetting", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 215, + "Width": 40, + "Height": 9, + "Text": "about you.", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 366, + "Width": 142, + "Height": 9, + "Text": "A light punch unbalances foe. A kick to", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 366, + "Width": 127, + "Height": 9, + "Text": "foe\u0027s leg knocks him down. He falls", + "Confidence": null, + "CenterX": 429.5 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 366, + "Width": 68, + "Height": 9, + "Text": "forward under you.", + "Confidence": null, + "CenterX": 400 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 516, + "Width": 137, + "Height": 9, + "Text": "Leg strike causes foe to fall. You push", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 516, + "Width": 145, + "Height": 9, + "Text": "him to hinder his landing and he sprains", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 516, + "Width": 36, + "Height": 9, + "Text": "his ankle.", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 667, + "Width": 144, + "Height": 9, + "Text": "Snap palm into place against foe\u0027s knee.", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 667, + "Width": 138, + "Height": 9, + "Text": "Tendon and cartilage damage. Foe has", + "Confidence": null, + "CenterX": 736 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 667, + "Width": 65, + "Height": 9, + "Text": "difficulty standing.", + "Confidence": null, + "CenterX": 699.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 170, + "Width": 37, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 301, + "Width": 58, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 330 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 437, + "Width": 73, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 592, + "Width": 68, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 748, + "Width": 68, + "Height": 9, + "Text": "\u002B15H \u2013 5\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 782 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 732, + "Left": 80, + "Width": 125, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm. If foe has", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 80, + "Width": 125, + "Height": 9, + "Text": "anything that resembles a shield, it", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 80, + "Width": 35, + "Height": 9, + "Text": "is broken.", + "Confidence": null, + "CenterX": 97.5 + }, + { + "PageNumber": 1, + "Top": 732, + "Left": 215, + "Width": 110, + "Height": 9, + "Text": "You snap foe\u0027s arm around like", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 215, + "Width": 140, + "Height": 9, + "Text": "a noodle. His wrist is strained with the", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 215, + "Width": 26, + "Height": 9, + "Text": "impact.", + "Confidence": null, + "CenterX": 228 + }, + { + "PageNumber": 1, + "Top": 732, + "Left": 366, + "Width": 143, + "Height": 9, + "Text": "Grip foe\u0027s weapon arm and drive his fist", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 366, + "Width": 111, + "Height": 9, + "Text": "against a hard surface. Hand is", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 366, + "Width": 95, + "Height": 9, + "Text": "fractured. Foe is disarmed.", + "Confidence": null, + "CenterX": 413.5 + }, + { + "PageNumber": 1, + "Top": 732, + "Left": 516, + "Width": 120, + "Height": 9, + "Text": "Strong blow to foe\u0027s weapon arm", + "Confidence": null, + "CenterX": 576 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 516, + "Width": 139, + "Height": 9, + "Text": "fractures his wrist. The pain makes his", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 516, + "Width": 48, + "Height": 9, + "Text": "hand useless.", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 732, + "Left": 667, + "Width": 143, + "Height": 9, + "Text": "Fierce blow to foe\u0027s weapon arm breaks", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 667, + "Width": 123, + "Height": 9, + "Text": "bone. Arm is useless. Use arm as", + "Confidence": null, + "CenterX": 728.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 667, + "Width": 131, + "Height": 9, + "Text": "leverage to flip foe onto his stomach.", + "Confidence": null, + "CenterX": 732.5 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 163, + "Width": 44, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 284, + "Width": 75, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 321.5 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 441, + "Width": 68, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 475 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 592, + "Width": 68, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 754, + "Width": 62, + "Height": 9, + "Text": "\u002B18H \u2013 \u222B \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 806, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 80, + "Width": 102, + "Height": 9, + "Text": "Precision strike to foe\u0027s arm", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "disarms him. Weapon hand is", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 80, + "Width": 88, + "Height": 9, + "Text": "fractured. Foe is in pain.", + "Confidence": null, + "CenterX": 124 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 215, + "Width": 142, + "Height": 9, + "Text": "Hand strike jams foe\u0027s fingers into their", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 215, + "Width": 143, + "Height": 9, + "Text": "sockets. Ouch! Foe drops everything in", + "Confidence": null, + "CenterX": 286.5 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 215, + "Width": 36, + "Height": 9, + "Text": "his hands.", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 366, + "Width": 124, + "Height": 9, + "Text": "Strong blow to foe\u0027s arm fractures", + "Confidence": null, + "CenterX": 428 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 366, + "Width": 122, + "Height": 9, + "Text": "shoulder. You hit his shoulder one", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 366, + "Width": 107, + "Height": 9, + "Text": "more time to make your point.", + "Confidence": null, + "CenterX": 419.5 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 516, + "Width": 131, + "Height": 9, + "Text": "Grab foe\u0027s weapon arm and pull him", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 516, + "Width": 139, + "Height": 9, + "Text": "over. Your kick to the ribs finally drops", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 516, + "Width": 66, + "Height": 9, + "Text": "him to the ground.", + "Confidence": null, + "CenterX": 549 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 667, + "Width": 145, + "Height": 9, + "Text": "Shoulder strike breaks foe\u0027s collar bone.", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 667, + "Width": 134, + "Height": 9, + "Text": "Miscellaneous internal organ damage.", + "Confidence": null, + "CenterX": 734 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 136, + "Width": 71, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 171.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 287, + "Width": 71, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211 \u2013 (-15)", + "Confidence": null, + "CenterX": 322.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 434, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 612, + "Width": 49, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 636.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 727, + "Width": 89, + "Height": 9, + "Text": "\u002B18H \u2013 6\u2211\u220F \u2013 \u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "Two brutal punches to foe\u0027s face.", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 857, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "This barrage leaves foe confused", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 867, + "Left": 80, + "Width": 96, + "Height": 9, + "Text": "and swinging in the wrong", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 80, + "Width": 33, + "Height": 9, + "Text": "direction.", + "Confidence": null, + "CenterX": 96.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "Grab foe\u0027s weapon arm and beat on it", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 857, + "Left": 215, + "Width": 140, + "Height": 9, + "Text": "without concern for the rest of foe. Foe", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 867, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "is disarmed as ligaments are torn and", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 215, + "Width": 69, + "Height": 9, + "Text": "muscles are pulled.", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 366, + "Width": 136, + "Height": 9, + "Text": "Accurate chest strike knocks wind out", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 857, + "Left": 366, + "Width": 128, + "Height": 9, + "Text": "of foe. He falls over on you and you", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 867, + "Left": 366, + "Width": 131, + "Height": 9, + "Text": "knock him off with an upper cut. He", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 366, + "Width": 123, + "Height": 9, + "Text": "stand back up and stumbles 5 feet.", + "Confidence": null, + "CenterX": 427.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 516, + "Width": 131, + "Height": 9, + "Text": "Blow to front of foe\u0027s neck. His head", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 857, + "Left": 516, + "Width": 132, + "Height": 9, + "Text": "snaps back, but it does not break his", + "Confidence": null, + "CenterX": 582 + }, + { + "PageNumber": 1, + "Top": 867, + "Left": 516, + "Width": 140, + "Height": 9, + "Text": "neck. Foe cannot speak for 2-20 hours.", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 516, + "Width": 65, + "Height": 9, + "Text": "He yells in silence.", + "Confidence": null, + "CenterX": 548.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 667, + "Width": 134, + "Height": 9, + "Text": "Nasty blow ruptures stomach. Foe is", + "Confidence": null, + "CenterX": 734 + }, + { + "PageNumber": 1, + "Top": 857, + "Left": 667, + "Width": 125, + "Height": 9, + "Text": "knocked down. Internal bleeding is", + "Confidence": null, + "CenterX": 729.5 + }, + { + "PageNumber": 1, + "Top": 867, + "Left": 667, + "Width": 136, + "Height": 9, + "Text": "mortal. Foe will die in 20 rounds. He is", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 667, + "Width": 37, + "Height": 9, + "Text": "still active.", + "Confidence": null, + "CenterX": 685.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 134, + "Width": 73, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 290, + "Width": 68, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 324 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 429, + "Width": 80, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 469 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 619, + "Width": 41, + "Height": 9, + "Text": "\u002B18H \u2013 6\u2211", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 735, + "Width": 82, + "Height": 9, + "Text": "\u002B20H \u2013 \u2211\u2013 10\u222B \u2013(-50)", + "Confidence": null, + "CenterX": 776 + }, + { + "PageNumber": 1, + "Top": 929, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "Head strike breaks foe\u0027s nose.", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "Appearance drops by 5 due to", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 80, + "Width": 39, + "Height": 9, + "Text": "black eyes.", + "Confidence": null, + "CenterX": 99.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 215, + "Width": 136, + "Height": 9, + "Text": "Land a solid shot to foe\u0027s head. Foe is", + "Confidence": null, + "CenterX": 283 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "definitely impressed. He steps toward", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 215, + "Width": 86, + "Height": 9, + "Text": "you to keep from falling.", + "Confidence": null, + "CenterX": 258 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 366, + "Width": 144, + "Height": 9, + "Text": "Precision strike to foe\u0027s head sends him", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 366, + "Width": 140, + "Height": 9, + "Text": "to the ground. You can actually see the", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 366, + "Width": 112, + "Height": 9, + "Text": "stars spinning around his head.", + "Confidence": null, + "CenterX": 422 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 516, + "Width": 130, + "Height": 9, + "Text": "Strong blow to face cracks jawbone.", + "Confidence": null, + "CenterX": 581 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 516, + "Width": 141, + "Height": 9, + "Text": "Ow! Jaw is stuck open and foe appears", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 516, + "Width": 144, + "Height": 9, + "Text": "permanently surprised about something.", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 667, + "Width": 141, + "Height": 9, + "Text": "Blow to foe\u0027s side. Bruise ribs, a kidney", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 667, + "Width": 126, + "Height": 9, + "Text": "and a lung. Foe manages to remain", + "Confidence": null, + "CenterX": 730 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 667, + "Width": 116, + "Height": 9, + "Text": "standing. Oh that hurts ya know!", + "Confidence": null, + "CenterX": 725 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 131, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 169 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 283, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 8\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 434, + "Width": 76, + "Height": 9, + "Text": "\u002B15H \u2013 9\u2211\u220F \u2013 (-35)", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 564, + "Width": 97, + "Height": 9, + "Text": "\u002B20H \u2013 9\u2211 \u2013 (-30) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 612.5 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 741, + "Width": 76, + "Height": 9, + "Text": "\u002B25H \u2013 6\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 779 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 33, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 80, + "Width": 123, + "Height": 9, + "Text": "Blow to solar plexus causes foe to", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 80, + "Width": 123, + "Height": 9, + "Text": "vomit. He falls to his knees. Foe is", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 80, + "Width": 127, + "Height": 9, + "Text": "unable to do anything but retch. Do", + "Confidence": null, + "CenterX": 143.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 80, + "Width": 51, + "Height": 9, + "Text": "you have pity?", + "Confidence": null, + "CenterX": 105.5 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 215, + "Width": 145, + "Height": 9, + "Text": "Groin strike is solid. You kick him again.", + "Confidence": null, + "CenterX": 287.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "Your strike leaves foe helpless. Really", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 215, + "Width": 26, + "Height": 9, + "Text": "unkind.", + "Confidence": null, + "CenterX": 228 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 366, + "Width": 140, + "Height": 9, + "Text": "Strike foe in his head. If he has a helm,", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 366, + "Width": 137, + "Height": 9, + "Text": "you pull it off and hit him with it. He is", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 366, + "Width": 136, + "Height": 9, + "Text": "knocked out for 4 hours. If foe has no", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 366, + "Width": 136, + "Height": 9, + "Text": "helm, you knock him out for 5 rounds.", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 516, + "Width": 130, + "Height": 9, + "Text": "Strong blow to the abdomen causes", + "Confidence": null, + "CenterX": 581 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 516, + "Width": 146, + "Height": 9, + "Text": "internal bleeding and organ damage. Foe", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 516, + "Width": 118, + "Height": 9, + "Text": "makes it a habit of spitting blood.", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 667, + "Width": 146, + "Height": 9, + "Text": "Grip foe\u0027s neck. You shake him violently,", + "Confidence": null, + "CenterX": 740 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 667, + "Width": 150, + "Height": 9, + "Text": "while attempting to choke him. He passes", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 667, + "Width": 126, + "Height": 9, + "Text": "out. You can finish him if you want.", + "Confidence": null, + "CenterX": 730 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 188, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 305, + "Width": 53, + "Height": 9, + "Text": "\u002B18H \u2013 12\u2211\u220F", + "Confidence": null, + "CenterX": 331.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 491, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 628, + "Width": 33, + "Height": 9, + "Text": "\u002B25H \u2013 \u222B", + "Confidence": null, + "CenterX": 644.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 745, + "Width": 71, + "Height": 9, + "Text": "\u002B30 hits \u2013 \u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 780.5 + }, + { + "PageNumber": 1, + "Top": 1058, + "Left": 38, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 50.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "Elbow foe\u0027s face and then punch", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 80, + "Width": 124, + "Height": 9, + "Text": "him hard. He is paralyzed from the", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 80, + "Width": 109, + "Height": 9, + "Text": "neck down for 2 days. He falls", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 80, + "Width": 82, + "Height": 9, + "Text": "instantly to the ground.", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 215, + "Width": 139, + "Height": 9, + "Text": "Strike to foe\u0027s head. If he has no helm,", + "Confidence": null, + "CenterX": 284.5 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 215, + "Width": 114, + "Height": 9, + "Text": "he is in a coma for 10-100 days.", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 215, + "Width": 146, + "Height": 9, + "Text": "If foe has a helm it leaves a bruise on his", + "Confidence": null, + "CenterX": 288 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 215, + "Width": 132, + "Height": 9, + "Text": "head. Foe drops and is unconscious.", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 366, + "Width": 132, + "Height": 9, + "Text": "Mighty strike crashes into foe\u0027s head.", + "Confidence": null, + "CenterX": 432 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 366, + "Width": 131, + "Height": 9, + "Text": "If he has a helmet, he is unconscious", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 366, + "Width": 143, + "Height": 9, + "Text": "for 1-10 days. If he has no helmet, skull", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 366, + "Width": 100, + "Height": 9, + "Text": "collapses and brain is dead.", + "Confidence": null, + "CenterX": 416 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 516, + "Width": 145, + "Height": 9, + "Text": "Grip foe\u0027s arm and pound on foe\u0027s head.", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 516, + "Width": 135, + "Height": 9, + "Text": "One shot hits hard. Crushing strike to", + "Confidence": null, + "CenterX": 583.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 516, + "Width": 112, + "Height": 9, + "Text": "foe\u0027s temple. Foe dies instantly.", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 667, + "Width": 132, + "Height": 9, + "Text": "Your strike is frightening. Foe\u0027s head", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 667, + "Width": 150, + "Height": 9, + "Text": "snaps to one side. Foe cannot breathe. He", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 667, + "Width": 140, + "Height": 9, + "Text": "looks upon the world one last time and", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 667, + "Width": 142, + "Height": 9, + "Text": "then dies. You are horrified at his doom.", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 188, + "Width": 19, + "Height": 9, + "Text": "\u002B13H", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 339, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 477, + "Width": 33, + "Height": 9, + "Text": "\u002B25H \u2013 \u222B", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 47, + "Left": 215, + "Width": 409, + "Height": 14, + "Text": "4.1 Brawling critical strike table", + "Confidence": null, + "CenterX": 419.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 138, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 279, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 430, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 579, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 739, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 744.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/brawling/pages/page-001.png new file mode 100644 index 0000000..b06fd17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/brawling/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/brawling/parsed-cells.json new file mode 100644 index 0000000..9a468ad --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/brawling/parsed-cells.json @@ -0,0 +1,7261 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Feeble. You\u0027re getting old.", + "\u002B0H" + ], + "BaseLines": [ + "Feeble. You\u0027re getting old.", + "\u002B0H" + ], + "RawCellText": "Feeble. You\u0027re getting old.\n\u002B0H", + "DescriptionText": "Feeble. You\u0027re getting old.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 104, + "Width": 127, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 416, + "BoundsWidth": 508, + "BoundsHeight": 112, + "CropLeft": 272, + "CropTop": 384, + "CropWidth": 604, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Maybe next time....", + "\u002B0H" + ], + "BaseLines": [ + "Maybe next time....", + "\u002B0H" + ], + "RawCellText": "Maybe next time....\n\u002B0H", + "DescriptionText": "Maybe next time....", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 104, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 416, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 812, + "CropTop": 384, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Barely made it.", + "\u002B1H" + ], + "BaseLines": [ + "Barely made it.", + "\u002B1H" + ], + "RawCellText": "Barely made it.\n\u002B1H", + "DescriptionText": "Barely made it.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 104, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 416, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 1416, + "CropTop": 384, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Great move.", + "\u002B2H" + ], + "BaseLines": [ + "Great move.", + "\u002B2H" + ], + "RawCellText": "Great move.\n\u002B2H", + "DescriptionText": "Great move.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 104, + "Width": 144, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 416, + "BoundsWidth": 576, + "BoundsHeight": 112, + "CropLeft": 2016, + "CropTop": 384, + "CropWidth": 672, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Light blow, but foe\u0027s thinks it\u0027s your best.", + "\u002B2H" + ], + "BaseLines": [ + "Light blow, but foe\u0027s thinks it\u0027s your best.", + "\u002B2H" + ], + "RawCellText": "Light blow, but foe\u0027s thinks it\u0027s your best.\n\u002B2H", + "DescriptionText": "Light blow, but foe\u0027s thinks it\u0027s your best.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 104, + "Width": 149, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 416, + "BoundsWidth": 596, + "BoundsHeight": 112, + "CropLeft": 2620, + "CropTop": 384, + "CropWidth": 692, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "You hit foe\u0027s forehead.", + "\u002B1H" + ], + "BaseLines": [ + "You hit foe\u0027s forehead.", + "\u002B1H" + ], + "RawCellText": "You hit foe\u0027s forehead.\n\u002B1H", + "DescriptionText": "You hit foe\u0027s forehead.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 140, + "Width": 127, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 560, + "BoundsWidth": 508, + "BoundsHeight": 112, + "CropLeft": 272, + "CropTop": 528, + "CropWidth": 604, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "A glancing blow.", + "\u002B1H" + ], + "BaseLines": [ + "A glancing blow.", + "\u002B1H" + ], + "RawCellText": "A glancing blow.\n\u002B1H", + "DescriptionText": "A glancing blow.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 140, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 560, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 812, + "CropTop": 528, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "You pull at foe\u0027s hair.", + "\u002B2H" + ], + "BaseLines": [ + "You pull at foe\u0027s hair.", + "\u002B2H" + ], + "RawCellText": "You pull at foe\u0027s hair.\n\u002B2H", + "DescriptionText": "You pull at foe\u0027s hair.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 140, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 560, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 1416, + "CropTop": 528, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "You gain the initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "You gain the initiative next round.", + "\u002B2H" + ], + "RawCellText": "You gain the initiative next round.\n\u002B2H", + "DescriptionText": "You gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 140, + "Width": 144, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 560, + "BoundsWidth": 576, + "BoundsHeight": 112, + "CropLeft": 2016, + "CropTop": 528, + "CropWidth": 672, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Things just failed to connect right.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Things just failed to connect right.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Things just failed to connect right.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Things just failed to connect right.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 140, + "Width": 149, + "Height": 28 + }, + "SourceImagePath": "brawling/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 560, + "BoundsWidth": 596, + "BoundsHeight": 112, + "CropLeft": 2620, + "CropTop": 528, + "CropWidth": 692, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Push foe with the punch. You", + "receive initiative next round.", + "\u002B1H" + ], + "BaseLines": [ + "Push foe with the punch. You", + "receive initiative next round.", + "\u002B1H" + ], + "RawCellText": "Push foe with the punch. You\nreceive initiative next round.\n\u002B1H", + "DescriptionText": "Push foe with the punch. You receive initiative next round.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 176, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 704, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 672, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Deflected blow, but you gain the", + "initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "Deflected blow, but you gain the", + "initiative next round.", + "\u002B2H" + ], + "RawCellText": "Deflected blow, but you gain the\ninitiative next round.\n\u002B2H", + "DescriptionText": "Deflected blow, but you gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 176, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 704, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 672, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "You move quickly after blocking", + "punch.You gain the initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "You move quickly after blocking", + "punch.You gain the initiative next round.", + "\u002B2H" + ], + "RawCellText": "You move quickly after blocking\npunch.You gain the initiative next round.\n\u002B2H", + "DescriptionText": "You move quickly after blocking punch.You gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 176, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 704, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 672, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Use your body like a broom. Foe is", + "unbalanced.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Use your body like a broom. Foe is", + "unbalanced.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Use your body like a broom. Foe is\nunbalanced.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Use your body like a broom. Foe is unbalanced.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 176, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 704, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 672, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "You block foe\u0027s forearm. You gain the", + "initiative next round.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "You block foe\u0027s forearm. You gain the", + "initiative next round.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "You block foe\u0027s forearm. You gain the\ninitiative next round.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "You block foe\u0027s forearm. You gain the initiative next round.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 176, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 704, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 672, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe steps aside unbalanced.You", + "gain the initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "Foe steps aside unbalanced.You", + "gain the initiative next round.", + "\u002B2H" + ], + "RawCellText": "Foe steps aside unbalanced.You\ngain the initiative next round.\n\u002B2H", + "DescriptionText": "Foe steps aside unbalanced.You gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 221, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 884, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 852, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Your backhand is powerful. Strike foe", + "across his face.You unbalance him.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Your backhand is powerful. Strike foe", + "across his face.You unbalance him.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Your backhand is powerful. Strike foe\nacross his face.You unbalance him.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Your backhand is powerful. Strike foe across his face.You unbalance him.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 221, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 884, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 852, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Step into foe to knock him down. Bash", + "to side unbalances foe.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Step into foe to knock him down. Bash", + "to side unbalances foe.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Step into foe to knock him down. Bash\nto side unbalances foe.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Step into foe to knock him down. Bash to side unbalances foe.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 221, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 884, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 852, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Elbow to foe\u0027s side sends him reeling.", + "Your follow-up swing misses.", + "\u002B4H \u2013 2\u03C0" + ], + "BaseLines": [ + "Elbow to foe\u0027s side sends him reeling.", + "Your follow-up swing misses.", + "\u002B4H \u2013 2\u03C0" + ], + "RawCellText": "Elbow to foe\u0027s side sends him reeling.\nYour follow-up swing misses.\n\u002B4H \u2013 2\u03C0", + "DescriptionText": "Elbow to foe\u0027s side sends him reeling. Your follow-up swing misses.", + "RawAffixText": "\u002B4H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 221, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 884, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 852, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Duck in close and hammer foe\u0027s side.", + "You gain the initiative next round.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Duck in close and hammer foe\u0027s side.", + "You gain the initiative next round.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Duck in close and hammer foe\u0027s side.\nYou gain the initiative next round.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Duck in close and hammer foe\u0027s side. You gain the initiative next round.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 221, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 884, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 852, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Good placement. You gain the", + "initiative for the next two rounds.", + "\u002B3H" + ], + "BaseLines": [ + "Good placement. You gain the", + "initiative for the next two rounds.", + "\u002B3H" + ], + "RawCellText": "Good placement. You gain the\ninitiative for the next two rounds.\n\u002B3H", + "DescriptionText": "Good placement. You gain the initiative for the next two rounds.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 267, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1068, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 1036, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Push foe back and kick his leg. You gain", + "the initiative next round.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Push foe back and kick his leg. You gain", + "the initiative next round.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Push foe back and kick his leg. You gain\nthe initiative next round.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Push foe back and kick his leg. You gain the initiative next round.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 267, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1068, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 1036, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "You try to sweep your foe off his feet.", + "\u002B4H \u2013 \u03C0 \u2013 (\u002B10)" + ], + "BaseLines": [ + "You try to sweep your foe off his feet.", + "\u002B4H \u2013 \u03C0 \u2013 (\u002B10)" + ], + "RawCellText": "You try to sweep your foe off his feet.\n\u002B4H \u2013 \u03C0 \u2013 (\u002B10)", + "DescriptionText": "You try to sweep your foe off his feet.", + "RawAffixText": "\u002B4H \u2013 \u03C0 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 267, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 1068, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 1036, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "You trip foe. He shuffles a full 15 feet", + "before he gets his balance.", + "\u002B5H \u2013 \u2211 \u2013 \u03C0" + ], + "BaseLines": [ + "You trip foe. He shuffles a full 15 feet", + "before he gets his balance.", + "\u002B5H \u2013 \u2211 \u2013 \u03C0" + ], + "RawCellText": "You trip foe. He shuffles a full 15 feet\nbefore he gets his balance.\n\u002B5H \u2013 \u2211 \u2013 \u03C0", + "DescriptionText": "You trip foe. He shuffles a full 15 feet before he gets his balance.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 267, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 1068, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 1036, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Cheap shot to foe\u0027s side bruises ribs. Foe", + "crashes into the nearest obstacle.", + "\u002B8H \u2013 \u2211 \u2013 4(-20)" + ], + "BaseLines": [ + "Cheap shot to foe\u0027s side bruises ribs. Foe", + "crashes into the nearest obstacle.", + "\u002B8H \u2013 \u2211 \u2013 4(-20)" + ], + "RawCellText": "Cheap shot to foe\u0027s side bruises ribs. Foe\ncrashes into the nearest obstacle.\n\u002B8H \u2013 \u2211 \u2013 4(-20)", + "DescriptionText": "Cheap shot to foe\u0027s side bruises ribs. Foe crashes into the nearest obstacle.", + "RawAffixText": "\u002B8H \u2013 \u2211 \u2013 4(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 267, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 1068, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 1036, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Slight abrasion. You gain the", + "initiative for the next two rounds.", + "\u002B4H" + ], + "BaseLines": [ + "Slight abrasion. You gain the", + "initiative for the next two rounds.", + "\u002B4H" + ], + "RawCellText": "Slight abrasion. You gain the\ninitiative for the next two rounds.\n\u002B4H", + "DescriptionText": "Slight abrasion. You gain the initiative for the next two rounds.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 314, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1256, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 1224, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Leg strike unsteadies foe. You stomp", + "foe\u0027s feet for an extra advantage.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Leg strike unsteadies foe. You stomp", + "foe\u0027s feet for an extra advantage.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Leg strike unsteadies foe. You stomp\nfoe\u0027s feet for an extra advantage.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Leg strike unsteadies foe. You stomp foe\u0027s feet for an extra advantage.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 314, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1256, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 1224, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Boot to calf hits hard. You have the", + "initiative next round.", + "\u002B5H \u2013 \u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Boot to calf hits hard. You have the", + "initiative next round.", + "\u002B5H \u2013 \u2211 \u2013 (-20)" + ], + "RawCellText": "Boot to calf hits hard. You have the\ninitiative next round.\n\u002B5H \u2013 \u2211 \u2013 (-20)", + "DescriptionText": "Boot to calf hits hard. You have the initiative next round.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 314, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 1256, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 1224, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "You go in low and strike foe in his calf. He", + "stumbles back with a nasty bruise.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "You go in low and strike foe in his calf. He", + "stumbles back with a nasty bruise.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "You go in low and strike foe in his calf. He\nstumbles back with a nasty bruise.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "You go in low and strike foe in his calf. He stumbles back with a nasty bruise.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 314, + "Width": 151, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 1256, + "BoundsWidth": 604, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 1224, + "CropWidth": 700, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Strike to the back of foe\u0027s leg gives you a", + "back attack next round.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Strike to the back of foe\u0027s leg gives you a", + "back attack next round.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Strike to the back of foe\u0027s leg gives you a\nback attack next round.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Strike to the back of foe\u0027s leg gives you a back attack next round.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 314, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 1256, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 1224, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Glancing blow to foe\u0027s back. You", + "gain the initiative for the next three", + "rounds.", + "\u002B5H" + ], + "BaseLines": [ + "Glancing blow to foe\u0027s back. You", + "gain the initiative for the next three", + "rounds.", + "\u002B5H" + ], + "RawCellText": "Glancing blow to foe\u0027s back. You\ngain the initiative for the next three\nrounds.\n\u002B5H", + "DescriptionText": "Glancing blow to foe\u0027s back. You gain the initiative for the next three rounds.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 359, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1436, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 1404, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Foe lunges past you and you come", + "down on his back. He realizes his pain.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Foe lunges past you and you come", + "down on his back. He realizes his pain.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Foe lunges past you and you come\ndown on his back. He realizes his pain.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Foe lunges past you and you come down on his back. He realizes his pain.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 359, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1436, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 1404, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "You grab foe and bring your knee into", + "foe\u0027s side. Strike lifts foe up and sends", + "foe reeling.", + "\u002B6H \u2013 \u2211 \u2013 (\u002B5)" + ], + "BaseLines": [ + "You grab foe and bring your knee into", + "foe\u0027s side. Strike lifts foe up and sends", + "foe reeling.", + "\u002B6H \u2013 \u2211 \u2013 (\u002B5)" + ], + "RawCellText": "You grab foe and bring your knee into\nfoe\u0027s side. Strike lifts foe up and sends\nfoe reeling.\n\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "DescriptionText": "You grab foe and bring your knee into foe\u0027s side. Strike lifts foe up and sends foe reeling.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 359, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 1436, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1416, + "CropTop": 1404, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Pull foe off balance and hammer him in", + "the back with a solid fist.", + "\u002B10H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Pull foe off balance and hammer him in", + "the back with a solid fist.", + "\u002B10H \u2013 \u2211\u220F" + ], + "RawCellText": "Pull foe off balance and hammer him in\nthe back with a solid fist.\n\u002B10H \u2013 \u2211\u220F", + "DescriptionText": "Pull foe off balance and hammer him in the back with a solid fist.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 359, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 1436, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2016, + "CropTop": 1404, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "You bash foe brutally. Your strike is solid.", + "\u002B10H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "You bash foe brutally. Your strike is solid.", + "\u002B10H \u2013 \u2211\u220F" + ], + "RawCellText": "You bash foe brutally. Your strike is solid.\n\u002B10H \u2013 \u2211\u220F", + "DescriptionText": "You bash foe brutally. Your strike is solid.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 359, + "Width": 150, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 1436, + "BoundsWidth": 600, + "BoundsHeight": 196, + "CropLeft": 2620, + "CropTop": 1404, + "CropWidth": 696, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Strike lands solid to the chest. Foe", + "leaps back on the defensive.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Strike lands solid to the chest. Foe", + "leaps back on the defensive.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Strike lands solid to the chest. Foe\nleaps back on the defensive.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Strike lands solid to the chest. Foe leaps back on the defensive.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 416, + "Width": 126, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1664, + "BoundsWidth": 504, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 1632, + "CropWidth": 600, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "You strike foe in his chest. Foe reels.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "You strike foe in his chest. Foe reels.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "You strike foe in his chest. Foe reels.\n\u002B6H \u2013 \u2211", + "DescriptionText": "You strike foe in his chest. Foe reels.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 416, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1664, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 1632, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Classic grip to foe\u0027s collar garment. You", + "punch him hard. He stumbles back 5", + "feet.", + "\u002B8H \u2013 2\u2211" + ], + "BaseLines": [ + "Classic grip to foe\u0027s collar garment. You", + "punch him hard. He stumbles back 5", + "feet.", + "\u002B8H \u2013 2\u2211" + ], + "RawCellText": "Classic grip to foe\u0027s collar garment. You\npunch him hard. He stumbles back 5\nfeet.\n\u002B8H \u2013 2\u2211", + "DescriptionText": "Classic grip to foe\u0027s collar garment. You punch him hard. He stumbles back 5 feet.", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 416, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 1664, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1416, + "CropTop": 1632, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Chest strike causes deep bruise. Foe", + "looks very surprised.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Chest strike causes deep bruise. Foe", + "looks very surprised.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Chest strike causes deep bruise. Foe\nlooks very surprised.\n\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Chest strike causes deep bruise. Foe looks very surprised.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 416, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 1664, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2016, + "CropTop": 1632, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Chest wound knocks foe down. Your", + "attack puts you in the place he was just", + "standing.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Chest wound knocks foe down. Your", + "attack puts you in the place he was just", + "standing.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "RawCellText": "Chest wound knocks foe down. Your\nattack puts you in the place he was just\nstanding.\n\u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "Chest wound knocks foe down. Your attack puts you in the place he was just standing.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 416, + "Width": 150, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 1664, + "BoundsWidth": 600, + "BoundsHeight": 196, + "CropLeft": 2620, + "CropTop": 1632, + "CropWidth": 696, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Foe kicks out at you and you strike", + "his leg in response.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Foe kicks out at you and you strike", + "his leg in response.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Foe kicks out at you and you strike\nhis leg in response.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Foe kicks out at you and you strike his leg in response.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 471, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1884, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 1852, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "You duck down and strike across at foe.", + "Blow to thigh leaves a bad bruise.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "You duck down and strike across at foe.", + "Blow to thigh leaves a bad bruise.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "You duck down and strike across at foe.\nBlow to thigh leaves a bad bruise.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "You duck down and strike across at foe. Blow to thigh leaves a bad bruise.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 471, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1884, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 812, + "CropTop": 1852, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s thigh. Your fist hits hard.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s thigh. Your fist hits hard.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "RawCellText": "Strike to foe\u0027s thigh. Your fist hits hard.\n\u002B8H \u2013 2\u2211\u220F", + "DescriptionText": "Strike to foe\u0027s thigh. Your fist hits hard.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 471, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 1884, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1416, + "CropTop": 1852, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Bring your forearm down on foe\u0027s thigh,", + "with most of your weight behind it. You", + "have the initiative next round.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Bring your forearm down on foe\u0027s thigh,", + "with most of your weight behind it. You", + "have the initiative next round.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "RawCellText": "Bring your forearm down on foe\u0027s thigh,\nwith most of your weight behind it. You\nhave the initiative next round.\n\u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "Bring your forearm down on foe\u0027s thigh, with most of your weight behind it. You have the initiative next round.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 471, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 1884, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2016, + "CropTop": 1852, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "You do not know what a sweep or a", + "throw is, but this surely seems like one.", + "You slam foe to the ground.", + "\u002B10H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "You do not know what a sweep or a", + "throw is, but this surely seems like one.", + "You slam foe to the ground.", + "\u002B10H \u2013 3\u2211\u220F" + ], + "RawCellText": "You do not know what a sweep or a\nthrow is, but this surely seems like one.\nYou slam foe to the ground.\n\u002B10H \u2013 3\u2211\u220F", + "DescriptionText": "You do not know what a sweep or a throw is, but this surely seems like one. You slam foe to the ground.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 471, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 1884, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2620, + "CropTop": 1852, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Arm strike gives foe a bruised", + "bicep. You are cruel.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Arm strike gives foe a bruised", + "bicep. You are cruel.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "RawCellText": "Arm strike gives foe a bruised\nbicep. You are cruel.\n\u002B6H \u2013 (\u03C0-25)", + "DescriptionText": "Arm strike gives foe a bruised bicep. You are cruel.", + "RawAffixText": "\u002B6H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 528, + "Width": 126, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2112, + "BoundsWidth": 504, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 2080, + "CropWidth": 600, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "You block foe\u0027s guard and punch him in", + "the face. He just stands there.", + "\u002B6H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "You block foe\u0027s guard and punch him in", + "the face. He just stands there.", + "\u002B6H \u2013 \u2211\u220F" + ], + "RawCellText": "You block foe\u0027s guard and punch him in\nthe face. He just stands there.\n\u002B6H \u2013 \u2211\u220F", + "DescriptionText": "You block foe\u0027s guard and punch him in the face. He just stands there.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 528, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2112, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 2080, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Catch weapon arm and strike it across", + "your own knee. Foe drops his weapon.", + "\u002B8H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "Catch weapon arm and strike it across", + "your own knee. Foe drops his weapon.", + "\u002B8H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "Catch weapon arm and strike it across\nyour own knee. Foe drops his weapon.\n\u002B8H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "Catch weapon arm and strike it across your own knee. Foe drops his weapon.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 528, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 2112, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 2080, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Strike to nerve in foe\u0027s upper arm causes", + "him to drop whatever he is carrying.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "Strike to nerve in foe\u0027s upper arm causes", + "him to drop whatever he is carrying.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "Strike to nerve in foe\u0027s upper arm causes\nhim to drop whatever he is carrying.\n\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "Strike to nerve in foe\u0027s upper arm causes him to drop whatever he is carrying.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 528, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 2112, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 2080, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Strong shoulder strike and a follow-up", + "strike to the face.", + "\u002B10H \u2013 4\u2211\u220F" + ], + "BaseLines": [ + "Strong shoulder strike and a follow-up", + "strike to the face.", + "\u002B10H \u2013 4\u2211\u220F" + ], + "RawCellText": "Strong shoulder strike and a follow-up\nstrike to the face.\n\u002B10H \u2013 4\u2211\u220F", + "DescriptionText": "Strong shoulder strike and a follow-up strike to the face.", + "RawAffixText": "\u002B10H \u2013 4\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 528, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 2112, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 2080, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Grapple foe\u0027s weapon arm and jerk", + "his weapon free. Foe goes twisting", + "and spinning out of your grasp.", + "\u002B8H \u2013 6\u2211 \u2013 (-15)" + ], + "BaseLines": [ + "Grapple foe\u0027s weapon arm and jerk", + "his weapon free. Foe goes twisting", + "and spinning out of your grasp.", + "\u002B8H \u2013 6\u2211 \u2013 (-15)" + ], + "RawCellText": "Grapple foe\u0027s weapon arm and jerk\nhis weapon free. Foe goes twisting\nand spinning out of your grasp.\n\u002B8H \u2013 6\u2211 \u2013 (-15)", + "DescriptionText": "Grapple foe\u0027s weapon arm and jerk his weapon free. Foe goes twisting and spinning out of your grasp.", + "RawAffixText": "\u002B8H \u2013 6\u2211 \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 575, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2300, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 2268, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Hammer foe in his kidneys. You know", + "he is in pain. He grips his side and falls", + "down. Finish him, the pain will not last.", + "\u002B18H \u2013 3\u2211 \u2013 6(-60)" + ], + "BaseLines": [ + "Hammer foe in his kidneys. You know", + "he is in pain. He grips his side and falls", + "down. Finish him, the pain will not last.", + "\u002B18H \u2013 3\u2211 \u2013 6(-60)" + ], + "RawCellText": "Hammer foe in his kidneys. You know\nhe is in pain. He grips his side and falls\ndown. Finish him, the pain will not last.\n\u002B18H \u2013 3\u2211 \u2013 6(-60)", + "DescriptionText": "Hammer foe in his kidneys. You know he is in pain. He grips his side and falls down. Finish him, the pain will not last.", + "RawAffixText": "\u002B18H \u2013 3\u2211 \u2013 6(-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 575, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2300, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 2268, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Nasty strike to foe\u0027s mouth knocks out 2", + "teeth and reduces foe\u0027s appearance, by", + "5, when he smiles.", + "\u002B9H \u2013 6\u2211\u220F \u2013 (-45)" + ], + "BaseLines": [ + "Nasty strike to foe\u0027s mouth knocks out 2", + "teeth and reduces foe\u0027s appearance, by", + "5, when he smiles.", + "\u002B9H \u2013 6\u2211\u220F \u2013 (-45)" + ], + "RawCellText": "Nasty strike to foe\u0027s mouth knocks out 2\nteeth and reduces foe\u0027s appearance, by\n5, when he smiles.\n\u002B9H \u2013 6\u2211\u220F \u2013 (-45)", + "DescriptionText": "Nasty strike to foe\u0027s mouth knocks out 2 teeth and reduces foe\u0027s appearance, by 5, when he smiles.", + "RawAffixText": "\u002B9H \u2013 6\u2211\u220F \u2013 (-45)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -45, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-45)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 575, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 2300, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1416, + "CropTop": 2268, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Drive your finger into foe\u0027s eye, causing", + "blindness. There is a 10% chance that", + "this affliction is permanent.", + "\u002B15H \u2013 (-60)" + ], + "BaseLines": [ + "Drive your finger into foe\u0027s eye, causing", + "blindness. There is a 10% chance that", + "this affliction is permanent.", + "\u002B15H \u2013 (-60)" + ], + "RawCellText": "Drive your finger into foe\u0027s eye, causing\nblindness. There is a 10% chance that\nthis affliction is permanent.\n\u002B15H \u2013 (-60)", + "DescriptionText": "Drive your finger into foe\u0027s eye, causing blindness. There is a 10% chance that this affliction is permanent.", + "RawAffixText": "\u002B15H \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 575, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 2300, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2016, + "CropTop": 2268, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Face strike is so hard foe\u0027s cheekbone is", + "shattered. The shards mortally wound", + "foe. He dies after 10 rounds of agony.", + "(\u002B10)" + ], + "BaseLines": [ + "Face strike is so hard foe\u0027s cheekbone is", + "shattered. The shards mortally wound", + "foe. He dies after 10 rounds of agony.", + "(\u002B10)" + ], + "RawCellText": "Face strike is so hard foe\u0027s cheekbone is\nshattered. The shards mortally wound\nfoe. He dies after 10 rounds of agony.\n(\u002B10)", + "DescriptionText": "Face strike is so hard foe\u0027s cheekbone is shattered. The shards mortally wound foe. He dies after 10 rounds of agony.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 575, + "Width": 150, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 2300, + "BoundsWidth": 600, + "BoundsHeight": 196, + "CropLeft": 2620, + "CropTop": 2268, + "CropWidth": 696, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Blow to abdomen. Foe bends over", + "and throws up.", + "\u002B4H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Blow to abdomen. Foe bends over", + "and throws up.", + "\u002B4H \u2013 2\u2211\u220F" + ], + "RawCellText": "Blow to abdomen. Foe bends over\nand throws up.\n\u002B4H \u2013 2\u2211\u220F", + "DescriptionText": "Blow to abdomen. Foe bends over and throws up.", + "RawAffixText": "\u002B4H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 630, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2520, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 2488, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Blow to foe\u0027s chest. You have mastered", + "the common punch.", + "\u002B8H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. You have mastered", + "the common punch.", + "\u002B8H \u2013 \u2211\u220F" + ], + "RawCellText": "Blow to foe\u0027s chest. You have mastered\nthe common punch.\n\u002B8H \u2013 \u2211\u220F", + "DescriptionText": "Blow to foe\u0027s chest. You have mastered the common punch.", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 630, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2520, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 2488, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strong blow to foe\u0027s forearm causes", + "fracture.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Strong blow to foe\u0027s forearm causes", + "fracture.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "RawCellText": "Strong blow to foe\u0027s forearm causes\nfracture.\n\u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "Strong blow to foe\u0027s forearm causes fracture.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 630, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 2520, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1416, + "CropTop": 2488, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Smash foe\u0027s hip. You have the initiative", + "next round.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Smash foe\u0027s hip. You have the initiative", + "next round.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Smash foe\u0027s hip. You have the initiative\nnext round.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Smash foe\u0027s hip. You have the initiative next round.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 630, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 2520, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 2016, + "CropTop": 2488, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Throw foe into a solid object. He falls", + "down.", + "\u002B12H" + ], + "BaseLines": [ + "Throw foe into a solid object. He falls", + "down.", + "\u002B12H" + ], + "RawCellText": "Throw foe into a solid object. He falls\ndown.\n\u002B12H", + "DescriptionText": "Throw foe into a solid object. He falls down.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 630, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "brawling/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 2520, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2620, + "CropTop": 2488, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Leg strike damages muscle and", + "sends foe stumbling back.", + "\u002B6H \u2013 3\u2211" + ], + "BaseLines": [ + "Leg strike damages muscle and", + "sends foe stumbling back.", + "\u002B6H \u2013 3\u2211" + ], + "RawCellText": "Leg strike damages muscle and\nsends foe stumbling back.\n\u002B6H \u2013 3\u2211", + "DescriptionText": "Leg strike damages muscle and sends foe stumbling back.", + "RawAffixText": "\u002B6H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 677, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2708, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 2676, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Calf strike delivers a deep bruise. Foe", + "looks down at the damage, forgetting", + "about you.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Calf strike delivers a deep bruise. Foe", + "looks down at the damage, forgetting", + "about you.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F" + ], + "RawCellText": "Calf strike delivers a deep bruise. Foe\nlooks down at the damage, forgetting\nabout you.\n\u002B10H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "Calf strike delivers a deep bruise. Foe looks down at the damage, forgetting about you.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 677, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2708, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 2676, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "A light punch unbalances foe. A kick to", + "foe\u0027s leg knocks him down. He falls", + "forward under you.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "A light punch unbalances foe. A kick to", + "foe\u0027s leg knocks him down. He falls", + "forward under you.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "A light punch unbalances foe. A kick to\nfoe\u0027s leg knocks him down. He falls\nforward under you.\n\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "A light punch unbalances foe. A kick to foe\u0027s leg knocks him down. He falls forward under you.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 677, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 2708, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1416, + "CropTop": 2676, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Leg strike causes foe to fall. You push", + "him to hinder his landing and he sprains", + "his ankle.", + "\u002B12H \u2013 3\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Leg strike causes foe to fall. You push", + "him to hinder his landing and he sprains", + "his ankle.", + "\u002B12H \u2013 3\u2211 \u2013 (-20)" + ], + "RawCellText": "Leg strike causes foe to fall. You push\nhim to hinder his landing and he sprains\nhis ankle.\n\u002B12H \u2013 3\u2211 \u2013 (-20)", + "DescriptionText": "Leg strike causes foe to fall. You push him to hinder his landing and he sprains his ankle.", + "RawAffixText": "\u002B12H \u2013 3\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 677, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 2708, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2016, + "CropTop": 2676, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Snap palm into place against foe\u0027s knee.", + "Tendon and cartilage damage. Foe has", + "difficulty standing.", + "\u002B15H \u2013 5\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Snap palm into place against foe\u0027s knee.", + "Tendon and cartilage damage. Foe has", + "difficulty standing.", + "\u002B15H \u2013 5\u2211 \u2013 (-50)" + ], + "RawCellText": "Snap palm into place against foe\u0027s knee.\nTendon and cartilage damage. Foe has\ndifficulty standing.\n\u002B15H \u2013 5\u2211 \u2013 (-50)", + "DescriptionText": "Snap palm into place against foe\u0027s knee. Tendon and cartilage damage. Foe has difficulty standing.", + "RawAffixText": "\u002B15H \u2013 5\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 677, + "Width": 149, + "Height": 49 + }, + "SourceImagePath": "brawling/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 2708, + "BoundsWidth": 596, + "BoundsHeight": 196, + "CropLeft": 2620, + "CropTop": 2676, + "CropWidth": 692, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s shield arm. If foe has", + "anything that resembles a shield, it", + "is broken.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm. If foe has", + "anything that resembles a shield, it", + "is broken.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "RawCellText": "Blow to foe\u0027s shield arm. If foe has\nanything that resembles a shield, it\nis broken.\n\u002B8H \u2013 2\u2211\u220F", + "DescriptionText": "Blow to foe\u0027s shield arm. If foe has anything that resembles a shield, it is broken.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 732, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2928, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 2896, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "You snap foe\u0027s arm around like", + "a noodle. His wrist is strained with the", + "impact.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "You snap foe\u0027s arm around like", + "a noodle. His wrist is strained with the", + "impact.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "You snap foe\u0027s arm around like\na noodle. His wrist is strained with the\nimpact.\n\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "You snap foe\u0027s arm around like a noodle. His wrist is strained with the impact.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 732, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2928, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 812, + "CropTop": 2896, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Grip foe\u0027s weapon arm and drive his fist", + "against a hard surface. Hand is", + "fractured. Foe is disarmed.", + "\u002B10H \u2013 3\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Grip foe\u0027s weapon arm and drive his fist", + "against a hard surface. Hand is", + "fractured. Foe is disarmed.", + "\u002B10H \u2013 3\u2211 \u2013 (-30)" + ], + "RawCellText": "Grip foe\u0027s weapon arm and drive his fist\nagainst a hard surface. Hand is\nfractured. Foe is disarmed.\n\u002B10H \u2013 3\u2211 \u2013 (-30)", + "DescriptionText": "Grip foe\u0027s weapon arm and drive his fist against a hard surface. Hand is fractured. Foe is disarmed.", + "RawAffixText": "\u002B10H \u2013 3\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 732, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 2928, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1416, + "CropTop": 2896, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Strong blow to foe\u0027s weapon arm", + "fractures his wrist. The pain makes his", + "hand useless.", + "\u002B15H \u2013 3\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s weapon arm", + "fractures his wrist. The pain makes his", + "hand useless.", + "\u002B15H \u2013 3\u2211 \u2013 (-30)" + ], + "RawCellText": "Strong blow to foe\u0027s weapon arm\nfractures his wrist. The pain makes his\nhand useless.\n\u002B15H \u2013 3\u2211 \u2013 (-30)", + "DescriptionText": "Strong blow to foe\u0027s weapon arm fractures his wrist. The pain makes his hand useless.", + "RawAffixText": "\u002B15H \u2013 3\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 732, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 2928, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2016, + "CropTop": 2896, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Fierce blow to foe\u0027s weapon arm breaks", + "bone. Arm is useless. Use arm as", + "leverage to flip foe onto his stomach.", + "\u002B18H \u2013 \u222B \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Fierce blow to foe\u0027s weapon arm breaks", + "bone. Arm is useless. Use arm as", + "leverage to flip foe onto his stomach.", + "\u002B18H \u2013 \u222B \u2013 2\u2211\u220F" + ], + "RawCellText": "Fierce blow to foe\u0027s weapon arm breaks\nbone. Arm is useless. Use arm as\nleverage to flip foe onto his stomach.\n\u002B18H \u2013 \u222B \u2013 2\u2211\u220F", + "DescriptionText": "Fierce blow to foe\u0027s weapon arm breaks bone. Arm is useless. Use arm as leverage to flip foe onto his stomach.", + "RawAffixText": "\u002B18H \u2013 \u222B \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 732, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 2928, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2620, + "CropTop": 2896, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Precision strike to foe\u0027s arm", + "disarms him. Weapon hand is", + "fractured. Foe is in pain.", + "\u002B8H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Precision strike to foe\u0027s arm", + "disarms him. Weapon hand is", + "fractured. Foe is in pain.", + "\u002B8H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Precision strike to foe\u0027s arm\ndisarms him. Weapon hand is\nfractured. Foe is in pain.\n\u002B8H \u2013 2\u2211\u220F \u2013 (-25)", + "DescriptionText": "Precision strike to foe\u0027s arm disarms him. Weapon hand is fractured. Foe is in pain.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 789, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3156, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 3124, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Hand strike jams foe\u0027s fingers into their", + "sockets. Ouch! Foe drops everything in", + "his hands.", + "\u002B10H \u2013 3\u2211 \u2013 (-15)" + ], + "BaseLines": [ + "Hand strike jams foe\u0027s fingers into their", + "sockets. Ouch! Foe drops everything in", + "his hands.", + "\u002B10H \u2013 3\u2211 \u2013 (-15)" + ], + "RawCellText": "Hand strike jams foe\u0027s fingers into their\nsockets. Ouch! Foe drops everything in\nhis hands.\n\u002B10H \u2013 3\u2211 \u2013 (-15)", + "DescriptionText": "Hand strike jams foe\u0027s fingers into their sockets. Ouch! Foe drops everything in his hands.", + "RawAffixText": "\u002B10H \u2013 3\u2211 \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 789, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3156, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 812, + "CropTop": 3124, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Strong blow to foe\u0027s arm fractures", + "shoulder. You hit his shoulder one", + "more time to make your point.", + "\u002B10H \u2013 3\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s arm fractures", + "shoulder. You hit his shoulder one", + "more time to make your point.", + "\u002B10H \u2013 3\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Strong blow to foe\u0027s arm fractures\nshoulder. You hit his shoulder one\nmore time to make your point.\n\u002B10H \u2013 3\u2211\u220F \u2013 (-20)", + "DescriptionText": "Strong blow to foe\u0027s arm fractures shoulder. You hit his shoulder one more time to make your point.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 789, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 3156, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1416, + "CropTop": 3124, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Grab foe\u0027s weapon arm and pull him", + "over. Your kick to the ribs finally drops", + "him to the ground.", + "\u002B15H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Grab foe\u0027s weapon arm and pull him", + "over. Your kick to the ribs finally drops", + "him to the ground.", + "\u002B15H \u2013 3\u2211\u220F" + ], + "RawCellText": "Grab foe\u0027s weapon arm and pull him\nover. Your kick to the ribs finally drops\nhim to the ground.\n\u002B15H \u2013 3\u2211\u220F", + "DescriptionText": "Grab foe\u0027s weapon arm and pull him over. Your kick to the ribs finally drops him to the ground.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 789, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 3156, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2016, + "CropTop": 3124, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Shoulder strike breaks foe\u0027s collar bone.", + "Miscellaneous internal organ damage.", + "\u002B18H \u2013 6\u2211\u220F \u2013 \u222B \u2013 (-30)" + ], + "BaseLines": [ + "Shoulder strike breaks foe\u0027s collar bone.", + "Miscellaneous internal organ damage.", + "\u002B18H \u2013 6\u2211\u220F \u2013 \u222B \u2013 (-30)" + ], + "RawCellText": "Shoulder strike breaks foe\u0027s collar bone.\nMiscellaneous internal organ damage.\n\u002B18H \u2013 6\u2211\u220F \u2013 \u222B \u2013 (-30)", + "DescriptionText": "Shoulder strike breaks foe\u0027s collar bone. Miscellaneous internal organ damage.", + "RawAffixText": "\u002B18H \u2013 6\u2211\u220F \u2013 \u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 789, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 3156, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2620, + "CropTop": 3124, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Two brutal punches to foe\u0027s face.", + "This barrage leaves foe confused", + "and swinging in the wrong", + "direction.", + "\u002B8H \u2013 3\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Two brutal punches to foe\u0027s face.", + "This barrage leaves foe confused", + "and swinging in the wrong", + "direction.", + "\u002B8H \u2013 3\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Two brutal punches to foe\u0027s face.\nThis barrage leaves foe confused\nand swinging in the wrong\ndirection.\n\u002B8H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Two brutal punches to foe\u0027s face. This barrage leaves foe confused and swinging in the wrong direction.", + "RawAffixText": "\u002B8H \u2013 3\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 846, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3384, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 272, + "CropTop": 3352, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Grab foe\u0027s weapon arm and beat on it", + "without concern for the rest of foe. Foe", + "is disarmed as ligaments are torn and", + "muscles are pulled.", + "\u002B10H \u2013 4\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Grab foe\u0027s weapon arm and beat on it", + "without concern for the rest of foe. Foe", + "is disarmed as ligaments are torn and", + "muscles are pulled.", + "\u002B10H \u2013 4\u2211 \u2013 (-25)" + ], + "RawCellText": "Grab foe\u0027s weapon arm and beat on it\nwithout concern for the rest of foe. Foe\nis disarmed as ligaments are torn and\nmuscles are pulled.\n\u002B10H \u2013 4\u2211 \u2013 (-25)", + "DescriptionText": "Grab foe\u0027s weapon arm and beat on it without concern for the rest of foe. Foe is disarmed as ligaments are torn and muscles are pulled.", + "RawAffixText": "\u002B10H \u2013 4\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 846, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3384, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 3352, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Accurate chest strike knocks wind out", + "of foe. He falls over on you and you", + "knock him off with an upper cut. He", + "stand back up and stumbles 5 feet.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Accurate chest strike knocks wind out", + "of foe. He falls over on you and you", + "knock him off with an upper cut. He", + "stand back up and stumbles 5 feet.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Accurate chest strike knocks wind out\nof foe. He falls over on you and you\nknock him off with an upper cut. He\nstand back up and stumbles 5 feet.\n\u002B12H \u2013 3\u2211\u220F \u2013 (-30)", + "DescriptionText": "Accurate chest strike knocks wind out of foe. He falls over on you and you knock him off with an upper cut. He stand back up and stumbles 5 feet.", + "RawAffixText": "\u002B12H \u2013 3\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 846, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 3384, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 1416, + "CropTop": 3352, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blow to front of foe\u0027s neck. His head", + "snaps back, but it does not break his", + "neck. Foe cannot speak for 2-20 hours.", + "He yells in silence.", + "\u002B18H \u2013 6\u2211" + ], + "BaseLines": [ + "Blow to front of foe\u0027s neck. His head", + "snaps back, but it does not break his", + "neck. Foe cannot speak for 2-20 hours.", + "He yells in silence.", + "\u002B18H \u2013 6\u2211" + ], + "RawCellText": "Blow to front of foe\u0027s neck. His head\nsnaps back, but it does not break his\nneck. Foe cannot speak for 2-20 hours.\nHe yells in silence.\n\u002B18H \u2013 6\u2211", + "DescriptionText": "Blow to front of foe\u0027s neck. His head snaps back, but it does not break his neck. Foe cannot speak for 2-20 hours. He yells in silence.", + "RawAffixText": "\u002B18H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 846, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 3384, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2016, + "CropTop": 3352, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Nasty blow ruptures stomach. Foe is", + "knocked down. Internal bleeding is", + "mortal. Foe will die in 20 rounds. He is", + "still active.", + "\u002B20H \u2013 \u2211\u2013 10\u222B \u2013(-50)" + ], + "BaseLines": [ + "Nasty blow ruptures stomach. Foe is", + "knocked down. Internal bleeding is", + "mortal. Foe will die in 20 rounds. He is", + "still active.", + "\u002B20H \u2013 \u2211\u2013 10\u222B \u2013(-50)" + ], + "RawCellText": "Nasty blow ruptures stomach. Foe is\nknocked down. Internal bleeding is\nmortal. Foe will die in 20 rounds. He is\nstill active.\n\u002B20H \u2013 \u2211\u2013 10\u222B \u2013(-50)", + "DescriptionText": "Nasty blow ruptures stomach. Foe is knocked down. Internal bleeding is mortal. Foe will die in 20 rounds. He is still active.", + "RawAffixText": "\u002B20H \u2013 \u2211\u2013 10\u222B \u2013(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 846, + "Width": 150, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 3384, + "BoundsWidth": 600, + "BoundsHeight": 240, + "CropLeft": 2620, + "CropTop": 3352, + "CropWidth": 696, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Head strike breaks foe\u0027s nose.", + "Appearance drops by 5 due to", + "black eyes.", + "\u002B10H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Head strike breaks foe\u0027s nose.", + "Appearance drops by 5 due to", + "black eyes.", + "\u002B10H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Head strike breaks foe\u0027s nose.\nAppearance drops by 5 due to\nblack eyes.\n\u002B10H \u2013 3\u2211\u220F \u2013 (-25)", + "DescriptionText": "Head strike breaks foe\u0027s nose. Appearance drops by 5 due to black eyes.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 912, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3648, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 3616, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Land a solid shot to foe\u0027s head. Foe is", + "definitely impressed. He steps toward", + "you to keep from falling.", + "\u002B12H \u2013 8\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Land a solid shot to foe\u0027s head. Foe is", + "definitely impressed. He steps toward", + "you to keep from falling.", + "\u002B12H \u2013 8\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Land a solid shot to foe\u0027s head. Foe is\ndefinitely impressed. He steps toward\nyou to keep from falling.\n\u002B12H \u2013 8\u2211\u220F \u2013 (-40)", + "DescriptionText": "Land a solid shot to foe\u0027s head. Foe is definitely impressed. He steps toward you to keep from falling.", + "RawAffixText": "\u002B12H \u2013 8\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 912, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3648, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 812, + "CropTop": 3616, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Precision strike to foe\u0027s head sends him", + "to the ground. You can actually see the", + "stars spinning around his head.", + "\u002B15H \u2013 9\u2211\u220F \u2013 (-35)" + ], + "BaseLines": [ + "Precision strike to foe\u0027s head sends him", + "to the ground. You can actually see the", + "stars spinning around his head.", + "\u002B15H \u2013 9\u2211\u220F \u2013 (-35)" + ], + "RawCellText": "Precision strike to foe\u0027s head sends him\nto the ground. You can actually see the\nstars spinning around his head.\n\u002B15H \u2013 9\u2211\u220F \u2013 (-35)", + "DescriptionText": "Precision strike to foe\u0027s head sends him to the ground. You can actually see the stars spinning around his head.", + "RawAffixText": "\u002B15H \u2013 9\u2211\u220F \u2013 (-35)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -35, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-35)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 912, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 3648, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1416, + "CropTop": 3616, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Strong blow to face cracks jawbone.", + "Ow! Jaw is stuck open and foe appears", + "permanently surprised about something.", + "\u002B20H \u2013 9\u2211 \u2013 (-30) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strong blow to face cracks jawbone.", + "Ow! Jaw is stuck open and foe appears", + "permanently surprised about something.", + "\u002B20H \u2013 9\u2211 \u2013 (-30) \u2013 (\u002B10)" + ], + "RawCellText": "Strong blow to face cracks jawbone.\nOw! Jaw is stuck open and foe appears\npermanently surprised about something.\n\u002B20H \u2013 9\u2211 \u2013 (-30) \u2013 (\u002B10)", + "DescriptionText": "Strong blow to face cracks jawbone. Ow! Jaw is stuck open and foe appears permanently surprised about something.", + "RawAffixText": "\u002B20H \u2013 9\u2211 \u2013 (-30) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 912, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 3648, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2016, + "CropTop": 3616, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s side. Bruise ribs, a kidney", + "and a lung. Foe manages to remain", + "standing. Oh that hurts ya know!", + "\u002B25H \u2013 6\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Blow to foe\u0027s side. Bruise ribs, a kidney", + "and a lung. Foe manages to remain", + "standing. Oh that hurts ya know!", + "\u002B25H \u2013 6\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Blow to foe\u0027s side. Bruise ribs, a kidney\nand a lung. Foe manages to remain\nstanding. Oh that hurts ya know!\n\u002B25H \u2013 6\u2211\u220F \u2013 (-75)", + "DescriptionText": "Blow to foe\u0027s side. Bruise ribs, a kidney and a lung. Foe manages to remain standing. Oh that hurts ya know!", + "RawAffixText": "\u002B25H \u2013 6\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 912, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "brawling/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 3648, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2620, + "CropTop": 3616, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Blow to solar plexus causes foe to", + "vomit. He falls to his knees. Foe is", + "unable to do anything but retch. Do", + "you have pity?", + "\u002B10H" + ], + "BaseLines": [ + "Blow to solar plexus causes foe to", + "vomit. He falls to his knees. Foe is", + "unable to do anything but retch. Do", + "you have pity?", + "\u002B10H" + ], + "RawCellText": "Blow to solar plexus causes foe to\nvomit. He falls to his knees. Foe is\nunable to do anything but retch. Do\nyou have pity?\n\u002B10H", + "DescriptionText": "Blow to solar plexus causes foe to vomit. He falls to his knees. Foe is unable to do anything but retch. Do you have pity?", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 969, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3876, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 272, + "CropTop": 3844, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Groin strike is solid. You kick him again.", + "Your strike leaves foe helpless. Really", + "unkind.", + "\u002B18H \u2013 12\u2211\u220F" + ], + "BaseLines": [ + "Groin strike is solid. You kick him again.", + "Your strike leaves foe helpless. Really", + "unkind.", + "\u002B18H \u2013 12\u2211\u220F" + ], + "RawCellText": "Groin strike is solid. You kick him again.\nYour strike leaves foe helpless. Really\nunkind.\n\u002B18H \u2013 12\u2211\u220F", + "DescriptionText": "Groin strike is solid. You kick him again. Your strike leaves foe helpless. Really unkind.", + "RawAffixText": "\u002B18H \u2013 12\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 969, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3876, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 3844, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Strike foe in his head. If he has a helm,", + "you pull it off and hit him with it. He is", + "knocked out for 4 hours. If foe has no", + "helm, you knock him out for 5 rounds.", + "\u002B20H" + ], + "BaseLines": [ + "Strike foe in his head. If he has a helm,", + "you pull it off and hit him with it. He is", + "knocked out for 4 hours. If foe has no", + "helm, you knock him out for 5 rounds.", + "\u002B20H" + ], + "RawCellText": "Strike foe in his head. If he has a helm,\nyou pull it off and hit him with it. He is\nknocked out for 4 hours. If foe has no\nhelm, you knock him out for 5 rounds.\n\u002B20H", + "DescriptionText": "Strike foe in his head. If he has a helm, you pull it off and hit him with it. He is knocked out for 4 hours. If foe has no helm, you knock him out for 5 rounds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 969, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 3876, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1416, + "CropTop": 3844, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Strong blow to the abdomen causes", + "internal bleeding and organ damage. Foe", + "makes it a habit of spitting blood.", + "\u002B25H \u2013 \u222B" + ], + "BaseLines": [ + "Strong blow to the abdomen causes", + "internal bleeding and organ damage. Foe", + "makes it a habit of spitting blood.", + "\u002B25H \u2013 \u222B" + ], + "RawCellText": "Strong blow to the abdomen causes\ninternal bleeding and organ damage. Foe\nmakes it a habit of spitting blood.\n\u002B25H \u2013 \u222B", + "DescriptionText": "Strong blow to the abdomen causes internal bleeding and organ damage. Foe makes it a habit of spitting blood.", + "RawAffixText": "\u002B25H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 969, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 3876, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 2016, + "CropTop": 3844, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Grip foe\u0027s neck. You shake him violently,", + "while attempting to choke him. He passes", + "out. You can finish him if you want.", + "\u002B30 hits \u2013 \u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Grip foe\u0027s neck. You shake him violently,", + "while attempting to choke him. He passes", + "out. You can finish him if you want.", + "\u002B30 hits \u2013 \u222B \u2013 (\u002B20)" + ], + "RawCellText": "Grip foe\u0027s neck. You shake him violently,\nwhile attempting to choke him. He passes\nout. You can finish him if you want.\n\u002B30 hits \u2013 \u222B \u2013 (\u002B20)", + "DescriptionText": "Grip foe\u0027s neck. You shake him violently, while attempting to choke him. He passes out. You can finish him if you want.", + "RawAffixText": "\u002B30 hits \u2013 \u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 969, + "Width": 150, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 3876, + "BoundsWidth": 600, + "BoundsHeight": 240, + "CropLeft": 2620, + "CropTop": 3844, + "CropWidth": 696, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Elbow foe\u0027s face and then punch", + "him hard. He is paralyzed from the", + "neck down for 2 days. He falls", + "instantly to the ground.", + "\u002B13H" + ], + "BaseLines": [ + "Elbow foe\u0027s face and then punch", + "him hard. He is paralyzed from the", + "neck down for 2 days. He falls", + "instantly to the ground.", + "\u002B13H" + ], + "RawCellText": "Elbow foe\u0027s face and then punch\nhim hard. He is paralyzed from the\nneck down for 2 days. He falls\ninstantly to the ground.\n\u002B13H", + "DescriptionText": "Elbow foe\u0027s face and then punch him hard. He is paralyzed from the neck down for 2 days. He falls instantly to the ground.", + "RawAffixText": "\u002B13H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 1035, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 4140, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 272, + "CropTop": 4108, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s head. If he has no helm,", + "he is in a coma for 10-100 days.", + "If foe has a helm it leaves a bruise on his", + "head. Foe drops and is unconscious.", + "\u002B20H" + ], + "BaseLines": [ + "Strike to foe\u0027s head. If he has no helm,", + "he is in a coma for 10-100 days.", + "If foe has a helm it leaves a bruise on his", + "head. Foe drops and is unconscious.", + "\u002B20H" + ], + "RawCellText": "Strike to foe\u0027s head. If he has no helm,\nhe is in a coma for 10-100 days.\nIf foe has a helm it leaves a bruise on his\nhead. Foe drops and is unconscious.\n\u002B20H", + "DescriptionText": "Strike to foe\u0027s head. If he has no helm, he is in a coma for 10-100 days. If foe has a helm it leaves a bruise on his head. Foe drops and is unconscious.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 1035, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 4140, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 4108, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Mighty strike crashes into foe\u0027s head.", + "If he has a helmet, he is unconscious", + "for 1-10 days. If he has no helmet, skull", + "collapses and brain is dead.", + "\u002B25H \u2013 \u222B" + ], + "BaseLines": [ + "Mighty strike crashes into foe\u0027s head.", + "If he has a helmet, he is unconscious", + "for 1-10 days. If he has no helmet, skull", + "collapses and brain is dead.", + "\u002B25H \u2013 \u222B" + ], + "RawCellText": "Mighty strike crashes into foe\u0027s head.\nIf he has a helmet, he is unconscious\nfor 1-10 days. If he has no helmet, skull\ncollapses and brain is dead.\n\u002B25H \u2013 \u222B", + "DescriptionText": "Mighty strike crashes into foe\u0027s head. If he has a helmet, he is unconscious for 1-10 days. If he has no helmet, skull collapses and brain is dead.", + "RawAffixText": "\u002B25H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 366, + "Top": 1035, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "brawling/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1464, + "BoundsTop": 4140, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1416, + "CropTop": 4108, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Grip foe\u0027s arm and pound on foe\u0027s head.", + "One shot hits hard. Crushing strike to", + "foe\u0027s temple. Foe dies instantly." + ], + "BaseLines": [ + "Grip foe\u0027s arm and pound on foe\u0027s head.", + "One shot hits hard. Crushing strike to", + "foe\u0027s temple. Foe dies instantly." + ], + "RawCellText": "Grip foe\u0027s arm and pound on foe\u0027s head.\nOne shot hits hard. Crushing strike to\nfoe\u0027s temple. Foe dies instantly.", + "DescriptionText": "Grip foe\u0027s arm and pound on foe\u0027s head. One shot hits hard. Crushing strike to foe\u0027s temple. Foe dies instantly.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 516, + "Top": 1035, + "Width": 145, + "Height": 30 + }, + "SourceImagePath": "brawling/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2064, + "BoundsTop": 4140, + "BoundsWidth": 580, + "BoundsHeight": 120, + "CropLeft": 2016, + "CropTop": 4108, + "CropWidth": 676, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Your strike is frightening. Foe\u0027s head", + "snaps to one side. Foe cannot breathe. He", + "looks upon the world one last time and", + "then dies. You are horrified at his doom." + ], + "BaseLines": [ + "Your strike is frightening. Foe\u0027s head", + "snaps to one side. Foe cannot breathe. He", + "looks upon the world one last time and", + "then dies. You are horrified at his doom." + ], + "RawCellText": "Your strike is frightening. Foe\u0027s head\nsnaps to one side. Foe cannot breathe. He\nlooks upon the world one last time and\nthen dies. You are horrified at his doom.", + "DescriptionText": "Your strike is frightening. Foe\u0027s head snaps to one side. Foe cannot breathe. He looks upon the world one last time and then dies. You are horrified at his doom.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 667, + "Top": 1035, + "Width": 150, + "Height": 41 + }, + "SourceImagePath": "brawling/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2668, + "BoundsTop": 4140, + "BoundsWidth": 600, + "BoundsHeight": 164, + "CropLeft": 2620, + "CropTop": 4108, + "CropWidth": 696, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/source.xml b/src/RolemasterDb.App/import-artifacts/critical/brawling/source.xml new file mode 100644 index 0000000..0cd0a89 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/brawling/source.xml @@ -0,0 +1,380 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +94 +01-05 +Feeble. You're getting old. +Maybe next time.... +Barely made it. +Great move. +Light blow, but foe's thinks it's your best. ++0H ++0H ++1H ++2H ++2H +06-10 +You hit foe's forehead. +A glancing blow. +You pull at foe's hair. +You gain the initiative next round. +Things just failed to connect right. ++1H ++1H ++2H ++2H ++3H – π +11-15 +Push foe with the punch. You +receive initiative next round. +Deflected blow, but you gain the +initiative next round. +You move quickly after blocking +punch.You gain the initiative next round. +Use your body like a broom. Foe is +unbalanced. +You block foe's forearm. You gain the +initiative next round. ++1H ++2H ++2H ++2H – π ++4H – π +16-20 +Foe steps aside unbalanced.You +gain the initiative next round. +Your backhand is powerful. Strike foe +across his face.You unbalance him. +Step into foe to knock him down. Bash +to side unbalances foe. +Elbow to foe's side sends him reeling. +Your follow-up swing misses. +Duck in close and hammer foe's side. +You gain the initiative next round. ++2H ++2H – π ++3H – π ++4H – 2π ++5H – ∑ +21-35 +Good placement. You gain the +initiative for the next two rounds. +Push foe back and kick his leg. You gain +the initiative next round. +You try to sweep your foe off his feet. +You trip foe. He shuffles a full 15 feet +before he gets his balance. +Cheap shot to foe's side bruises ribs. Foe +crashes into the nearest obstacle. ++3H ++3H – π ++4H – π – (+10) ++5H – ∑ – π ++8H – ∑ – 4(-20) +36-45 +Slight abrasion. You gain the +initiative for the next two rounds. +Leg strike unsteadies foe. You stomp +foe's feet for an extra advantage. +Boot to calf hits hard. You have the +initiative next round. +You go in low and strike foe in his calf. He +stumbles back with a nasty bruise. +Strike to the back of foe's leg gives you a +back attack next round. ++4H ++4H – π ++5H – ∑ – (-20) ++6H – 2∑ ++10H – ∑ +46-50 +Glancing blow to foe's back. You +gain the initiative for the next three +rounds. +Foe lunges past you and you come +down on his back. He realizes his pain. +You grab foe and bring your knee into +foe's side. Strike lifts foe up and sends +foe reeling. +Pull foe off balance and hammer him in +the back with a solid fist. +You bash foe brutally. Your strike is solid. ++5H ++5H – ∑ ++6H – ∑ – (+5) ++10H – ∑∏ + +10H – ∑∏ +51-55 +Strike lands solid to the chest. Foe +leaps back on the defensive. +You strike foe in his chest. Foe reels. +Classic grip to foe's collar garment. You +punch him hard. He stumbles back 5 +feet. +Chest strike causes deep bruise. Foe +looks very surprised. +Chest wound knocks foe down. Your +attack puts you in the place he was just +standing. ++5H – π ++6H – ∑ ++8H – 2∑ ++10H – ∑∏ – (-10) ++10H – 2∑∏ +56-60 +Foe kicks out at you and you strike +his leg in response. +You duck down and strike across at foe. +Blow to thigh leaves a bad bruise. +Strike to foe's thigh. Your fist hits hard. +Bring your forearm down on foe's thigh, +with most of your weight behind it. You +have the initiative next round. +You do not know what a sweep or a +throw is, but this surely seems like one. +You slam foe to the ground. ++5H – ∑ ++6H – 2∑ ++8H – 2∑∏ ++10H – 2∑∏ ++10H – 3∑∏ +61-65 +Arm strike gives foe a bruised +bicep. You are cruel. +You block foe's guard and punch him in +the face. He just stands there. +Catch weapon arm and strike it across +your own knee. Foe drops his weapon. +Strike to nerve in foe's upper arm causes +him to drop whatever he is carrying. +Strong shoulder strike and a follow-up +strike to the face. ++6H – (π-25) ++6H – ∑∏ ++8H – 2∑∏ – (+5) ++10H – 2∑∏ – (+5) ++10H – 4∑∏ +66 +Grapple foe's weapon arm and jerk +his weapon free. Foe goes twisting +and spinning out of your grasp. +Hammer foe in his kidneys. You know +he is in pain. He grips his side and falls +down. Finish him, the pain will not last. +Nasty strike to foe's mouth knocks out 2 +teeth and reduces foe's appearance, by +5, when he smiles. +Drive your finger into foe's eye, causing +blindness. There is a 10% chance that +this affliction is permanent. +Face strike is so hard foe's cheekbone is +shattered. The shards mortally wound +foe. He dies after 10 rounds of agony. ++8H – 6∑ – (-15) ++18H – 3∑ – 6(-60) ++9H – 6∑∏ – (-45) ++15H – (-60) +(+10) +67-70 +Blow to abdomen. Foe bends over +and throws up. +Blow to foe's chest. You have mastered +the common punch. +Strong blow to foe's forearm causes +fracture. +Smash foe's hip. You have the initiative +next round. +Throw foe into a solid object. He falls +down. ++4H – 2∑∏ ++8H – ∑∏ ++10H – 2∑∏ ++12H – 2∑∏ – (-10) ++12H +71-75 +Leg strike damages muscle and +sends foe stumbling back. +Calf strike delivers a deep bruise. Foe +looks down at the damage, forgetting +about you. +A light punch unbalances foe. A kick to +foe's leg knocks him down. He falls +forward under you. +Leg strike causes foe to fall. You push +him to hinder his landing and he sprains +his ankle. +Snap palm into place against foe's knee. +Tendon and cartilage damage. Foe has +difficulty standing. ++6H – 3∑ ++10H – 2∑ – ∏ ++10H – 2∑∏ – (+5) ++12H – 3∑ – (-20) ++15H – 5∑ – (-50) +76-80 +Blow to foe's shield arm. If foe has +anything that resembles a shield, it +is broken. +You snap foe's arm around like + a noodle. His wrist is strained with the +impact. +Grip foe's weapon arm and drive his fist +against a hard surface. Hand is +fractured. Foe is disarmed. +Strong blow to foe's weapon arm +fractures his wrist. The pain makes his +hand useless. +Fierce blow to foe's weapon arm breaks +bone. Arm is useless. Use arm as +leverage to flip foe onto his stomach. ++8H – 2∑∏ + +10H – 2∑∏ – (+5) ++10H – 3∑ – (-30) ++15H – 3∑ – (-30) ++18H – ∫ – 2∑∏ +81-85 +Precision strike to foe's arm +disarms him. Weapon hand is +fractured. Foe is in pain. +Hand strike jams foe's fingers into their +sockets. Ouch! Foe drops everything in +his hands. +Strong blow to foe's arm fractures +shoulder. You hit his shoulder one +more time to make your point. +Grab foe's weapon arm and pull him +over. Your kick to the ribs finally drops +him to the ground. +Shoulder strike breaks foe's collar bone. +Miscellaneous internal organ damage. ++8H – 2∑∏ – (-25) + +10H – 3∑ – (-15) ++10H – 3∑∏ – (-20) ++15H – 3∑∏ ++18H – 6∑∏ – ∫ – (-30) +86-90 +Two brutal punches to foe's face. +This barrage leaves foe confused +and swinging in the wrong +direction. +Grab foe's weapon arm and beat on it +without concern for the rest of foe. Foe +is disarmed as ligaments are torn and +muscles are pulled. +Accurate chest strike knocks wind out +of foe. He falls over on you and you +knock him off with an upper cut. He +stand back up and stumbles 5 feet. +Blow to front of foe's neck. His head +snaps back, but it does not break his +neck. Foe cannot speak for 2-20 hours. +He yells in silence. +Nasty blow ruptures stomach. Foe is +knocked down. Internal bleeding is +mortal. Foe will die in 20 rounds. He is +still active. ++8H – 3∑∏ – (+20) ++10H – 4∑ – (-25) + +12H – 3∑∏ – (-30) ++18H – 6∑ ++20H – ∑– 10∫ –(-50) +91-95 +Head strike breaks foe's nose. +Appearance drops by 5 due to +black eyes. +Land a solid shot to foe's head. Foe is +definitely impressed. He steps toward +you to keep from falling. +Precision strike to foe's head sends him +to the ground. You can actually see the +stars spinning around his head. +Strong blow to face cracks jawbone. +Ow! Jaw is stuck open and foe appears +permanently surprised about something. +Blow to foe's side. Bruise ribs, a kidney +and a lung. Foe manages to remain +standing. Oh that hurts ya know! ++10H – 3∑∏ – (-25) ++12H – 8∑∏ – (-40) ++15H – 9∑∏ – (-35) ++20H – 9∑ – (-30) – (+10) ++25H – 6∑∏ – (-75) +96-99 +Blow to solar plexus causes foe to +vomit. He falls to his knees. Foe is +unable to do anything but retch. Do +you have pity? +Groin strike is solid. You kick him again. +Your strike leaves foe helpless. Really +unkind. +Strike foe in his head. If he has a helm, +you pull it off and hit him with it. He is +knocked out for 4 hours. If foe has no +helm, you knock him out for 5 rounds. +Strong blow to the abdomen causes +internal bleeding and organ damage. Foe +makes it a habit of spitting blood. +Grip foe's neck. You shake him violently, +while attempting to choke him. He passes +out. You can finish him if you want. ++10H ++18H – 12∑∏ ++20H ++25H – ∫ ++30 hits – ∫ – (+20) +100 +Elbow foe's face and then punch +him hard. He is paralyzed from the +neck down for 2 days. He falls +instantly to the ground. +Strike to foe's head. If he has no helm, +he is in a coma for 10-100 days. +If foe has a helm it leaves a bruise on his +head. Foe drops and is unconscious. +Mighty strike crashes into foe's head. +If he has a helmet, he is unconscious +for 1-10 days. If he has no helmet, skull +collapses and brain is dead. +Grip foe's arm and pound on foe's head. +One shot hits hard. Crushing strike to +foe's temple. Foe dies instantly. +Your strike is frightening. Foe's head +snaps to one side. Foe cannot breathe. He +looks upon the world one last time and +then dies. You are horrified at his doom. ++13H ++20H ++25H – ∫ +4.1 Brawling critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/brawling/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/brawling/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/brawling/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__01-05.png new file mode 100644 index 0000000..f8d57ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__06-10.png new file mode 100644 index 0000000..9e85128 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__100.png new file mode 100644 index 0000000..e81afee Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__11-15.png new file mode 100644 index 0000000..c05ee31 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__16-20.png new file mode 100644 index 0000000..b7ab796 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__21-35.png new file mode 100644 index 0000000..b11bd43 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__36-45.png new file mode 100644 index 0000000..4a2aaa4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__46-50.png new file mode 100644 index 0000000..244b768 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__51-55.png new file mode 100644 index 0000000..fb58f29 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__56-60.png new file mode 100644 index 0000000..7c04106 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__61-65.png new file mode 100644 index 0000000..2192237 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__66.png new file mode 100644 index 0000000..195f43f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__67-70.png new file mode 100644 index 0000000..8765a1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__71-75.png new file mode 100644 index 0000000..8d5eaf0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__76-80.png new file mode 100644 index 0000000..102a739 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__81-85.png new file mode 100644 index 0000000..9d9ef9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__86-90.png new file mode 100644 index 0000000..70a004e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__91-95.png new file mode 100644 index 0000000..5d5ac10 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__96-99.png new file mode 100644 index 0000000..c6ca159 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__01-05.png new file mode 100644 index 0000000..4bff58e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__06-10.png new file mode 100644 index 0000000..eb4c4f9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__100.png new file mode 100644 index 0000000..46d236c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__11-15.png new file mode 100644 index 0000000..424074b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__16-20.png new file mode 100644 index 0000000..0dea477 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__21-35.png new file mode 100644 index 0000000..3d73def Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__36-45.png new file mode 100644 index 0000000..7abd441 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__46-50.png new file mode 100644 index 0000000..a155dc2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__51-55.png new file mode 100644 index 0000000..f0972f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__56-60.png new file mode 100644 index 0000000..64cb373 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__61-65.png new file mode 100644 index 0000000..d71ea1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__66.png new file mode 100644 index 0000000..2be3245 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__67-70.png new file mode 100644 index 0000000..c704861 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__71-75.png new file mode 100644 index 0000000..a70aa47 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__76-80.png new file mode 100644 index 0000000..4a5c991 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__81-85.png new file mode 100644 index 0000000..35850c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__86-90.png new file mode 100644 index 0000000..204d49d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__91-95.png new file mode 100644 index 0000000..180fe53 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__96-99.png new file mode 100644 index 0000000..b2e8a13 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__01-05.png new file mode 100644 index 0000000..51ee561 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__06-10.png new file mode 100644 index 0000000..cd61cf8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__100.png new file mode 100644 index 0000000..0709092 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__11-15.png new file mode 100644 index 0000000..ef234d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__16-20.png new file mode 100644 index 0000000..8bc2a0a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__21-35.png new file mode 100644 index 0000000..c3c397d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__36-45.png new file mode 100644 index 0000000..3c5b6d9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__46-50.png new file mode 100644 index 0000000..469b14e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__51-55.png new file mode 100644 index 0000000..b931284 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__56-60.png new file mode 100644 index 0000000..d13568e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__61-65.png new file mode 100644 index 0000000..de12e30 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__66.png new file mode 100644 index 0000000..1963855 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__67-70.png new file mode 100644 index 0000000..a2bf65a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__71-75.png new file mode 100644 index 0000000..b83e342 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__76-80.png new file mode 100644 index 0000000..db4282c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__81-85.png new file mode 100644 index 0000000..f790b33 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__86-90.png new file mode 100644 index 0000000..b2e46d2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__91-95.png new file mode 100644 index 0000000..f00a10f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__96-99.png new file mode 100644 index 0000000..4dffff4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__01-05.png new file mode 100644 index 0000000..62369ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__06-10.png new file mode 100644 index 0000000..238a67c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__100.png new file mode 100644 index 0000000..cc45586 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__11-15.png new file mode 100644 index 0000000..d2a749c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__16-20.png new file mode 100644 index 0000000..a842679 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__21-35.png new file mode 100644 index 0000000..c82c6dd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__36-45.png new file mode 100644 index 0000000..43c3c60 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__46-50.png new file mode 100644 index 0000000..ad76591 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__51-55.png new file mode 100644 index 0000000..f676bf4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__56-60.png new file mode 100644 index 0000000..a106493 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__61-65.png new file mode 100644 index 0000000..81e39ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__66.png new file mode 100644 index 0000000..d7f459f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__67-70.png new file mode 100644 index 0000000..376f003 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__71-75.png new file mode 100644 index 0000000..2b160a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__76-80.png new file mode 100644 index 0000000..29268af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__81-85.png new file mode 100644 index 0000000..3c66d62 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__86-90.png new file mode 100644 index 0000000..ae44db9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__91-95.png new file mode 100644 index 0000000..8061ec4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__96-99.png new file mode 100644 index 0000000..45a65c4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__01-05.png new file mode 100644 index 0000000..6dd978a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__06-10.png new file mode 100644 index 0000000..2d6cd8e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__100.png new file mode 100644 index 0000000..b1ad744 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__11-15.png new file mode 100644 index 0000000..1be08f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__16-20.png new file mode 100644 index 0000000..0954424 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__21-35.png new file mode 100644 index 0000000..81ab4f6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__36-45.png new file mode 100644 index 0000000..9c456b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__46-50.png new file mode 100644 index 0000000..c0fedd4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__51-55.png new file mode 100644 index 0000000..7854c0b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__56-60.png new file mode 100644 index 0000000..9eb3f6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__61-65.png new file mode 100644 index 0000000..ba536e5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__66.png new file mode 100644 index 0000000..f04861d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__67-70.png new file mode 100644 index 0000000..28f1825 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__71-75.png new file mode 100644 index 0000000..6d66595 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__76-80.png new file mode 100644 index 0000000..a73528e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__81-85.png new file mode 100644 index 0000000..401dbb3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__86-90.png new file mode 100644 index 0000000..10f0592 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__91-95.png new file mode 100644 index 0000000..ee01e1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__96-99.png new file mode 100644 index 0000000..61922a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/cold/fragments.json new file mode 100644 index 0000000..bc21e0a --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/cold/fragments.json @@ -0,0 +1,3942 @@ +[ + { + "PageNumber": 1, + "Top": 1145, + "Left": 103, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 112 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 130, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 134, + "Width": 9, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 143, + "Width": 82, + "Height": 8, + "Text": "= must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 234, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 239, + "Width": 9, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 249, + "Width": 86, + "Height": 8, + "Text": "= no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 292 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 344, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 348, + "Width": 16, + "Height": 9, + "Text": "\u2211 =", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 364, + "Width": 79, + "Height": 8, + "Text": "stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 452, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 457, + "Width": 7, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 464, + "Width": 88, + "Height": 8, + "Text": "= bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 561, + "Width": 90, + "Height": 8, + "Text": "(-\u00DF) = foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 660, + "Width": 125, + "Height": 8, + "Text": "(\u002B\u00DF) = attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 1142, + "Left": 837, + "Width": 17, + "Height": 13, + "Text": "89", + "Confidence": null, + "CenterX": 845.5 + }, + { + "PageNumber": 1, + "Top": 98, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 147, + "Width": 110, + "Height": 8, + "Text": "Cold breeze yields little damage.", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 293, + "Width": 123, + "Height": 8, + "Text": "Attack yields a brief climate change.", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 440, + "Width": 115, + "Height": 8, + "Text": "You give foe\u0027s cheeks a rosy hue.", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 587, + "Width": 126, + "Height": 8, + "Text": "Your blast looks good, works poorly.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "Sharp and cold air assaults foe\u0027s skin.", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 272, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 418, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 565, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 711, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 858, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 865 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 147, + "Width": 128, + "Height": 8, + "Text": "Feeble and poorly directed. Foe is not", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 147, + "Width": 58, + "Height": 8, + "Text": "really concerned.", + "Confidence": null, + "CenterX": 176 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 293, + "Width": 109, + "Height": 8, + "Text": "Burst of cold causes target mild", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 293, + "Width": 39, + "Height": 8, + "Text": "discomfort.", + "Confidence": null, + "CenterX": 312.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 440, + "Width": 118, + "Height": 8, + "Text": "Your attack conjures a bitter arctic", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 440, + "Width": 94, + "Height": 8, + "Text": "wind. Foe is not impressed.", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 587, + "Width": 109, + "Height": 8, + "Text": "Foe shields himself. Your attack", + "Confidence": null, + "CenterX": 641.5 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 587, + "Width": 85, + "Height": 8, + "Text": "misses most of its mark.", + "Confidence": null, + "CenterX": 629.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 733, + "Width": 123, + "Height": 8, + "Text": "Ice up the ground and foe\u0027s feet. He", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 733, + "Width": 113, + "Height": 8, + "Text": "springs clear. You have initiative.", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 272, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 418, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 565, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 711, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 858, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 865 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 98, + "Width": 36, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 147, + "Width": 131, + "Height": 8, + "Text": "Foe dodges your attack with too much", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 147, + "Width": 87, + "Height": 8, + "Text": "effort. You have initiative.", + "Confidence": null, + "CenterX": 190.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 293, + "Width": 109, + "Height": 8, + "Text": "Foe evades frantically. He is still", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 293, + "Width": 130, + "Height": 8, + "Text": "chilled. You have initiative next round.", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 440, + "Width": 130, + "Height": 8, + "Text": "Encrust foe with ice. He is unbalanced", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 440, + "Width": 129, + "Height": 8, + "Text": "as he shakes it off. You gain initiative.", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 587, + "Width": 118, + "Height": 8, + "Text": "Light frosting leaves foe unsteady.", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 587, + "Width": 82, + "Height": 8, + "Text": "You must hit him again.", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 733, + "Width": 121, + "Height": 8, + "Text": "Frigid strike to foe\u0027s torso and face.", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 733, + "Width": 77, + "Height": 8, + "Text": "You have the initiative.", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 272, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 418, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 565, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 695, + "Width": 29, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 842, + "Width": 29, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 227, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 215, + "Left": 147, + "Width": 118, + "Height": 8, + "Text": "Foe is fearful of your assault. Your", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 147, + "Width": 101, + "Height": 8, + "Text": "attack gives you the initiative.", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 215, + "Left": 293, + "Width": 127, + "Height": 8, + "Text": "Assault blinds foe for a moment. You", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 293, + "Width": 91, + "Height": 8, + "Text": "have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 338.5 + }, + { + "PageNumber": 1, + "Top": 215, + "Left": 440, + "Width": 133, + "Height": 8, + "Text": "Numbing whirlwind encircles foe. You", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 440, + "Width": 91, + "Height": 8, + "Text": "have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 215, + "Left": 587, + "Width": 121, + "Height": 8, + "Text": "Foe\u0027s attempts to evade and strikes", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 587, + "Width": 100, + "Height": 8, + "Text": "himself. You try not to laugh.", + "Confidence": null, + "CenterX": 637 + }, + { + "PageNumber": 1, + "Top": 215, + "Left": 733, + "Width": 133, + "Height": 8, + "Text": "Foe\u0027s failed efforts to avoid your attack", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 225, + "Left": 733, + "Width": 115, + "Height": 8, + "Text": "puts him at a grave disadvantage.", + "Confidence": null, + "CenterX": 790.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 272, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 418, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 565, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 695, + "Width": 29, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 842, + "Width": 29, + "Height": 8, + "Text": "\u002B7H \u2013 \u03C0", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 147, + "Width": 117, + "Height": 8, + "Text": "Burst of cold to the face sends foe", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 147, + "Width": 131, + "Height": 8, + "Text": "stumbling back. You have initiative for", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 147, + "Width": 33, + "Height": 8, + "Text": "2 rounds.", + "Confidence": null, + "CenterX": 163.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 293, + "Width": 128, + "Height": 8, + "Text": "Frost laden blast forces foe back. Any", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 293, + "Width": 123, + "Height": 8, + "Text": "containers of water freeze and burst", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 293, + "Width": 128, + "Height": 8, + "Text": "open. You have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 440, + "Width": 120, + "Height": 8, + "Text": "Disorient foe with a tricky shot. His", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 440, + "Width": 124, + "Height": 8, + "Text": "garments have failed to keep out the", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 440, + "Width": 104, + "Height": 8, + "Text": "chill. Press him while you can.", + "Confidence": null, + "CenterX": 492 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 587, + "Width": 129, + "Height": 8, + "Text": "With a burst of white, you shower foe", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 587, + "Width": 134, + "Height": 8, + "Text": "with ice crystals. Foe closes his eyes to", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 587, + "Width": 69, + "Height": 8, + "Text": "avoid the onslaught.", + "Confidence": null, + "CenterX": 621.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 733, + "Width": 127, + "Height": 8, + "Text": "Freeze foe\u0027s hair and scalp. If foe has", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 733, + "Width": 135, + "Height": 8, + "Text": "long hair, it breaks off! Foe struggles in", + "Confidence": null, + "CenterX": 800.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 733, + "Width": 89, + "Height": 8, + "Text": "vain to repair the damage.", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 272, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 418, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 549, + "Width": 29, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 659, + "Width": 67, + "Height": 8, + "Text": "\u002B7H \u2013 \u03C0 \u2013 \u222B \u2013(-20)", + "Confidence": null, + "CenterX": 692.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 820, + "Width": 51, + "Height": 8, + "Text": "\u002B8H \u2013 (2\u03C0-15)", + "Confidence": null, + "CenterX": 845.5 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 147, + "Width": 129, + "Height": 8, + "Text": "Your attack freezes one of foe\u0027s metal", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 147, + "Width": 123, + "Height": 8, + "Text": "items. Foe takes a defensive stance.", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 293, + "Width": 132, + "Height": 8, + "Text": "Foe makes a futile attempt to parry the", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 293, + "Width": 131, + "Height": 8, + "Text": "attack;. He loses 3 rounds of initiative.", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 440, + "Width": 109, + "Height": 8, + "Text": "Catch foe in lower leg. You gain", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 440, + "Width": 117, + "Height": 8, + "Text": "initiative while foe regains footing.", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 587, + "Width": 125, + "Height": 8, + "Text": "Foe ices down; freezing any exposed", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 587, + "Width": 77, + "Height": 8, + "Text": "skin. The pain is great.", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "Assault to foe\u0027s legs. Hypothermic, he", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 733, + "Width": 101, + "Height": 8, + "Text": "struggles to remain standing.", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 254, + "Width": 31, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 401, + "Width": 31, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 416.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 531, + "Width": 47, + "Height": 8, + "Text": "\u002B7H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 554.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 650, + "Width": 75, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 687.5 + }, + { + "PageNumber": 1, + "Top": 343, + "Left": 838, + "Width": 35, + "Height": 8, + "Text": "\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 855.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 147, + "Width": 133, + "Height": 8, + "Text": "Scatter your attack all over foe\u0027s chest.", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 147, + "Width": 118, + "Height": 8, + "Text": "Foe is covered with frost. He looks", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 147, + "Width": 32, + "Height": 8, + "Text": "ghoulish.", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 293, + "Width": 128, + "Height": 8, + "Text": "Cold penetrates foe\u0027s chest and gives", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 293, + "Width": 134, + "Height": 8, + "Text": "him frostbite. The pain must be severe.", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 293, + "Width": 63, + "Height": 8, + "Text": "He stumbles back.", + "Confidence": null, + "CenterX": 324.5 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 440, + "Width": 132, + "Height": 8, + "Text": "Blast hits foe\u0027s chest and scatters. The", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 440, + "Width": 131, + "Height": 8, + "Text": "cold stings all exposed skin. Foe has a", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 440, + "Width": 87, + "Height": 8, + "Text": "shocked look on his face.", + "Confidence": null, + "CenterX": 483.5 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 587, + "Width": 133, + "Height": 8, + "Text": "Assault lands on foe\u0027s weapon arm. He", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 587, + "Width": 133, + "Height": 8, + "Text": "makes a supreme effort to pull his arm", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 587, + "Width": 132, + "Height": 8, + "Text": "away. Foe is unable to protect himself.", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 359, + "Left": 733, + "Width": 124, + "Height": 8, + "Text": "Glancing strike to lower back. Foe is", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 733, + "Width": 117, + "Height": 8, + "Text": "spun about and slings his weapon", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 733, + "Width": 90, + "Height": 8, + "Text": "away. You have him now.", + "Confidence": null, + "CenterX": 778 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 251, + "Width": 34, + "Height": 8, + "Text": "\u002B6H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 380, + "Width": 51, + "Height": 8, + "Text": "\u002B7H \u2013 2\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 547, + "Width": 31, + "Height": 8, + "Text": "\u002B8H \u2013 \u2211", + "Confidence": null, + "CenterX": 562.5 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 650, + "Width": 75, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 687.5 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 836, + "Width": 36, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 854 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 147, + "Width": 123, + "Height": 8, + "Text": "Blow to foe\u0027s chest. Your attack has", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 147, + "Width": 81, + "Height": 8, + "Text": "force and foe stumbles.", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 293, + "Width": 131, + "Height": 8, + "Text": "Strong off-center blast takes foe in his", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 293, + "Width": 88, + "Height": 8, + "Text": "shield arm wrist and side.", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 440, + "Width": 124, + "Height": 8, + "Text": "Hard strike to chest, armor does not", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 440, + "Width": 114, + "Height": 8, + "Text": "help. Blow leaves its frigid mark.", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 587, + "Width": 127, + "Height": 8, + "Text": "Heavy blow to shield shoulder. Foe is", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 587, + "Width": 128, + "Height": 8, + "Text": "knocked back 5 feet. Muscle damage.", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 733, + "Width": 125, + "Height": 8, + "Text": "Blow to side. Foe seeks to regain his", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 733, + "Width": 131, + "Height": 8, + "Text": "wind and survive your next onslaught.", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 254, + "Width": 31, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 383, + "Width": 49, + "Height": 8, + "Text": "\u002B8H \u2013 \u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 407.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 517, + "Width": 62, + "Height": 8, + "Text": "\u002B5H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 548 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 668, + "Width": 58, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 697 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 811, + "Width": 61, + "Height": 8, + "Text": "\u002B11H \u2013 \u2211\u220F \u2013 4\u222B", + "Confidence": null, + "CenterX": 841.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 147, + "Width": 121, + "Height": 8, + "Text": "Strike falls on an exposed area. Foe", + "Confidence": null, + "CenterX": 207.5 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 147, + "Width": 118, + "Height": 8, + "Text": "gives ground. He is shaken but his", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 478, + "Left": 147, + "Width": 55, + "Height": 8, + "Text": "guard is still up.", + "Confidence": null, + "CenterX": 174.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 293, + "Width": 117, + "Height": 8, + "Text": "Foe turns to avoid your attack and", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 293, + "Width": 134, + "Height": 8, + "Text": "exposes his back. All wood on his back", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 293, + "Width": 93, + "Height": 8, + "Text": "becomes frozen and brittle.", + "Confidence": null, + "CenterX": 339.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 440, + "Width": 115, + "Height": 8, + "Text": "Strong blast hits foe low. His legs", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 440, + "Width": 127, + "Height": 8, + "Text": "almost give with the pain. Foe recoils", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 478, + "Left": 440, + "Width": 103, + "Height": 8, + "Text": "5 feet away from your assault.", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 587, + "Width": 132, + "Height": 8, + "Text": "Miss foe\u0027s arm and strike his thigh. He", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 587, + "Width": 112, + "Height": 8, + "Text": "loses his footing. Skin and nerve", + "Confidence": null, + "CenterX": 643 + }, + { + "PageNumber": 1, + "Top": 478, + "Left": 587, + "Width": 85, + "Height": 8, + "Text": "damage causes foe pain.", + "Confidence": null, + "CenterX": 629.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 733, + "Width": 126, + "Height": 8, + "Text": "Your blast engulfs foe\u0027s weapon arm", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "and climbs toward his torso. He steps", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 478, + "Left": 733, + "Width": 104, + "Height": 8, + "Text": "away frantic to evade the pain.", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 507, + "Left": 250, + "Width": 36, + "Height": 8, + "Text": "\u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 507, + "Left": 376, + "Width": 56, + "Height": 8, + "Text": "\u002B9H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 491, + "Width": 88, + "Height": 8, + "Text": "with leg armor: \u002B5H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 535 + }, + { + "PageNumber": 1, + "Top": 507, + "Left": 488, + "Width": 91, + "Height": 8, + "Text": "w/o leg armor: \u002B9H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 533.5 + }, + { + "PageNumber": 1, + "Top": 507, + "Left": 665, + "Width": 60, + "Height": 8, + "Text": "\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 695 + }, + { + "PageNumber": 1, + "Top": 507, + "Left": 782, + "Width": 89, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 4\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 826.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 147, + "Width": 120, + "Height": 8, + "Text": "Well placed. Strike slams into foe\u0027s", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 147, + "Width": 134, + "Height": 8, + "Text": "weapon arm. Foe\u0027s evasion is comical.", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 293, + "Width": 120, + "Height": 8, + "Text": "Solid strike to foe\u0027s forearm. Foe\u0027s", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 293, + "Width": 101, + "Height": 8, + "Text": "hand frozen shut for 1 round.", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 440, + "Width": 127, + "Height": 8, + "Text": "Blast freeze dries organic material on", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 440, + "Width": 37, + "Height": 8, + "Text": "foe\u0027s back.", + "Confidence": null, + "CenterX": 458.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 587, + "Width": 124, + "Height": 8, + "Text": "Blast freezes foe\u0027s arm and shield. If", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 587, + "Width": 114, + "Height": 8, + "Text": "no shield,arm useless from nerve", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 587, + "Width": 29, + "Height": 8, + "Text": "damage.", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "Strike to foe\u0027s waist. All equipment on", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 733, + "Width": 125, + "Height": 8, + "Text": "belt freezes and breaks if foe moves.", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 193, + "Width": 93, + "Height": 8, + "Text": "with arm greaves: \u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 239.5 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 186, + "Width": 100, + "Height": 8, + "Text": "w/o arm greaves: \u002B9H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 236 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 350, + "Width": 82, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-5) \u2013 3\u222B", + "Confidence": null, + "CenterX": 391 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 539, + "Width": 40, + "Height": 8, + "Text": "\u002B11H \u2013 4\u2211", + "Confidence": null, + "CenterX": 559 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 665, + "Width": 60, + "Height": 8, + "Text": "with shield: \u002B20H", + "Confidence": null, + "CenterX": 695 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 803, + "Width": 68, + "Height": 8, + "Text": "\u002B13H \u2013 3\u2211 \u2013 (- 30)", + "Confidence": null, + "CenterX": 837 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 108, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 147, + "Width": 117, + "Height": 8, + "Text": "Steal the heat from foe\u0027s neck and", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 147, + "Width": 124, + "Height": 8, + "Text": "chest area. Foe drops anything he is", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 147, + "Width": 102, + "Height": 8, + "Text": "holding and blocks his throat.", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 293, + "Width": 104, + "Height": 8, + "Text": "Foe is covered by the blast. All", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 293, + "Width": 118, + "Height": 8, + "Text": "extremities are damaged. The pain", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 293, + "Width": 102, + "Height": 8, + "Text": "grows until foe is warmed up.", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 440, + "Width": 124, + "Height": 8, + "Text": "Foe\u0027s response to your burst of cold", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 440, + "Width": 118, + "Height": 8, + "Text": "sends him to the ground hard. Foe", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 440, + "Width": 105, + "Height": 8, + "Text": "jams his wrist into the ground.", + "Confidence": null, + "CenterX": 492.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 587, + "Width": 119, + "Height": 8, + "Text": "Frigid onslaught fills foes eyes and", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 587, + "Width": 120, + "Height": 8, + "Text": "mouth with ice. Foe is blinded for a", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 587, + "Width": 121, + "Height": 8, + "Text": "moment until he can clear his eyes.", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "Your strike steals the heat out of foe\u0027s", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 733, + "Width": 116, + "Height": 8, + "Text": "neck and upper chest. Nerves and", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 733, + "Width": 77, + "Height": 8, + "Text": "muscles are damaged.", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 238, + "Width": 47, + "Height": 8, + "Text": "\u002B10H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 394, + "Width": 38, + "Height": 8, + "Text": "4\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 521, + "Width": 57, + "Height": 8, + "Text": "6\u2211 \u2013 (-15) \u2013 4\u222B", + "Confidence": null, + "CenterX": 549.5 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 668, + "Width": 57, + "Height": 8, + "Text": "4\u2211 \u2013 (-30) \u2013 4\u222B", + "Confidence": null, + "CenterX": 696.5 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 807, + "Width": 65, + "Height": 8, + "Text": "\u002B15H \u2013 8\u2211\u220F \u2013 4\u222B", + "Confidence": null, + "CenterX": 839.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 147, + "Width": 124, + "Height": 8, + "Text": "Score a hit to foe\u0027s side. It produces", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 650, + "Left": 147, + "Width": 129, + "Height": 8, + "Text": "mild frostbite. Any herbs on foe\u0027s belt", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 147, + "Width": 37, + "Height": 8, + "Text": "are ruined.", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 293, + "Width": 128, + "Height": 8, + "Text": "Spray foe\u0027s face with a powerful chill.", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 650, + "Left": 293, + "Width": 130, + "Height": 8, + "Text": "He tries without success to push your", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 293, + "Width": 120, + "Height": 8, + "Text": "attack away . The damage endures.", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 440, + "Width": 130, + "Height": 8, + "Text": "Freeze foe\u0027s weapon arm. It is useless", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 650, + "Left": 440, + "Width": 123, + "Height": 8, + "Text": "until it is warmed up. Foe is in great", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 440, + "Width": 93, + "Height": 8, + "Text": "pain and stuggles to stand.", + "Confidence": null, + "CenterX": 486.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 587, + "Width": 132, + "Height": 8, + "Text": "Polar wind pierces deep into chest and", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 650, + "Left": 587, + "Width": 129, + "Height": 8, + "Text": "leaves foe trembling. You are close to", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 587, + "Width": 114, + "Height": 8, + "Text": "victory. Foe faces the wrong way.", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 733, + "Width": 104, + "Height": 8, + "Text": "Blow to foe\u0027s shield arm. He is", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 650, + "Left": 733, + "Width": 131, + "Height": 8, + "Text": "knocked down. If foe has a shield, it is", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 733, + "Width": 113, + "Height": 8, + "Text": "broken. If not, the arm is broken.", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 686, + "Left": 221, + "Width": 65, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-5)", + "Confidence": null, + "CenterX": 253.5 + }, + { + "PageNumber": 1, + "Top": 686, + "Left": 350, + "Width": 82, + "Height": 8, + "Text": "\u002B11H \u2013 2\u2211 \u2013 \u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 391 + }, + { + "PageNumber": 1, + "Top": 686, + "Left": 497, + "Width": 82, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211 \u2013 \u220F \u2013 (-15)", + "Confidence": null, + "CenterX": 538 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 598, + "Width": 127, + "Height": 8, + "Text": "with chest armor: \u002B15H \u2013 \u2211\u220F \u2013 (-5)", + "Confidence": null, + "CenterX": 661.5 + }, + { + "PageNumber": 1, + "Top": 686, + "Left": 591, + "Width": 134, + "Height": 8, + "Text": "w/o ch armor: \u002B13H \u2013 3\u2211 \u2013 \u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 817, + "Width": 54, + "Height": 8, + "Text": "with shield: 2\u2211", + "Confidence": null, + "CenterX": 844 + }, + { + "PageNumber": 1, + "Top": 686, + "Left": 819, + "Width": 52, + "Height": 8, + "Text": "w/o shield: 6\u2211", + "Confidence": null, + "CenterX": 845 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 701, + "Left": 147, + "Width": 127, + "Height": 8, + "Text": "Strong unbalancing blast. Foe\u0027s body", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 711, + "Left": 147, + "Width": 66, + "Height": 8, + "Text": "temperature drops.", + "Confidence": null, + "CenterX": 180 + }, + { + "PageNumber": 1, + "Top": 701, + "Left": 293, + "Width": 135, + "Height": 8, + "Text": "Strike lands on foe\u0027s legs. The pain and", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 711, + "Left": 293, + "Width": 88, + "Height": 8, + "Text": "shock cause him to falter.", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 701, + "Left": 440, + "Width": 114, + "Height": 8, + "Text": "Side strike hits foe just right. Any", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 711, + "Left": 440, + "Width": 125, + "Height": 8, + "Text": "leather or cloth freezes and shatters.", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 701, + "Left": 587, + "Width": 107, + "Height": 8, + "Text": "Blast drains the heat from foe\u0027s", + "Confidence": null, + "CenterX": 640.5 + }, + { + "PageNumber": 1, + "Top": 711, + "Left": 587, + "Width": 108, + "Height": 8, + "Text": "weapon arm. Hand and arm are", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 721, + "Left": 587, + "Width": 120, + "Height": 8, + "Text": "useless. The hand is frozen closed.", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 701, + "Left": 733, + "Width": 125, + "Height": 8, + "Text": "Blast freezes weapon hand, shoulder", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 711, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "and face. Foe is numb and needs time", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 721, + "Left": 733, + "Width": 112, + "Height": 8, + "Text": "to warm up. Foe is still standing.", + "Confidence": null, + "CenterX": 789 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 219, + "Width": 66, + "Height": 8, + "Text": "\u002B11H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 367, + "Width": 65, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 399.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 513, + "Width": 66, + "Height": 8, + "Text": "2\u2211\u220F \u2013 3\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 652, + "Width": 73, + "Height": 8, + "Text": "\u002B13H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 688.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 832, + "Width": 40, + "Height": 8, + "Text": "\u002B15H \u2013 3\u2211", + "Confidence": null, + "CenterX": 852 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 147, + "Width": 132, + "Height": 8, + "Text": "Strike to foe\u0027s shield arm. If foe sees it", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 766, + "Left": 147, + "Width": 132, + "Height": 8, + "Text": "he may block with a shield. Foe recoils", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 147, + "Width": 71, + "Height": 8, + "Text": "5 feet from the blast.", + "Confidence": null, + "CenterX": 182.5 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 293, + "Width": 123, + "Height": 8, + "Text": "Chest strike freezes what it touches.", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 766, + "Left": 293, + "Width": 112, + "Height": 8, + "Text": "Equipment is damaged. The pain", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 293, + "Width": 120, + "Height": 8, + "Text": "persists. Chest armor is destroyed.", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 440, + "Width": 103, + "Height": 8, + "Text": "Blow to foe\u0027s arms. Any metal", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 766, + "Left": 440, + "Width": 128, + "Height": 8, + "Text": "armguards freeze, immobilizing arms", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 440, + "Width": 135, + "Height": 8, + "Text": "until the armor is removed or unfrozen.", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 587, + "Width": 132, + "Height": 8, + "Text": "Strike to foe\u0027s side downs him. Severe", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 766, + "Left": 587, + "Width": 120, + "Height": 8, + "Text": "frostbite hampers movements. Any", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 587, + "Width": 131, + "Height": 8, + "Text": "liquid among foe\u0027s equipment freezes.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 756, + "Left": 733, + "Width": 122, + "Height": 8, + "Text": "Solid chest strike. Foe flips onto his", + "Confidence": null, + "CenterX": 794 + }, + { + "PageNumber": 1, + "Top": 766, + "Left": 733, + "Width": 128, + "Height": 8, + "Text": "back , dropping all he holds. Foe is at", + "Confidence": null, + "CenterX": 797 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 733, + "Width": 41, + "Height": 8, + "Text": "your mercy.", + "Confidence": null, + "CenterX": 753.5 + }, + { + "PageNumber": 1, + "Top": 804, + "Left": 211, + "Width": 75, + "Height": 8, + "Text": "with shield: \u002B2H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 248.5 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 190, + "Width": 95, + "Height": 8, + "Text": "w/o shield: \u002B12H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 237.5 + }, + { + "PageNumber": 1, + "Top": 804, + "Left": 298, + "Width": 134, + "Height": 8, + "Text": "w/ ch. armor: \u002B13H \u2013 4\u2211 \u2013 (\u002B15) \u2013 3\u222B", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 312, + "Width": 120, + "Height": 8, + "Text": "w/o chest armor: \u002B20H \u2013 4\u03C0 \u2013 (-5)", + "Confidence": null, + "CenterX": 372 + }, + { + "PageNumber": 1, + "Top": 804, + "Left": 485, + "Width": 93, + "Height": 8, + "Text": "with chest armor: 3\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 531.5 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 483, + "Width": 96, + "Height": 8, + "Text": "w/o chest armor: (-25) \u2013 4\u222B", + "Confidence": null, + "CenterX": 531 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 652, + "Width": 73, + "Height": 8, + "Text": "\u002B15H \u2013 3\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 688.5 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 829, + "Width": 44, + "Height": 8, + "Text": "12\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 851 + }, + { + "PageNumber": 1, + "Top": 842, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 147, + "Width": 110, + "Height": 8, + "Text": "Back blast. Any glass on back is", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 147, + "Width": 77, + "Height": 8, + "Text": "broken. Painful bruise.", + "Confidence": null, + "CenterX": 185.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 293, + "Width": 117, + "Height": 8, + "Text": "Clean hard strike pushes foe over,", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 293, + "Width": 134, + "Height": 8, + "Text": "cracking ribs. His recovery lacks grace.", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 440, + "Width": 131, + "Height": 8, + "Text": "Arctic blast to foe\u0027s torso. Foe is badly", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 440, + "Width": 125, + "Height": 8, + "Text": "frostbitten and falls to knees in pain.", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 587, + "Width": 133, + "Height": 8, + "Text": "Freezes foe\u0027s hands. Arms are useless.", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 587, + "Width": 111, + "Height": 8, + "Text": "Foe drops what he was carrying.", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 733, + "Width": 128, + "Height": 8, + "Text": "Assault to throat and face is terminal.", + "Confidence": null, + "CenterX": 797 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 733, + "Width": 134, + "Height": 8, + "Text": "Foe is still active but dies in 12 rounds.", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 238, + "Width": 47, + "Height": 8, + "Text": "\u002B13H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 341, + "Width": 91, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-15) \u2013 4\u222B", + "Confidence": null, + "CenterX": 386.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 520, + "Width": 59, + "Height": 8, + "Text": "6\u2211 \u2013 5\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 549.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 692, + "Width": 33, + "Height": 8, + "Text": "9\u2211 \u2013 6\u222B", + "Confidence": null, + "CenterX": 708.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 854, + "Width": 18, + "Height": 8, + "Text": "\u002B17H", + "Confidence": null, + "CenterX": 863 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 147, + "Width": 128, + "Height": 8, + "Text": "Assault to foe\u0027s lower leg freezes part", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 147, + "Width": 111, + "Height": 8, + "Text": "of it. Foe falls down. Without leg", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 147, + "Width": 109, + "Height": 8, + "Text": "armor, foot must be amputated.", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 293, + "Width": 130, + "Height": 8, + "Text": "Strike lower leg and freeze it. With leg", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 293, + "Width": 132, + "Height": 8, + "Text": "armor, he needs aid in 20 rnds to keep", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 293, + "Width": 131, + "Height": 8, + "Text": "the foot. Without leg armor, it\u0027s gone.", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 440, + "Width": 121, + "Height": 8, + "Text": "Blow to foe\u0027s knees. They freeze up", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 440, + "Width": 132, + "Height": 8, + "Text": "and foe falls. On impact, foe shatters a", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 440, + "Width": 122, + "Height": 8, + "Text": "knee. His fall makes it twice as bad.", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 587, + "Width": 124, + "Height": 8, + "Text": "Chest hit causes much pain. If foe is", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 587, + "Width": 124, + "Height": 8, + "Text": "warmly clothed he is knocked out. If", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 587, + "Width": 117, + "Height": 8, + "Text": "not he dies of shock in 12 rounds.", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 733, + "Width": 124, + "Height": 8, + "Text": "Your ruthless tempest entangles foe", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "and steals the warmth from his body.", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 733, + "Width": 134, + "Height": 8, + "Text": "He drops and dies in 9 inactive rounds.", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 186, + "Width": 100, + "Height": 8, + "Text": "with leg armor: 2\u2211 \u2013 6(-10)", + "Confidence": null, + "CenterX": 236 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 216, + "Width": 70, + "Height": 8, + "Text": "w/o leg armor: (-70)", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 364, + "Width": 67, + "Height": 8, + "Text": "with leg armor: 3\u2211", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 363, + "Width": 70, + "Height": 8, + "Text": "w/o leg armor: (-75)", + "Confidence": null, + "CenterX": 398 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 521, + "Width": 57, + "Height": 8, + "Text": "9\u2211 \u2013 6\u222B \u2013 (-80)", + "Confidence": null, + "CenterX": 549.5 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 681, + "Width": 44, + "Height": 8, + "Text": "\u002B25H \u2013 (-40)", + "Confidence": null, + "CenterX": 703 + }, + { + "PageNumber": 1, + "Top": 923, + "Left": 867, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 869 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 147, + "Width": 131, + "Height": 8, + "Text": "Blow lands on foe\u0027s face. It freezes his", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 147, + "Width": 129, + "Height": 8, + "Text": "nose, ears and cheeks. Foe collapses.", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 959, + "Left": 147, + "Width": 118, + "Height": 8, + "Text": "Without helm, foe loses both ears.", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 293, + "Width": 100, + "Height": 8, + "Text": "Connect with foe\u0027s hip. Hip is", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 293, + "Width": 109, + "Height": 8, + "Text": "fractured. Skin and muscles are", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 959, + "Left": 293, + "Width": 110, + "Height": 8, + "Text": "frostbitten. Foe falls down. He is", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 969, + "Left": 293, + "Width": 56, + "Height": 8, + "Text": "almost helpless.", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 440, + "Width": 123, + "Height": 8, + "Text": "Freeze the blood in foe\u0027s thigh. As it", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 440, + "Width": 117, + "Height": 8, + "Text": "warms the clots move to his heart", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 959, + "Left": 440, + "Width": 79, + "Height": 8, + "Text": "killing him in 9 rounds.", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 587, + "Width": 127, + "Height": 8, + "Text": "All warmth is driven from foe\u0027s lower", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 587, + "Width": 127, + "Height": 8, + "Text": "body. Vital organs are destroyed. Foe", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 959, + "Left": 587, + "Width": 117, + "Height": 8, + "Text": "is immobile, and dies in 9 rounds.", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 733, + "Width": 126, + "Height": 8, + "Text": "Push foe backwards and off balance.", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 949, + "Left": 733, + "Width": 111, + "Height": 8, + "Text": "The blood in foe\u0027s extremeties is", + "Confidence": null, + "CenterX": 788.5 + }, + { + "PageNumber": 1, + "Top": 959, + "Left": 733, + "Width": 129, + "Height": 8, + "Text": "frozen. He dies in 6 rounds of agony.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 986, + "Left": 228, + "Width": 57, + "Height": 8, + "Text": "with helmet: 3\u2211", + "Confidence": null, + "CenterX": 256.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 203, + "Width": 81, + "Height": 8, + "Text": "w/o helmet: 6\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 359, + "Width": 73, + "Height": 8, + "Text": "\u002B17H \u2013 3\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 395.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 504, + "Width": 75, + "Height": 8, + "Text": "\u002B15H \u2013 3\u2211\u220F \u2013 (\u201330)", + "Confidence": null, + "CenterX": 541.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 707, + "Width": 18, + "Height": 8, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 854, + "Width": 18, + "Height": 8, + "Text": "\u002B19H", + "Confidence": null, + "CenterX": 863 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 98, + "Width": 37, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 147, + "Width": 132, + "Height": 8, + "Text": "Chest strike sends foe over hard. He is", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 147, + "Width": 125, + "Height": 8, + "Text": "knocked out. His lips freeze and split", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 147, + "Width": 122, + "Height": 8, + "Text": "open. He cannot speak for 2 weeks.", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 293, + "Width": 128, + "Height": 8, + "Text": "Blast foe\u0027s neck and collarbone. Neck", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 293, + "Width": 127, + "Height": 8, + "Text": "armor will block the attack, but foe is", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 293, + "Width": 127, + "Height": 8, + "Text": "knocked out. If the neck is exposed it", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 1043, + "Left": 293, + "Width": 130, + "Height": 8, + "Text": "freezes solid and foe dies in 9 rounds.", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 440, + "Width": 132, + "Height": 8, + "Text": "Your onslaught freezes foe\u0027s torso and", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 440, + "Width": 112, + "Height": 8, + "Text": "head. Foe remains standing for a", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 440, + "Width": 129, + "Height": 8, + "Text": "moment. He goes into shock and dies", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 1043, + "Left": 440, + "Width": 50, + "Height": 8, + "Text": "6 rounds later.", + "Confidence": null, + "CenterX": 465 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 587, + "Width": 119, + "Height": 8, + "Text": "Foe\u0027s heart and lungs are suddenly", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 587, + "Width": 113, + "Height": 8, + "Text": "frozen by your arctic blast. Foe is", + "Confidence": null, + "CenterX": 643.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 587, + "Width": 103, + "Height": 8, + "Text": "finished. He dies of shock and", + "Confidence": null, + "CenterX": 638.5 + }, + { + "PageNumber": 1, + "Top": 1043, + "Left": 587, + "Width": 82, + "Height": 8, + "Text": "suffocation in 6 rounds.", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 733, + "Width": 120, + "Height": 8, + "Text": "Foe is a lifeless frozen statue. He is", + "Confidence": null, + "CenterX": 793 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 733, + "Width": 133, + "Height": 8, + "Text": "quite dead and well preserved. Store in", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 1033, + "Left": 733, + "Width": 56, + "Height": 8, + "Text": "a cool dry place.", + "Confidence": null, + "CenterX": 761 + }, + { + "PageNumber": 1, + "Top": 1062, + "Left": 272, + "Width": 13, + "Height": 8, + "Text": "9\u2211", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 1062, + "Left": 427, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 429 + }, + { + "PageNumber": 1, + "Top": 1062, + "Left": 560, + "Width": 18, + "Height": 8, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 569 + }, + { + "PageNumber": 1, + "Top": 1062, + "Left": 707, + "Width": 18, + "Height": 8, + "Text": "\u002B19H", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 1062, + "Left": 826, + "Width": 46, + "Height": 8, + "Text": "\u002B20H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 849 + }, + { + "PageNumber": 1, + "Top": 1094, + "Left": 103, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 115 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 147, + "Width": 131, + "Height": 8, + "Text": "Foe is sent into a month long coma by", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 147, + "Width": 107, + "Height": 8, + "Text": "the attack. He loses his nose to", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 147, + "Width": 31, + "Height": 8, + "Text": "frostbite.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 293, + "Width": 131, + "Height": 8, + "Text": "Assault drops foe\u0027s body temperature;", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 293, + "Width": 120, + "Height": 8, + "Text": "his heart stops. He dies in 1 round;", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 293, + "Width": 138, + "Height": 8, + "Text": "well preserved. You are respected by all.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 440, + "Width": 123, + "Height": 8, + "Text": "Blast freezes foe\u0027s eyes, mouth, and", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 440, + "Width": 124, + "Height": 8, + "Text": "neck. Foe falls down in a coma for 2", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 440, + "Width": 131, + "Height": 8, + "Text": "weeks and paralyzed from neck down.", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 587, + "Width": 119, + "Height": 8, + "Text": "Massive assault freezes foe\u0027s body", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 587, + "Width": 134, + "Height": 8, + "Text": "completely. He remains standing, but if", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 587, + "Width": 98, + "Height": 8, + "Text": "knocked over he will shatter.", + "Confidence": null, + "CenterX": 636 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 733, + "Width": 123, + "Height": 8, + "Text": "Foe freezes solid and shatters into a", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 733, + "Width": 130, + "Height": 8, + "Text": "thousand pieces. Most land within 20", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 733, + "Width": 114, + "Height": 8, + "Text": "feet from where he was standing.", + "Confidence": null, + "CenterX": 790 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 267, + "Width": 18, + "Height": 8, + "Text": "\u002B21H", + "Confidence": null, + "CenterX": 276 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 418, + "Width": 15, + "Height": 8, + "Text": "(\u002B5)", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 573, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 707, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 853, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 209, + "Width": 14, + "Height": 14, + "Text": "A", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 356, + "Width": 13, + "Height": 14, + "Text": "B", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 501, + "Width": 16, + "Height": 14, + "Text": "C", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 646, + "Width": 19, + "Height": 14, + "Text": "D", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 796, + "Width": 13, + "Height": 14, + "Text": "E", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 288, + "Width": 420, + "Height": 18, + "Text": "COLD CRITICAL STRIKE TABLE A-10.10.1", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 478, + "Left": 294, + "Width": 93, + "Height": 8, + "Text": "becomes frozen and brittle.", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 622, + "Width": 81, + "Height": 8, + "Text": "arm useless from nerve", + "Confidence": null, + "CenterX": 662.5 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 638, + "Width": 86, + "Height": 8, + "Text": "with shield: \u002B20H \u2013 (-20)", + "Confidence": null, + "CenterX": 681 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 646, + "Width": 79, + "Height": 8, + "Text": "w/o shield: 5\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 685.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 99, + "Width": 34, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 343, + "Width": 335, + "Height": 19, + "Text": "14.1 COLD CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 510.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/cold/pages/page-001.png new file mode 100644 index 0000000..bc440b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/cold/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/cold/parsed-cells.json new file mode 100644 index 0000000..638f097 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/cold/parsed-cells.json @@ -0,0 +1,7595 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Cold breeze yields little damage.", + "\u002B0H" + ], + "BaseLines": [ + "Cold breeze yields little damage.", + "\u002B0H" + ], + "RawCellText": "Cold breeze yields little damage.\n\u002B0H", + "DescriptionText": "Cold breeze yields little damage.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 92, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "cold/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 368, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 540, + "CropTop": 336, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Attack yields a brief climate change.", + "\u002B0H" + ], + "BaseLines": [ + "Attack yields a brief climate change.", + "\u002B0H" + ], + "RawCellText": "Attack yields a brief climate change.\n\u002B0H", + "DescriptionText": "Attack yields a brief climate change.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 92, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "cold/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 368, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 1124, + "CropTop": 336, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "You give foe\u0027s cheeks a rosy hue.", + "\u002B1H" + ], + "BaseLines": [ + "You give foe\u0027s cheeks a rosy hue.", + "\u002B1H" + ], + "RawCellText": "You give foe\u0027s cheeks a rosy hue.\n\u002B1H", + "DescriptionText": "You give foe\u0027s cheeks a rosy hue.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 92, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "cold/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 368, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 1712, + "CropTop": 336, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Your blast looks good, works poorly.", + "\u002B2H" + ], + "BaseLines": [ + "Your blast looks good, works poorly.", + "\u002B2H" + ], + "RawCellText": "Your blast looks good, works poorly.\n\u002B2H", + "DescriptionText": "Your blast looks good, works poorly.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 92, + "Width": 138, + "Height": 27 + }, + "SourceImagePath": "cold/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 368, + "BoundsWidth": 552, + "BoundsHeight": 108, + "CropLeft": 2300, + "CropTop": 336, + "CropWidth": 648, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Sharp and cold air assaults foe\u0027s skin.", + "\u002B3H" + ], + "BaseLines": [ + "Sharp and cold air assaults foe\u0027s skin.", + "\u002B3H" + ], + "RawCellText": "Sharp and cold air assaults foe\u0027s skin.\n\u002B3H", + "DescriptionText": "Sharp and cold air assaults foe\u0027s skin.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 92, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "cold/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 368, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 2884, + "CropTop": 336, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Feeble and poorly directed. Foe is not", + "really concerned.", + "\u002B1H" + ], + "BaseLines": [ + "Feeble and poorly directed. Foe is not", + "really concerned.", + "\u002B1H" + ], + "RawCellText": "Feeble and poorly directed. Foe is not\nreally concerned.\n\u002B1H", + "DescriptionText": "Feeble and poorly directed. Foe is not really concerned.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 127, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 508, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 476, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Burst of cold causes target mild", + "discomfort.", + "\u002B2H" + ], + "BaseLines": [ + "Burst of cold causes target mild", + "discomfort.", + "\u002B2H" + ], + "RawCellText": "Burst of cold causes target mild\ndiscomfort.\n\u002B2H", + "DescriptionText": "Burst of cold causes target mild discomfort.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 127, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 508, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 476, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Your attack conjures a bitter arctic", + "wind. Foe is not impressed.", + "\u002B3H" + ], + "BaseLines": [ + "Your attack conjures a bitter arctic", + "wind. Foe is not impressed.", + "\u002B3H" + ], + "RawCellText": "Your attack conjures a bitter arctic\nwind. Foe is not impressed.\n\u002B3H", + "DescriptionText": "Your attack conjures a bitter arctic wind. Foe is not impressed.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 127, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 508, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 476, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe shields himself. Your attack", + "misses most of its mark.", + "\u002B4H" + ], + "BaseLines": [ + "Foe shields himself. Your attack", + "misses most of its mark.", + "\u002B4H" + ], + "RawCellText": "Foe shields himself. Your attack\nmisses most of its mark.\n\u002B4H", + "DescriptionText": "Foe shields himself. Your attack misses most of its mark.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 127, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 508, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 476, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Ice up the ground and foe\u0027s feet. He", + "springs clear. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Ice up the ground and foe\u0027s feet. He", + "springs clear. You have initiative.", + "\u002B4H" + ], + "RawCellText": "Ice up the ground and foe\u0027s feet. He\nsprings clear. You have initiative.\n\u002B4H", + "DescriptionText": "Ice up the ground and foe\u0027s feet. He springs clear. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 127, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 508, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 476, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foe dodges your attack with too much", + "effort. You have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "Foe dodges your attack with too much", + "effort. You have initiative.", + "\u002B2H" + ], + "RawCellText": "Foe dodges your attack with too much\neffort. You have initiative.\n\u002B2H", + "DescriptionText": "Foe dodges your attack with too much effort. You have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 170, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 680, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 648, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe evades frantically. He is still", + "chilled. You have initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe evades frantically. He is still", + "chilled. You have initiative next round.", + "\u002B3H" + ], + "RawCellText": "Foe evades frantically. He is still\nchilled. You have initiative next round.\n\u002B3H", + "DescriptionText": "Foe evades frantically. He is still chilled. You have initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 170, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 680, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 648, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Encrust foe with ice. He is unbalanced", + "as he shakes it off. You gain initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Encrust foe with ice. He is unbalanced", + "as he shakes it off. You gain initiative.", + "\u002B4H" + ], + "RawCellText": "Encrust foe with ice. He is unbalanced\nas he shakes it off. You gain initiative.\n\u002B4H", + "DescriptionText": "Encrust foe with ice. He is unbalanced as he shakes it off. You gain initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 170, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 680, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 648, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Light frosting leaves foe unsteady.", + "You must hit him again.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Light frosting leaves foe unsteady.", + "You must hit him again.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Light frosting leaves foe unsteady.\nYou must hit him again.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Light frosting leaves foe unsteady. You must hit him again.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 170, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Frigid strike to foe\u0027s torso and face.", + "You have the initiative.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Frigid strike to foe\u0027s torso and face.", + "You have the initiative.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Frigid strike to foe\u0027s torso and face.\nYou have the initiative.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Frigid strike to foe\u0027s torso and face. You have the initiative.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 170, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 680, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 648, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe is fearful of your assault. Your", + "attack gives you the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Foe is fearful of your assault. Your", + "attack gives you the initiative.", + "\u002B3H" + ], + "RawCellText": "Foe is fearful of your assault. Your\nattack gives you the initiative.\n\u002B3H", + "DescriptionText": "Foe is fearful of your assault. Your attack gives you the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 215, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 860, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 828, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Assault blinds foe for a moment. You", + "have 2 rounds of initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Assault blinds foe for a moment. You", + "have 2 rounds of initiative.", + "\u002B4H" + ], + "RawCellText": "Assault blinds foe for a moment. You\nhave 2 rounds of initiative.\n\u002B4H", + "DescriptionText": "Assault blinds foe for a moment. You have 2 rounds of initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 215, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 860, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 828, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Numbing whirlwind encircles foe. You", + "have 2 rounds of initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Numbing whirlwind encircles foe. You", + "have 2 rounds of initiative.", + "\u002B5H" + ], + "RawCellText": "Numbing whirlwind encircles foe. You\nhave 2 rounds of initiative.\n\u002B5H", + "DescriptionText": "Numbing whirlwind encircles foe. You have 2 rounds of initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 215, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 860, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 828, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s attempts to evade and strikes", + "himself. You try not to laugh.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe\u0027s attempts to evade and strikes", + "himself. You try not to laugh.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Foe\u0027s attempts to evade and strikes\nhimself. You try not to laugh.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Foe\u0027s attempts to evade and strikes himself. You try not to laugh.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 215, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 860, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 828, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s failed efforts to avoid your attack", + "puts him at a grave disadvantage.", + "\u002B7H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe\u0027s failed efforts to avoid your attack", + "puts him at a grave disadvantage.", + "\u002B7H \u2013 \u03C0" + ], + "RawCellText": "Foe\u0027s failed efforts to avoid your attack\nputs him at a grave disadvantage.\n\u002B7H \u2013 \u03C0", + "DescriptionText": "Foe\u0027s failed efforts to avoid your attack puts him at a grave disadvantage.", + "RawAffixText": "\u002B7H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 215, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 860, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 828, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Burst of cold to the face sends foe", + "stumbling back. You have initiative for", + "2 rounds.", + "\u002B4H" + ], + "BaseLines": [ + "Burst of cold to the face sends foe", + "stumbling back. You have initiative for", + "2 rounds.", + "\u002B4H" + ], + "RawCellText": "Burst of cold to the face sends foe\nstumbling back. You have initiative for\n2 rounds.\n\u002B4H", + "DescriptionText": "Burst of cold to the face sends foe stumbling back. You have initiative for 2 rounds.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 260, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 1040, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 540, + "CropTop": 1008, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Frost laden blast forces foe back. Any", + "containers of water freeze and burst", + "open. You have 2 rounds of initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Frost laden blast forces foe back. Any", + "containers of water freeze and burst", + "open. You have 2 rounds of initiative.", + "\u002B5H" + ], + "RawCellText": "Frost laden blast forces foe back. Any\ncontainers of water freeze and burst\nopen. You have 2 rounds of initiative.\n\u002B5H", + "DescriptionText": "Frost laden blast forces foe back. Any containers of water freeze and burst open. You have 2 rounds of initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 260, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 1040, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1124, + "CropTop": 1008, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Disorient foe with a tricky shot. His", + "garments have failed to keep out the", + "chill. Press him while you can.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Disorient foe with a tricky shot. His", + "garments have failed to keep out the", + "chill. Press him while you can.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Disorient foe with a tricky shot. His\ngarments have failed to keep out the\nchill. Press him while you can.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Disorient foe with a tricky shot. His garments have failed to keep out the chill. Press him while you can.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 260, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1040, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 1008, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "With a burst of white, you shower foe", + "with ice crystals. Foe closes his eyes to", + "avoid the onslaught.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B \u2013(-20)" + ], + "BaseLines": [ + "With a burst of white, you shower foe", + "with ice crystals. Foe closes his eyes to", + "avoid the onslaught.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B \u2013(-20)" + ], + "RawCellText": "With a burst of white, you shower foe\nwith ice crystals. Foe closes his eyes to\navoid the onslaught.\n\u002B7H \u2013 \u03C0 \u2013 \u222B \u2013(-20)", + "DescriptionText": "With a burst of white, you shower foe with ice crystals. Foe closes his eyes to avoid the onslaught.", + "RawAffixText": "\u002B7H \u2013 \u03C0 \u2013 \u222B \u2013(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 260, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 1040, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2300, + "CropTop": 1008, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Freeze foe\u0027s hair and scalp. If foe has", + "long hair, it breaks off! Foe struggles in", + "vain to repair the damage.", + "\u002B8H \u2013 (2\u03C0-15)" + ], + "BaseLines": [ + "Freeze foe\u0027s hair and scalp. If foe has", + "long hair, it breaks off! Foe struggles in", + "vain to repair the damage.", + "\u002B8H \u2013 (2\u03C0-15)" + ], + "RawCellText": "Freeze foe\u0027s hair and scalp. If foe has\nlong hair, it breaks off! Foe struggles in\nvain to repair the damage.\n\u002B8H \u2013 (2\u03C0-15)", + "DescriptionText": "Freeze foe\u0027s hair and scalp. If foe has long hair, it breaks off! Foe struggles in vain to repair the damage.", + "RawAffixText": "\u002B8H \u2013 (2\u03C0-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 260, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 1040, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2884, + "CropTop": 1008, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Your attack freezes one of foe\u0027s metal", + "items. Foe takes a defensive stance.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Your attack freezes one of foe\u0027s metal", + "items. Foe takes a defensive stance.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Your attack freezes one of foe\u0027s metal\nitems. Foe takes a defensive stance.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Your attack freezes one of foe\u0027s metal items. Foe takes a defensive stance.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 314, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 1256, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 1224, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Foe makes a futile attempt to parry the", + "attack;. He loses 3 rounds of initiative.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe makes a futile attempt to parry the", + "attack;. He loses 3 rounds of initiative.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Foe makes a futile attempt to parry the\nattack;. He loses 3 rounds of initiative.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Foe makes a futile attempt to parry the attack;. He loses 3 rounds of initiative.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 314, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 1256, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 1224, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Catch foe in lower leg. You gain", + "initiative while foe regains footing.", + "\u002B7H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Catch foe in lower leg. You gain", + "initiative while foe regains footing.", + "\u002B7H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "Catch foe in lower leg. You gain\ninitiative while foe regains footing.\n\u002B7H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "Catch foe in lower leg. You gain initiative while foe regains footing.", + "RawAffixText": "\u002B7H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 314, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1256, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 1224, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Foe ices down; freezing any exposed", + "skin. The pain is great.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Foe ices down; freezing any exposed", + "skin. The pain is great.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Foe ices down; freezing any exposed\nskin. The pain is great.\n\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Foe ices down; freezing any exposed skin. The pain is great.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 314, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 1256, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 1224, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Assault to foe\u0027s legs. Hypothermic, he", + "struggles to remain standing.", + "\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Assault to foe\u0027s legs. Hypothermic, he", + "struggles to remain standing.", + "\u2211 \u2013 (-20)" + ], + "RawCellText": "Assault to foe\u0027s legs. Hypothermic, he\nstruggles to remain standing.\n\u2211 \u2013 (-20)", + "DescriptionText": "Assault to foe\u0027s legs. Hypothermic, he struggles to remain standing.", + "RawAffixText": "\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 314, + "Width": 140, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 1256, + "BoundsWidth": 560, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 1224, + "CropWidth": 656, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Scatter your attack all over foe\u0027s chest.", + "Foe is covered with frost. He looks", + "ghoulish.", + "\u002B6H \u2013 2\u03C0" + ], + "BaseLines": [ + "Scatter your attack all over foe\u0027s chest.", + "Foe is covered with frost. He looks", + "ghoulish.", + "\u002B6H \u2013 2\u03C0" + ], + "RawCellText": "Scatter your attack all over foe\u0027s chest.\nFoe is covered with frost. He looks\nghoulish.\n\u002B6H \u2013 2\u03C0", + "DescriptionText": "Scatter your attack all over foe\u0027s chest. Foe is covered with frost. He looks ghoulish.", + "RawAffixText": "\u002B6H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 359, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 1436, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 540, + "CropTop": 1404, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Cold penetrates foe\u0027s chest and gives", + "him frostbite. The pain must be severe.", + "He stumbles back.", + "\u002B7H \u2013 2\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Cold penetrates foe\u0027s chest and gives", + "him frostbite. The pain must be severe.", + "He stumbles back.", + "\u002B7H \u2013 2\u03C0 \u2013 2\u222B" + ], + "RawCellText": "Cold penetrates foe\u0027s chest and gives\nhim frostbite. The pain must be severe.\nHe stumbles back.\n\u002B7H \u2013 2\u03C0 \u2013 2\u222B", + "DescriptionText": "Cold penetrates foe\u0027s chest and gives him frostbite. The pain must be severe. He stumbles back.", + "RawAffixText": "\u002B7H \u2013 2\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 359, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 1436, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1124, + "CropTop": 1404, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Blast hits foe\u0027s chest and scatters. The", + "cold stings all exposed skin. Foe has a", + "shocked look on his face.", + "\u002B8H \u2013 \u2211" + ], + "BaseLines": [ + "Blast hits foe\u0027s chest and scatters. The", + "cold stings all exposed skin. Foe has a", + "shocked look on his face.", + "\u002B8H \u2013 \u2211" + ], + "RawCellText": "Blast hits foe\u0027s chest and scatters. The\ncold stings all exposed skin. Foe has a\nshocked look on his face.\n\u002B8H \u2013 \u2211", + "DescriptionText": "Blast hits foe\u0027s chest and scatters. The cold stings all exposed skin. Foe has a shocked look on his face.", + "RawAffixText": "\u002B8H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 359, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1436, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 1404, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Assault lands on foe\u0027s weapon arm. He", + "makes a supreme effort to pull his arm", + "away. Foe is unable to protect himself.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Assault lands on foe\u0027s weapon arm. He", + "makes a supreme effort to pull his arm", + "away. Foe is unable to protect himself.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Assault lands on foe\u0027s weapon arm. He\nmakes a supreme effort to pull his arm\naway. Foe is unable to protect himself.\n\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Assault lands on foe\u0027s weapon arm. He makes a supreme effort to pull his arm away. Foe is unable to protect himself.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 359, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 1436, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2300, + "CropTop": 1404, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Glancing strike to lower back. Foe is", + "spun about and slings his weapon", + "away. You have him now.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Glancing strike to lower back. Foe is", + "spun about and slings his weapon", + "away. You have him now.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Glancing strike to lower back. Foe is\nspun about and slings his weapon\naway. You have him now.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Glancing strike to lower back. Foe is spun about and slings his weapon away. You have him now.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 359, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 1436, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2884, + "CropTop": 1404, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s chest. Your attack has", + "force and foe stumbles.", + "\u002B7H \u2013 \u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. Your attack has", + "force and foe stumbles.", + "\u002B7H \u2013 \u2211" + ], + "RawCellText": "Blow to foe\u0027s chest. Your attack has\nforce and foe stumbles.\n\u002B7H \u2013 \u2211", + "DescriptionText": "Blow to foe\u0027s chest. Your attack has force and foe stumbles.", + "RawAffixText": "\u002B7H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 412, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 1648, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 1616, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Strong off-center blast takes foe in his", + "shield arm wrist and side.", + "\u002B8H \u2013 \u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Strong off-center blast takes foe in his", + "shield arm wrist and side.", + "\u002B8H \u2013 \u2211 \u2013 3\u222B" + ], + "RawCellText": "Strong off-center blast takes foe in his\nshield arm wrist and side.\n\u002B8H \u2013 \u2211 \u2013 3\u222B", + "DescriptionText": "Strong off-center blast takes foe in his shield arm wrist and side.", + "RawAffixText": "\u002B8H \u2013 \u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 412, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 1648, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 1616, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard strike to chest, armor does not", + "help. Blow leaves its frigid mark.", + "\u002B5H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Hard strike to chest, armor does not", + "help. Blow leaves its frigid mark.", + "\u002B5H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Hard strike to chest, armor does not\nhelp. Blow leaves its frigid mark.\n\u002B5H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Hard strike to chest, armor does not help. Blow leaves its frigid mark.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 412, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1648, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 1616, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Heavy blow to shield shoulder. Foe is", + "knocked back 5 feet. Muscle damage.", + "\u002B10H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Heavy blow to shield shoulder. Foe is", + "knocked back 5 feet. Muscle damage.", + "\u002B10H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Heavy blow to shield shoulder. Foe is\nknocked back 5 feet. Muscle damage.\n\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Heavy blow to shield shoulder. Foe is knocked back 5 feet. Muscle damage.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 412, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 1648, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 1616, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Blow to side. Foe seeks to regain his", + "wind and survive your next onslaught.", + "\u002B11H \u2013 \u2211\u220F \u2013 4\u222B" + ], + "BaseLines": [ + "Blow to side. Foe seeks to regain his", + "wind and survive your next onslaught.", + "\u002B11H \u2013 \u2211\u220F \u2013 4\u222B" + ], + "RawCellText": "Blow to side. Foe seeks to regain his\nwind and survive your next onslaught.\n\u002B11H \u2013 \u2211\u220F \u2013 4\u222B", + "DescriptionText": "Blow to side. Foe seeks to regain his wind and survive your next onslaught.", + "RawAffixText": "\u002B11H \u2013 \u2211\u220F \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 412, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 1648, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 1616, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Strike falls on an exposed area. Foe", + "gives ground. He is shaken but his", + "guard is still up.", + "\u002B8H \u2013 2\u2211" + ], + "BaseLines": [ + "Strike falls on an exposed area. Foe", + "gives ground. He is shaken but his", + "guard is still up.", + "\u002B8H \u2013 2\u2211" + ], + "RawCellText": "Strike falls on an exposed area. Foe\ngives ground. He is shaken but his\nguard is still up.\n\u002B8H \u2013 2\u2211", + "DescriptionText": "Strike falls on an exposed area. Foe gives ground. He is shaken but his guard is still up.", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 457, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 1828, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 540, + "CropTop": 1796, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Foe turns to avoid your attack and", + "exposes his back. All wood on his back", + "becomes frozen and brittle.", + "\u002B9H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Foe turns to avoid your attack and", + "exposes his back. All wood on his back", + "becomes frozen and brittle.", + "\u002B9H \u2013 2\u2211 \u2013 2\u222B" + ], + "RawCellText": "Foe turns to avoid your attack and\nexposes his back. All wood on his back\nbecomes frozen and brittle.\n\u002B9H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "Foe turns to avoid your attack and exposes his back. All wood on his back becomes frozen and brittle.", + "RawAffixText": "\u002B9H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 457, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 1828, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1124, + "CropTop": 1796, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong blast hits foe low. His legs", + "almost give with the pain. Foe recoils", + "5 feet away from your assault.", + "with leg armor: \u002B5H \u2013 2\u03C0", + "w/o leg armor: \u002B9H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Strong blast hits foe low. His legs", + "almost give with the pain. Foe recoils", + "5 feet away from your assault." + ], + "RawCellText": "Strong blast hits foe low. His legs\nalmost give with the pain. Foe recoils\n5 feet away from your assault.", + "DescriptionText": "Strong blast hits foe low. His legs almost give with the pain. Foe recoils 5 feet away from your assault.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B5H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B9H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 457, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1828, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1712, + "CropTop": 1796, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Miss foe\u0027s arm and strike his thigh. He", + "loses his footing. Skin and nerve", + "damage causes foe pain.", + "\u2211\u220F \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Miss foe\u0027s arm and strike his thigh. He", + "loses his footing. Skin and nerve", + "damage causes foe pain.", + "\u2211\u220F \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Miss foe\u0027s arm and strike his thigh. He\nloses his footing. Skin and nerve\ndamage causes foe pain.\n\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Miss foe\u0027s arm and strike his thigh. He loses his footing. Skin and nerve damage causes foe pain.", + "RawAffixText": "\u2211\u220F \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 457, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 1828, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 2300, + "CropTop": 1796, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Your blast engulfs foe\u0027s weapon arm", + "and climbs toward his torso. He steps", + "away frantic to evade the pain.", + "\u002B10H \u2013 \u2211\u220F \u2013 4\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Your blast engulfs foe\u0027s weapon arm", + "and climbs toward his torso. He steps", + "away frantic to evade the pain.", + "\u002B10H \u2013 \u2211\u220F \u2013 4\u222B \u2013 (-20)" + ], + "RawCellText": "Your blast engulfs foe\u0027s weapon arm\nand climbs toward his torso. He steps\naway frantic to evade the pain.\n\u002B10H \u2013 \u2211\u220F \u2013 4\u222B \u2013 (-20)", + "DescriptionText": "Your blast engulfs foe\u0027s weapon arm and climbs toward his torso. He steps away frantic to evade the pain.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 4\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 457, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 1828, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 2884, + "CropTop": 1796, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe\u0027s evasion is comical.", + "with arm greaves: \u002B2H \u2013 \u03C0", + "w/o arm greaves: \u002B9H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe\u0027s evasion is comical." + ], + "RawCellText": "Well placed. Strike slams into foe\u0027s\nweapon arm. Foe\u0027s evasion is comical.", + "DescriptionText": "Well placed. Strike slams into foe\u0027s weapon arm. Foe\u0027s evasion is comical.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_arm_greaves", + "ConditionText": "with arm greaves", + "RawText": "with arm greaves: \u002B2H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_arm_greaves", + "ConditionText": "w/o arm greaves", + "RawText": "w/o arm greaves: \u002B9H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 521, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 2084, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 540, + "CropTop": 2052, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Solid strike to foe\u0027s forearm. Foe\u0027s", + "hand frozen shut for 1 round.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-5) \u2013 3\u222B" + ], + "BaseLines": [ + "Solid strike to foe\u0027s forearm. Foe\u0027s", + "hand frozen shut for 1 round.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-5) \u2013 3\u222B" + ], + "RawCellText": "Solid strike to foe\u0027s forearm. Foe\u0027s\nhand frozen shut for 1 round.\n\u002B10H \u2013 \u2211\u220F \u2013 (-5) \u2013 3\u222B", + "DescriptionText": "Solid strike to foe\u0027s forearm. Foe\u0027s hand frozen shut for 1 round.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-5) \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 521, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 2084, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1124, + "CropTop": 2052, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Blast freeze dries organic material on", + "foe\u0027s back.", + "\u002B11H \u2013 4\u2211" + ], + "BaseLines": [ + "Blast freeze dries organic material on", + "foe\u0027s back.", + "\u002B11H \u2013 4\u2211" + ], + "RawCellText": "Blast freeze dries organic material on\nfoe\u0027s back.\n\u002B11H \u2013 4\u2211", + "DescriptionText": "Blast freeze dries organic material on foe\u0027s back.", + "RawAffixText": "\u002B11H \u2013 4\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 521, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2084, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1712, + "CropTop": 2052, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blast freezes foe\u0027s arm and shield. If", + "no shield,arm useless from nerve arm useless from nerve", + "damage.", + "with shield: \u002B20H \u2013 (-20) with shield: \u002B20H", + "w/o shield: 5\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Blast freezes foe\u0027s arm and shield. If", + "no shield,arm useless from nerve arm useless from nerve", + "damage." + ], + "RawCellText": "Blast freezes foe\u0027s arm and shield. If\nno shield,arm useless from nerve arm useless from nerve\ndamage.", + "DescriptionText": "Blast freezes foe\u0027s arm and shield. If no shield,arm useless from nerve arm useless from nerve damage.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B20H \u2013 (-20) with shield: \u002B20H", + "DescriptionText": "", + "RawAffixText": "\u002B20H \u2013 (-20) with shield: \u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: 5\u2211 \u2013 (-30)", + "DescriptionText": "", + "RawAffixText": "5\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 521, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 2084, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 2300, + "CropTop": 2052, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s waist. All equipment on", + "belt freezes and breaks if foe moves.", + "\u002B13H \u2013 3\u2211 \u2013 (- 30)" + ], + "BaseLines": [ + "Strike to foe\u0027s waist. All equipment on", + "belt freezes and breaks if foe moves.", + "\u002B13H \u2013 3\u2211 \u2013 (- 30)" + ], + "RawCellText": "Strike to foe\u0027s waist. All equipment on\nbelt freezes and breaks if foe moves.\n\u002B13H \u2013 3\u2211 \u2013 (- 30)", + "DescriptionText": "Strike to foe\u0027s waist. All equipment on belt freezes and breaks if foe moves.", + "RawAffixText": "\u002B13H \u2013 3\u2211 \u2013 (- 30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(- 30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 521, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "cold/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 2084, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 2884, + "CropTop": 2052, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Steal the heat from foe\u0027s neck and", + "chest area. Foe drops anything he is", + "holding and blocks his throat.", + "\u002B10H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Steal the heat from foe\u0027s neck and", + "chest area. Foe drops anything he is", + "holding and blocks his throat.", + "\u002B10H \u2013 3\u2211\u220F" + ], + "RawCellText": "Steal the heat from foe\u0027s neck and\nchest area. Foe drops anything he is\nholding and blocks his throat.\n\u002B10H \u2013 3\u2211\u220F", + "DescriptionText": "Steal the heat from foe\u0027s neck and chest area. Foe drops anything he is holding and blocks his throat.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 585, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 2340, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 540, + "CropTop": 2308, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Foe is covered by the blast. All", + "extremities are damaged. The pain", + "grows until foe is warmed up.", + "4\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Foe is covered by the blast. All", + "extremities are damaged. The pain", + "grows until foe is warmed up.", + "4\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Foe is covered by the blast. All\nextremities are damaged. The pain\ngrows until foe is warmed up.\n4\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Foe is covered by the blast. All extremities are damaged. The pain grows until foe is warmed up.", + "RawAffixText": "4\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 585, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 2340, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1124, + "CropTop": 2308, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s response to your burst of cold", + "sends him to the ground hard. Foe", + "jams his wrist into the ground.", + "6\u2211 \u2013 (-15) \u2013 4\u222B" + ], + "BaseLines": [ + "Foe\u0027s response to your burst of cold", + "sends him to the ground hard. Foe", + "jams his wrist into the ground.", + "6\u2211 \u2013 (-15) \u2013 4\u222B" + ], + "RawCellText": "Foe\u0027s response to your burst of cold\nsends him to the ground hard. Foe\njams his wrist into the ground.\n6\u2211 \u2013 (-15) \u2013 4\u222B", + "DescriptionText": "Foe\u0027s response to your burst of cold sends him to the ground hard. Foe jams his wrist into the ground.", + "RawAffixText": "6\u2211 \u2013 (-15) \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 585, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2340, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 2308, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Frigid onslaught fills foes eyes and", + "mouth with ice. Foe is blinded for a", + "moment until he can clear his eyes.", + "4\u2211 \u2013 (-30) \u2013 4\u222B" + ], + "BaseLines": [ + "Frigid onslaught fills foes eyes and", + "mouth with ice. Foe is blinded for a", + "moment until he can clear his eyes.", + "4\u2211 \u2013 (-30) \u2013 4\u222B" + ], + "RawCellText": "Frigid onslaught fills foes eyes and\nmouth with ice. Foe is blinded for a\nmoment until he can clear his eyes.\n4\u2211 \u2013 (-30) \u2013 4\u222B", + "DescriptionText": "Frigid onslaught fills foes eyes and mouth with ice. Foe is blinded for a moment until he can clear his eyes.", + "RawAffixText": "4\u2211 \u2013 (-30) \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 585, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 2340, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2300, + "CropTop": 2308, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Your strike steals the heat out of foe\u0027s", + "neck and upper chest. Nerves and", + "muscles are damaged.", + "\u002B15H \u2013 8\u2211\u220F \u2013 4\u222B" + ], + "BaseLines": [ + "Your strike steals the heat out of foe\u0027s", + "neck and upper chest. Nerves and", + "muscles are damaged.", + "\u002B15H \u2013 8\u2211\u220F \u2013 4\u222B" + ], + "RawCellText": "Your strike steals the heat out of foe\u0027s\nneck and upper chest. Nerves and\nmuscles are damaged.\n\u002B15H \u2013 8\u2211\u220F \u2013 4\u222B", + "DescriptionText": "Your strike steals the heat out of foe\u0027s neck and upper chest. Nerves and muscles are damaged.", + "RawAffixText": "\u002B15H \u2013 8\u2211\u220F \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 585, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 2340, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2884, + "CropTop": 2308, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Score a hit to foe\u0027s side. It produces", + "mild frostbite. Any herbs on foe\u0027s belt", + "are ruined.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-5)" + ], + "BaseLines": [ + "Score a hit to foe\u0027s side. It produces", + "mild frostbite. Any herbs on foe\u0027s belt", + "are ruined.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-5)" + ], + "RawCellText": "Score a hit to foe\u0027s side. It produces\nmild frostbite. Any herbs on foe\u0027s belt\nare ruined.\n\u002B10H \u2013 \u2211\u220F \u2013 (-5)", + "DescriptionText": "Score a hit to foe\u0027s side. It produces mild frostbite. Any herbs on foe\u0027s belt are ruined.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 640, + "Width": 139, + "Height": 54 + }, + "SourceImagePath": "cold/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 2560, + "BoundsWidth": 556, + "BoundsHeight": 216, + "CropLeft": 540, + "CropTop": 2528, + "CropWidth": 652, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Spray foe\u0027s face with a powerful chill.", + "He tries without success to push your", + "attack away . The damage endures.", + "becomes frozen and brittle.", + "\u002B11H \u2013 2\u2211 \u2013 \u220F \u2013 (-10)" + ], + "BaseLines": [ + "Spray foe\u0027s face with a powerful chill.", + "He tries without success to push your", + "attack away . The damage endures.", + "becomes frozen and brittle.", + "\u002B11H \u2013 2\u2211 \u2013 \u220F \u2013 (-10)" + ], + "RawCellText": "Spray foe\u0027s face with a powerful chill.\nHe tries without success to push your\nattack away . The damage endures.\nbecomes frozen and brittle.\n\u002B11H \u2013 2\u2211 \u2013 \u220F \u2013 (-10)", + "DescriptionText": "Spray foe\u0027s face with a powerful chill. He tries without success to push your attack away . The damage endures. becomes frozen and brittle.", + "RawAffixText": "\u002B11H \u2013 2\u2211 \u2013 \u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 640, + "Width": 139, + "Height": 54 + }, + "SourceImagePath": "cold/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 2560, + "BoundsWidth": 556, + "BoundsHeight": 216, + "CropLeft": 1124, + "CropTop": 2528, + "CropWidth": 652, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Freeze foe\u0027s weapon arm. It is useless", + "until it is warmed up. Foe is in great", + "pain and stuggles to stand.", + "\u002B12H \u2013 2\u2211 \u2013 \u220F \u2013 (-15)" + ], + "BaseLines": [ + "Freeze foe\u0027s weapon arm. It is useless", + "until it is warmed up. Foe is in great", + "pain and stuggles to stand.", + "\u002B12H \u2013 2\u2211 \u2013 \u220F \u2013 (-15)" + ], + "RawCellText": "Freeze foe\u0027s weapon arm. It is useless\nuntil it is warmed up. Foe is in great\npain and stuggles to stand.\n\u002B12H \u2013 2\u2211 \u2013 \u220F \u2013 (-15)", + "DescriptionText": "Freeze foe\u0027s weapon arm. It is useless until it is warmed up. Foe is in great pain and stuggles to stand.", + "RawAffixText": "\u002B12H \u2013 2\u2211 \u2013 \u220F \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 640, + "Width": 139, + "Height": 54 + }, + "SourceImagePath": "cold/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2560, + "BoundsWidth": 556, + "BoundsHeight": 216, + "CropLeft": 1712, + "CropTop": 2528, + "CropWidth": 652, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Polar wind pierces deep into chest and", + "leaves foe trembling. You are close to", + "victory. Foe faces the wrong way.", + "with chest armor: \u002B15H \u2013 \u2211\u220F \u2013 (-5)", + "w/o ch armor: \u002B13H \u2013 3\u2211 \u2013 \u220F \u2013 (-20)" + ], + "BaseLines": [ + "Polar wind pierces deep into chest and", + "leaves foe trembling. You are close to", + "victory. Foe faces the wrong way." + ], + "RawCellText": "Polar wind pierces deep into chest and\nleaves foe trembling. You are close to\nvictory. Foe faces the wrong way.", + "DescriptionText": "Polar wind pierces deep into chest and leaves foe trembling. You are close to victory. Foe faces the wrong way.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: \u002B15H \u2013 \u2211\u220F \u2013 (-5)", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_ch_armor", + "ConditionText": "w/o ch armor", + "RawText": "w/o ch armor: \u002B13H \u2013 3\u2211 \u2013 \u220F \u2013 (-20)", + "DescriptionText": "", + "RawAffixText": "\u002B13H \u2013 3\u2211 \u2013 \u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 640, + "Width": 138, + "Height": 54 + }, + "SourceImagePath": "cold/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 2560, + "BoundsWidth": 552, + "BoundsHeight": 216, + "CropLeft": 2300, + "CropTop": 2528, + "CropWidth": 648, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s shield arm. He is", + "knocked down. If foe has a shield, it is", + "broken. If not, the arm is broken.", + "with shield: 2\u2211", + "w/o shield: 6\u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm. He is", + "knocked down. If foe has a shield, it is", + "broken. If not, the arm is broken." + ], + "RawCellText": "Blow to foe\u0027s shield arm. He is\nknocked down. If foe has a shield, it is\nbroken. If not, the arm is broken.", + "DescriptionText": "Blow to foe\u0027s shield arm. He is knocked down. If foe has a shield, it is broken. If not, the arm is broken.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: 2\u2211", + "DescriptionText": "", + "RawAffixText": "2\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: 6\u2211", + "DescriptionText": "", + "RawAffixText": "6\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 640, + "Width": 138, + "Height": 54 + }, + "SourceImagePath": "cold/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 2560, + "BoundsWidth": 552, + "BoundsHeight": 216, + "CropLeft": 2884, + "CropTop": 2528, + "CropWidth": 648, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Strong unbalancing blast. Foe\u0027s body", + "temperature drops.", + "\u002B11H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Strong unbalancing blast. Foe\u0027s body", + "temperature drops.", + "\u002B11H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Strong unbalancing blast. Foe\u0027s body\ntemperature drops.\n\u002B11H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Strong unbalancing blast. Foe\u0027s body temperature drops.", + "RawAffixText": "\u002B11H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 701, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 2804, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 540, + "CropTop": 2772, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Strike lands on foe\u0027s legs. The pain and", + "shock cause him to falter.", + "\u002B12H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Strike lands on foe\u0027s legs. The pain and", + "shock cause him to falter.", + "\u002B12H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Strike lands on foe\u0027s legs. The pain and\nshock cause him to falter.\n\u002B12H \u2013 2\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Strike lands on foe\u0027s legs. The pain and shock cause him to falter.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 701, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 2804, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1124, + "CropTop": 2772, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Side strike hits foe just right. Any", + "leather or cloth freezes and shatters.", + "2\u2211\u220F \u2013 3\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Side strike hits foe just right. Any", + "leather or cloth freezes and shatters.", + "2\u2211\u220F \u2013 3\u222B \u2013 (-20)" + ], + "RawCellText": "Side strike hits foe just right. Any\nleather or cloth freezes and shatters.\n2\u2211\u220F \u2013 3\u222B \u2013 (-20)", + "DescriptionText": "Side strike hits foe just right. Any leather or cloth freezes and shatters.", + "RawAffixText": "2\u2211\u220F \u2013 3\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 701, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2804, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 2772, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Blast drains the heat from foe\u0027s", + "weapon arm. Hand and arm are", + "useless. The hand is frozen closed.", + "\u002B13H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Blast drains the heat from foe\u0027s", + "weapon arm. Hand and arm are", + "useless. The hand is frozen closed.", + "\u002B13H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Blast drains the heat from foe\u0027s\nweapon arm. Hand and arm are\nuseless. The hand is frozen closed.\n\u002B13H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Blast drains the heat from foe\u0027s weapon arm. Hand and arm are useless. The hand is frozen closed.", + "RawAffixText": "\u002B13H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 701, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 2804, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2300, + "CropTop": 2772, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Blast freezes weapon hand, shoulder", + "and face. Foe is numb and needs time", + "to warm up. Foe is still standing.", + "\u002B15H \u2013 3\u2211" + ], + "BaseLines": [ + "Blast freezes weapon hand, shoulder", + "and face. Foe is numb and needs time", + "to warm up. Foe is still standing.", + "\u002B15H \u2013 3\u2211" + ], + "RawCellText": "Blast freezes weapon hand, shoulder\nand face. Foe is numb and needs time\nto warm up. Foe is still standing.\n\u002B15H \u2013 3\u2211", + "DescriptionText": "Blast freezes weapon hand, shoulder and face. Foe is numb and needs time to warm up. Foe is still standing.", + "RawAffixText": "\u002B15H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 701, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "cold/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 2804, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2884, + "CropTop": 2772, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s shield arm. If foe sees it", + "he may block with a shield. Foe recoils", + "5 feet from the blast.", + "with shield: \u002B2H \u2013 2\u03C0", + "w/o shield: \u002B12H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s shield arm. If foe sees it", + "he may block with a shield. Foe recoils", + "5 feet from the blast." + ], + "RawCellText": "Strike to foe\u0027s shield arm. If foe sees it\nhe may block with a shield. Foe recoils\n5 feet from the blast.", + "DescriptionText": "Strike to foe\u0027s shield arm. If foe sees it he may block with a shield. Foe recoils 5 feet from the blast.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B2H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B12H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 756, + "Width": 139, + "Height": 66 + }, + "SourceImagePath": "cold/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 3024, + "BoundsWidth": 556, + "BoundsHeight": 264, + "CropLeft": 540, + "CropTop": 2992, + "CropWidth": 652, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Chest strike freezes what it touches.", + "Equipment is damaged. The pain", + "persists. Chest armor is destroyed.", + "w/ ch. armor: \u002B13H \u2013 4\u2211 \u2013 (\u002B15) \u2013 3\u222B", + "w/o chest armor: \u002B20H \u2013 4\u03C0 \u2013 (-5)" + ], + "BaseLines": [ + "Chest strike freezes what it touches.", + "Equipment is damaged. The pain", + "persists. Chest armor is destroyed." + ], + "RawCellText": "Chest strike freezes what it touches.\nEquipment is damaged. The pain\npersists. Chest armor is destroyed.", + "DescriptionText": "Chest strike freezes what it touches. Equipment is damaged. The pain persists. Chest armor is destroyed.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_ch_armor", + "ConditionText": "w/ ch. armor", + "RawText": "w/ ch. armor: \u002B13H \u2013 4\u2211 \u2013 (\u002B15) \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B13H \u2013 4\u2211 \u2013 (\u002B15) \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: \u002B20H \u2013 4\u03C0 \u2013 (-5)", + "DescriptionText": "", + "RawAffixText": "\u002B20H \u2013 4\u03C0 \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 756, + "Width": 139, + "Height": 66 + }, + "SourceImagePath": "cold/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 3024, + "BoundsWidth": 556, + "BoundsHeight": 264, + "CropLeft": 1124, + "CropTop": 2992, + "CropWidth": 652, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s arms. Any metal", + "armguards freeze, immobilizing arms", + "until the armor is removed or unfrozen.", + "with chest armor: 3\u2211 \u2013 4\u222B", + "w/o chest armor: (-25) \u2013 4\u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s arms. Any metal", + "armguards freeze, immobilizing arms", + "until the armor is removed or unfrozen." + ], + "RawCellText": "Blow to foe\u0027s arms. Any metal\narmguards freeze, immobilizing arms\nuntil the armor is removed or unfrozen.", + "DescriptionText": "Blow to foe\u0027s arms. Any metal armguards freeze, immobilizing arms until the armor is removed or unfrozen.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: 3\u2211 \u2013 4\u222B", + "DescriptionText": "", + "RawAffixText": "3\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: (-25) \u2013 4\u222B", + "DescriptionText": "", + "RawAffixText": "(-25) \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 756, + "Width": 139, + "Height": 66 + }, + "SourceImagePath": "cold/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3024, + "BoundsWidth": 556, + "BoundsHeight": 264, + "CropLeft": 1712, + "CropTop": 2992, + "CropWidth": 652, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s side downs him. Severe", + "frostbite hampers movements. Any", + "liquid among foe\u0027s equipment freezes.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Strike to foe\u0027s side downs him. Severe", + "frostbite hampers movements. Any", + "liquid among foe\u0027s equipment freezes.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Strike to foe\u0027s side downs him. Severe\nfrostbite hampers movements. Any\nliquid among foe\u0027s equipment freezes.\n\u002B15H \u2013 3\u2211\u220F \u2013 (-25)", + "DescriptionText": "Strike to foe\u0027s side downs him. Severe frostbite hampers movements. Any liquid among foe\u0027s equipment freezes.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 756, + "Width": 138, + "Height": 66 + }, + "SourceImagePath": "cold/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 3024, + "BoundsWidth": 552, + "BoundsHeight": 264, + "CropLeft": 2300, + "CropTop": 2992, + "CropWidth": 648, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Solid chest strike. Foe flips onto his", + "back , dropping all he holds. Foe is at", + "your mercy.", + "12\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Solid chest strike. Foe flips onto his", + "back , dropping all he holds. Foe is at", + "your mercy.", + "12\u2211 \u2013 (-30)" + ], + "RawCellText": "Solid chest strike. Foe flips onto his\nback , dropping all he holds. Foe is at\nyour mercy.\n12\u2211 \u2013 (-30)", + "DescriptionText": "Solid chest strike. Foe flips onto his back , dropping all he holds. Foe is at your mercy.", + "RawAffixText": "12\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 756, + "Width": 140, + "Height": 66 + }, + "SourceImagePath": "cold/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 3024, + "BoundsWidth": 560, + "BoundsHeight": 264, + "CropLeft": 2884, + "CropTop": 2992, + "CropWidth": 656, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Back blast. Any glass on back is", + "broken. Painful bruise.", + "\u002B13H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Back blast. Any glass on back is", + "broken. Painful bruise.", + "\u002B13H \u2013 2\u2211\u220F" + ], + "RawCellText": "Back blast. Any glass on back is\nbroken. Painful bruise.\n\u002B13H \u2013 2\u2211\u220F", + "DescriptionText": "Back blast. Any glass on back is broken. Painful bruise.", + "RawAffixText": "\u002B13H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 830, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 3320, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 540, + "CropTop": 3288, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Clean hard strike pushes foe over,", + "cracking ribs. His recovery lacks grace.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-15) \u2013 4\u222B" + ], + "BaseLines": [ + "Clean hard strike pushes foe over,", + "cracking ribs. His recovery lacks grace.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-15) \u2013 4\u222B" + ], + "RawCellText": "Clean hard strike pushes foe over,\ncracking ribs. His recovery lacks grace.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-15) \u2013 4\u222B", + "DescriptionText": "Clean hard strike pushes foe over, cracking ribs. His recovery lacks grace.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-15) \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 830, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 3320, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1124, + "CropTop": 3288, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Arctic blast to foe\u0027s torso. Foe is badly", + "frostbitten and falls to knees in pain.", + "6\u2211 \u2013 5\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Arctic blast to foe\u0027s torso. Foe is badly", + "frostbitten and falls to knees in pain.", + "6\u2211 \u2013 5\u222B \u2013 (-40)" + ], + "RawCellText": "Arctic blast to foe\u0027s torso. Foe is badly\nfrostbitten and falls to knees in pain.\n6\u2211 \u2013 5\u222B \u2013 (-40)", + "DescriptionText": "Arctic blast to foe\u0027s torso. Foe is badly frostbitten and falls to knees in pain.", + "RawAffixText": "6\u2211 \u2013 5\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 830, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3320, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 3288, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Freezes foe\u0027s hands. Arms are useless.", + "Foe drops what he was carrying.", + "9\u2211 \u2013 6\u222B" + ], + "BaseLines": [ + "Freezes foe\u0027s hands. Arms are useless.", + "Foe drops what he was carrying.", + "9\u2211 \u2013 6\u222B" + ], + "RawCellText": "Freezes foe\u0027s hands. Arms are useless.\nFoe drops what he was carrying.\n9\u2211 \u2013 6\u222B", + "DescriptionText": "Freezes foe\u0027s hands. Arms are useless. Foe drops what he was carrying.", + "RawAffixText": "9\u2211 \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 830, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 3320, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2300, + "CropTop": 3288, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Assault to throat and face is terminal.", + "Foe is still active but dies in 12 rounds.", + "\u002B17H" + ], + "BaseLines": [ + "Assault to throat and face is terminal.", + "Foe is still active but dies in 12 rounds.", + "\u002B17H" + ], + "RawCellText": "Assault to throat and face is terminal.\nFoe is still active but dies in 12 rounds.\n\u002B17H", + "DescriptionText": "Assault to throat and face is terminal. Foe is still active but dies in 12 rounds.", + "RawAffixText": "\u002B17H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 17, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B17H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 830, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "cold/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 3320, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2884, + "CropTop": 3288, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Assault to foe\u0027s lower leg freezes part", + "of it. Foe falls down. Without leg", + "armor, foot must be amputated.", + "with leg armor: 2\u2211 \u2013 6(-10)", + "w/o leg armor: (-70)" + ], + "BaseLines": [ + "Assault to foe\u0027s lower leg freezes part", + "of it. Foe falls down. Without leg", + "armor, foot must be amputated." + ], + "RawCellText": "Assault to foe\u0027s lower leg freezes part\nof it. Foe falls down. Without leg\narmor, foot must be amputated.", + "DescriptionText": "Assault to foe\u0027s lower leg freezes part of it. Foe falls down. Without leg armor, foot must be amputated.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: 2\u2211 \u2013 6(-10)", + "DescriptionText": "", + "RawAffixText": "2\u2211 \u2013 6(-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: (-70)", + "DescriptionText": "", + "RawAffixText": "(-70)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 875, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "cold/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 3500, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 540, + "CropTop": 3468, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Strike lower leg and freeze it. With leg", + "armor, he needs aid in 20 rnds to keep", + "the foot. Without leg armor, it\u0027s gone.", + "with leg armor: 3\u2211", + "w/o leg armor: (-75)" + ], + "BaseLines": [ + "Strike lower leg and freeze it. With leg", + "armor, he needs aid in 20 rnds to keep", + "the foot. Without leg armor, it\u0027s gone." + ], + "RawCellText": "Strike lower leg and freeze it. With leg\narmor, he needs aid in 20 rnds to keep\nthe foot. Without leg armor, it\u0027s gone.", + "DescriptionText": "Strike lower leg and freeze it. With leg armor, he needs aid in 20 rnds to keep the foot. Without leg armor, it\u0027s gone.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: 3\u2211", + "DescriptionText": "", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: (-75)", + "DescriptionText": "", + "RawAffixText": "(-75)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 875, + "Width": 140, + "Height": 56 + }, + "SourceImagePath": "cold/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 3500, + "BoundsWidth": 560, + "BoundsHeight": 224, + "CropLeft": 1124, + "CropTop": 3468, + "CropWidth": 656, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s knees. They freeze up", + "and foe falls. On impact, foe shatters a", + "knee. His fall makes it twice as bad.", + "9\u2211 \u2013 6\u222B \u2013 (-80)" + ], + "BaseLines": [ + "Blow to foe\u0027s knees. They freeze up", + "and foe falls. On impact, foe shatters a", + "knee. His fall makes it twice as bad.", + "9\u2211 \u2013 6\u222B \u2013 (-80)" + ], + "RawCellText": "Blow to foe\u0027s knees. They freeze up\nand foe falls. On impact, foe shatters a\nknee. His fall makes it twice as bad.\n9\u2211 \u2013 6\u222B \u2013 (-80)", + "DescriptionText": "Blow to foe\u0027s knees. They freeze up and foe falls. On impact, foe shatters a knee. His fall makes it twice as bad.", + "RawAffixText": "9\u2211 \u2013 6\u222B \u2013 (-80)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 875, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "cold/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3500, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 1712, + "CropTop": 3468, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Chest hit causes much pain. If foe is", + "warmly clothed he is knocked out. If", + "not he dies of shock in 12 rounds.", + "\u002B25H \u2013 (-40)" + ], + "BaseLines": [ + "Chest hit causes much pain. If foe is", + "warmly clothed he is knocked out. If", + "not he dies of shock in 12 rounds.", + "\u002B25H \u2013 (-40)" + ], + "RawCellText": "Chest hit causes much pain. If foe is\nwarmly clothed he is knocked out. If\nnot he dies of shock in 12 rounds.\n\u002B25H \u2013 (-40)", + "DescriptionText": "Chest hit causes much pain. If foe is warmly clothed he is knocked out. If not he dies of shock in 12 rounds.", + "RawAffixText": "\u002B25H \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 875, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "cold/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 3500, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 2300, + "CropTop": 3468, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Your ruthless tempest entangles foe", + "and steals the warmth from his body.", + "He drops and dies in 9 inactive rounds.", + "\u2013" + ], + "BaseLines": [ + "Your ruthless tempest entangles foe", + "and steals the warmth from his body.", + "He drops and dies in 9 inactive rounds.", + "\u2013" + ], + "RawCellText": "Your ruthless tempest entangles foe\nand steals the warmth from his body.\nHe drops and dies in 9 inactive rounds.\n\u2013", + "DescriptionText": "Your ruthless tempest entangles foe and steals the warmth from his body. He drops and dies in 9 inactive rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 875, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "cold/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 3500, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 2884, + "CropTop": 3468, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Blow lands on foe\u0027s face. It freezes his", + "nose, ears and cheeks. Foe collapses.", + "Without helm, foe loses both ears.", + "with helmet: 3\u2211", + "w/o helmet: 6\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Blow lands on foe\u0027s face. It freezes his", + "nose, ears and cheeks. Foe collapses.", + "Without helm, foe loses both ears." + ], + "RawCellText": "Blow lands on foe\u0027s face. It freezes his\nnose, ears and cheeks. Foe collapses.\nWithout helm, foe loses both ears.", + "DescriptionText": "Blow lands on foe\u0027s face. It freezes his nose, ears and cheeks. Foe collapses. Without helm, foe loses both ears.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: 3\u2211", + "DescriptionText": "", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: 6\u2211 \u2013 (-50)", + "DescriptionText": "", + "RawAffixText": "6\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 938, + "Width": 138, + "Height": 67 + }, + "SourceImagePath": "cold/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 3752, + "BoundsWidth": 552, + "BoundsHeight": 268, + "CropLeft": 540, + "CropTop": 3720, + "CropWidth": 648, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Connect with foe\u0027s hip. Hip is", + "fractured. Skin and muscles are", + "frostbitten. Foe falls down. He is", + "almost helpless.", + "\u002B17H \u2013 3\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Connect with foe\u0027s hip. Hip is", + "fractured. Skin and muscles are", + "frostbitten. Foe falls down. He is", + "almost helpless.", + "\u002B17H \u2013 3\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Connect with foe\u0027s hip. Hip is\nfractured. Skin and muscles are\nfrostbitten. Foe falls down. He is\nalmost helpless.\n\u002B17H \u2013 3\u2211\u220F \u2013 (-75)", + "DescriptionText": "Connect with foe\u0027s hip. Hip is fractured. Skin and muscles are frostbitten. Foe falls down. He is almost helpless.", + "RawAffixText": "\u002B17H \u2013 3\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 17, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B17H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 938, + "Width": 139, + "Height": 67 + }, + "SourceImagePath": "cold/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 3752, + "BoundsWidth": 556, + "BoundsHeight": 268, + "CropLeft": 1124, + "CropTop": 3720, + "CropWidth": 652, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Freeze the blood in foe\u0027s thigh. As it", + "warms the clots move to his heart", + "killing him in 9 rounds.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (\u201330)" + ], + "BaseLines": [ + "Freeze the blood in foe\u0027s thigh. As it", + "warms the clots move to his heart", + "killing him in 9 rounds.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (\u201330)" + ], + "RawCellText": "Freeze the blood in foe\u0027s thigh. As it\nwarms the clots move to his heart\nkilling him in 9 rounds.\n\u002B15H \u2013 3\u2211\u220F \u2013 (\u201330)", + "DescriptionText": "Freeze the blood in foe\u0027s thigh. As it warms the clots move to his heart killing him in 9 rounds.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F \u2013 (\u201330)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 938, + "Width": 139, + "Height": 67 + }, + "SourceImagePath": "cold/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3752, + "BoundsWidth": 556, + "BoundsHeight": 268, + "CropLeft": 1712, + "CropTop": 3720, + "CropWidth": 652, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "All warmth is driven from foe\u0027s lower", + "body. Vital organs are destroyed. Foe", + "is immobile, and dies in 9 rounds.", + "\u002B18H" + ], + "BaseLines": [ + "All warmth is driven from foe\u0027s lower", + "body. Vital organs are destroyed. Foe", + "is immobile, and dies in 9 rounds.", + "\u002B18H" + ], + "RawCellText": "All warmth is driven from foe\u0027s lower\nbody. Vital organs are destroyed. Foe\nis immobile, and dies in 9 rounds.\n\u002B18H", + "DescriptionText": "All warmth is driven from foe\u0027s lower body. Vital organs are destroyed. Foe is immobile, and dies in 9 rounds.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 938, + "Width": 138, + "Height": 67 + }, + "SourceImagePath": "cold/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 3752, + "BoundsWidth": 552, + "BoundsHeight": 268, + "CropLeft": 2300, + "CropTop": 3720, + "CropWidth": 648, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Push foe backwards and off balance.", + "The blood in foe\u0027s extremeties is", + "frozen. He dies in 6 rounds of agony.", + "\u002B19H" + ], + "BaseLines": [ + "Push foe backwards and off balance.", + "The blood in foe\u0027s extremeties is", + "frozen. He dies in 6 rounds of agony.", + "\u002B19H" + ], + "RawCellText": "Push foe backwards and off balance.\nThe blood in foe\u0027s extremeties is\nfrozen. He dies in 6 rounds of agony.\n\u002B19H", + "DescriptionText": "Push foe backwards and off balance. The blood in foe\u0027s extremeties is frozen. He dies in 6 rounds of agony.", + "RawAffixText": "\u002B19H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 19, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B19H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 938, + "Width": 139, + "Height": 67 + }, + "SourceImagePath": "cold/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 3752, + "BoundsWidth": 556, + "BoundsHeight": 268, + "CropLeft": 2884, + "CropTop": 3720, + "CropWidth": 652, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Chest strike sends foe over hard. He is", + "knocked out. His lips freeze and split", + "open. He cannot speak for 2 weeks.", + "9\u2211" + ], + "BaseLines": [ + "Chest strike sends foe over hard. He is", + "knocked out. His lips freeze and split", + "open. He cannot speak for 2 weeks.", + "9\u2211" + ], + "RawCellText": "Chest strike sends foe over hard. He is\nknocked out. His lips freeze and split\nopen. He cannot speak for 2 weeks.\n9\u2211", + "DescriptionText": "Chest strike sends foe over hard. He is knocked out. His lips freeze and split open. He cannot speak for 2 weeks.", + "RawAffixText": "9\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 1013, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "cold/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 4052, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 540, + "CropTop": 4020, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Blast foe\u0027s neck and collarbone. Neck", + "armor will block the attack, but foe is", + "knocked out. If the neck is exposed it", + "freezes solid and foe dies in 9 rounds.", + "\u2013" + ], + "BaseLines": [ + "Blast foe\u0027s neck and collarbone. Neck", + "armor will block the attack, but foe is", + "knocked out. If the neck is exposed it", + "freezes solid and foe dies in 9 rounds.", + "\u2013" + ], + "RawCellText": "Blast foe\u0027s neck and collarbone. Neck\narmor will block the attack, but foe is\nknocked out. If the neck is exposed it\nfreezes solid and foe dies in 9 rounds.\n\u2013", + "DescriptionText": "Blast foe\u0027s neck and collarbone. Neck armor will block the attack, but foe is knocked out. If the neck is exposed it freezes solid and foe dies in 9 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 1013, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "cold/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 4052, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 1124, + "CropTop": 4020, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Your onslaught freezes foe\u0027s torso and", + "head. Foe remains standing for a", + "moment. He goes into shock and dies", + "6 rounds later.", + "\u002B18H" + ], + "BaseLines": [ + "Your onslaught freezes foe\u0027s torso and", + "head. Foe remains standing for a", + "moment. He goes into shock and dies", + "6 rounds later.", + "\u002B18H" + ], + "RawCellText": "Your onslaught freezes foe\u0027s torso and\nhead. Foe remains standing for a\nmoment. He goes into shock and dies\n6 rounds later.\n\u002B18H", + "DescriptionText": "Your onslaught freezes foe\u0027s torso and head. Foe remains standing for a moment. He goes into shock and dies 6 rounds later.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 1013, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "cold/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 4052, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 4020, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s heart and lungs are suddenly", + "frozen by your arctic blast. Foe is", + "finished. He dies of shock and", + "suffocation in 6 rounds.", + "\u002B19H" + ], + "BaseLines": [ + "Foe\u0027s heart and lungs are suddenly", + "frozen by your arctic blast. Foe is", + "finished. He dies of shock and", + "suffocation in 6 rounds.", + "\u002B19H" + ], + "RawCellText": "Foe\u0027s heart and lungs are suddenly\nfrozen by your arctic blast. Foe is\nfinished. He dies of shock and\nsuffocation in 6 rounds.\n\u002B19H", + "DescriptionText": "Foe\u0027s heart and lungs are suddenly frozen by your arctic blast. Foe is finished. He dies of shock and suffocation in 6 rounds.", + "RawAffixText": "\u002B19H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 19, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B19H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 1013, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "cold/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 4052, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 2300, + "CropTop": 4020, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Foe is a lifeless frozen statue. He is", + "quite dead and well preserved. Store in", + "a cool dry place.", + "\u002B20H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe is a lifeless frozen statue. He is", + "quite dead and well preserved. Store in", + "a cool dry place.", + "\u002B20H \u2013 (\u002B10)" + ], + "RawCellText": "Foe is a lifeless frozen statue. He is\nquite dead and well preserved. Store in\na cool dry place.\n\u002B20H \u2013 (\u002B10)", + "DescriptionText": "Foe is a lifeless frozen statue. He is quite dead and well preserved. Store in a cool dry place.", + "RawAffixText": "\u002B20H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 1013, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "cold/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 4052, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 2884, + "CropTop": 4020, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Foe is sent into a month long coma by", + "the attack. He loses his nose to", + "frostbite.", + "\u002B21H" + ], + "BaseLines": [ + "Foe is sent into a month long coma by", + "the attack. He loses his nose to", + "frostbite.", + "\u002B21H" + ], + "RawCellText": "Foe is sent into a month long coma by\nthe attack. He loses his nose to\nfrostbite.\n\u002B21H", + "DescriptionText": "Foe is sent into a month long coma by the attack. He loses his nose to frostbite.", + "RawAffixText": "\u002B21H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 147, + "Top": 1078, + "Width": 138, + "Height": 46 + }, + "SourceImagePath": "cold/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 588, + "BoundsTop": 4312, + "BoundsWidth": 552, + "BoundsHeight": 184, + "CropLeft": 540, + "CropTop": 4280, + "CropWidth": 648, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Assault drops foe\u0027s body temperature;", + "his heart stops. He dies in 1 round;", + "well preserved. You are respected by all.", + "(\u002B5)" + ], + "BaseLines": [ + "Assault drops foe\u0027s body temperature;", + "his heart stops. He dies in 1 round;", + "well preserved. You are respected by all.", + "(\u002B5)" + ], + "RawCellText": "Assault drops foe\u0027s body temperature;\nhis heart stops. He dies in 1 round;\nwell preserved. You are respected by all.\n(\u002B5)", + "DescriptionText": "Assault drops foe\u0027s body temperature; his heart stops. He dies in 1 round; well preserved. You are respected by all.", + "RawAffixText": "(\u002B5)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 293, + "Top": 1078, + "Width": 140, + "Height": 46 + }, + "SourceImagePath": "cold/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1172, + "BoundsTop": 4312, + "BoundsWidth": 560, + "BoundsHeight": 184, + "CropLeft": 1124, + "CropTop": 4280, + "CropWidth": 656, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Blast freezes foe\u0027s eyes, mouth, and", + "neck. Foe falls down in a coma for 2", + "weeks and paralyzed from neck down.", + "\u2013" + ], + "BaseLines": [ + "Blast freezes foe\u0027s eyes, mouth, and", + "neck. Foe falls down in a coma for 2", + "weeks and paralyzed from neck down.", + "\u2013" + ], + "RawCellText": "Blast freezes foe\u0027s eyes, mouth, and\nneck. Foe falls down in a coma for 2\nweeks and paralyzed from neck down.\n\u2013", + "DescriptionText": "Blast freezes foe\u0027s eyes, mouth, and neck. Foe falls down in a coma for 2 weeks and paralyzed from neck down.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 1078, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "cold/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 4312, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 1712, + "CropTop": 4280, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Massive assault freezes foe\u0027s body", + "completely. He remains standing, but if", + "knocked over he will shatter.", + "\u002B20H" + ], + "BaseLines": [ + "Massive assault freezes foe\u0027s body", + "completely. He remains standing, but if", + "knocked over he will shatter.", + "\u002B20H" + ], + "RawCellText": "Massive assault freezes foe\u0027s body\ncompletely. He remains standing, but if\nknocked over he will shatter.\n\u002B20H", + "DescriptionText": "Massive assault freezes foe\u0027s body completely. He remains standing, but if knocked over he will shatter.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 587, + "Top": 1078, + "Width": 138, + "Height": 46 + }, + "SourceImagePath": "cold/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2348, + "BoundsTop": 4312, + "BoundsWidth": 552, + "BoundsHeight": 184, + "CropLeft": 2300, + "CropTop": 4280, + "CropWidth": 648, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Foe freezes solid and shatters into a", + "thousand pieces. Most land within 20", + "feet from where he was standing.", + "(\u002B20)" + ], + "BaseLines": [ + "Foe freezes solid and shatters into a", + "thousand pieces. Most land within 20", + "feet from where he was standing.", + "(\u002B20)" + ], + "RawCellText": "Foe freezes solid and shatters into a\nthousand pieces. Most land within 20\nfeet from where he was standing.\n(\u002B20)", + "DescriptionText": "Foe freezes solid and shatters into a thousand pieces. Most land within 20 feet from where he was standing.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 733, + "Top": 1078, + "Width": 139, + "Height": 46 + }, + "SourceImagePath": "cold/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2932, + "BoundsTop": 4312, + "BoundsWidth": 556, + "BoundsHeight": 184, + "CropLeft": 2884, + "CropTop": 4280, + "CropWidth": 652, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/source.xml b/src/RolemasterDb.App/import-artifacts/critical/cold/source.xml new file mode 100644 index 0000000..81ee062 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/cold/source.xml @@ -0,0 +1,415 @@ + + + + + + + + + + + + + +Key: +ß +π += must parry ß rounds; +ß + += no parry for ß rounds; +ß +∑ = + stunned for ß rounds; +ß + += bleed ß hits per round; +(-ß) = foe has -ß penalty; +(+ß) = attacker gets +ß next round. +89 +01-05 +Cold breeze yields little damage. +Attack yields a brief climate change. +You give foe's cheeks a rosy hue. +Your blast looks good, works poorly. +Sharp and cold air assaults foe's skin. ++0H ++0H ++1H ++2H ++3H +06-10 +Feeble and poorly directed. Foe is not +really concerned. +Burst of cold causes target mild +discomfort. +Your attack conjures a bitter arctic +wind. Foe is not impressed. +Foe shields himself. Your attack +misses most of its mark. +Ice up the ground and foe's feet. He +springs clear. You have initiative. ++1H ++2H ++3H ++4H ++4H +11-15 +Foe dodges your attack with too much +effort. You have initiative. +Foe evades frantically. He is still +chilled. You have initiative next round. +Encrust foe with ice. He is unbalanced +as he shakes it off. You gain initiative. +Light frosting leaves foe unsteady. +You must hit him again. +Frigid strike to foe's torso and face. +You have the initiative. ++2H ++3H ++4H ++5H – π ++6H – π +16-20 +Foe is fearful of your assault. Your +attack gives you the initiative. +Assault blinds foe for a moment. You +have 2 rounds of initiative. +Numbing whirlwind encircles foe. You +have 2 rounds of initiative. +Foe's attempts to evade and strikes +himself. You try not to laugh. +Foe's failed efforts to avoid your attack +puts him at a grave disadvantage. ++3H ++4H ++5H ++6H – π ++7H – π +21-35 +Burst of cold to the face sends foe +stumbling back. You have initiative for +2 rounds. +Frost laden blast forces foe back. Any +containers of water freeze and burst +open. You have 2 rounds of initiative. +Disorient foe with a tricky shot. His +garments have failed to keep out the +chill. Press him while you can. +With a burst of white, you shower foe +with ice crystals. Foe closes his eyes to +avoid the onslaught. +Freeze foe's hair and scalp. If foe has +long hair, it breaks off! Foe struggles in +vain to repair the damage. ++4H ++5H ++6H – π ++7H – π – ∫ –(-20) ++8H – (2π-15) +36-45 +Your attack freezes one of foe's metal +items. Foe takes a defensive stance. +Foe makes a futile attempt to parry the +attack;. He loses 3 rounds of initiative. +Catch foe in lower leg. You gain +initiative while foe regains footing. +Foe ices down; freezing any exposed +skin. The pain is great. +Assault to foe's legs. Hypothermic, he +struggles to remain standing. ++5H – π + +6H – π ++7H – 2π – ∫ ++9H – ∑ – 2∫ – (-20) +∑ – (-20) +46-50 +Scatter your attack all over foe's chest. +Foe is covered with frost. He looks +ghoulish. +Cold penetrates foe's chest and gives +him frostbite. The pain must be severe. +He stumbles back. +Blast hits foe's chest and scatters. The +cold stings all exposed skin. Foe has a +shocked look on his face. +Assault lands on foe's weapon arm. He +makes a supreme effort to pull his arm +away. Foe is unable to protect himself. +Glancing strike to lower back. Foe is +spun about and slings his weapon +away. You have him now. ++6H – 2π ++7H – 2π – 2∫ ++8H – ∑ ++9H – ∑ – 2∫ – (-10) ++10H – ∑ +51-55 +Blow to foe's chest. Your attack has +force and foe stumbles. +Strong off-center blast takes foe in his +shield arm wrist and side. +Hard strike to chest, armor does not +help. Blow leaves its frigid mark. +Heavy blow to shield shoulder. Foe is +knocked back 5 feet. Muscle damage. +Blow to side. Foe seeks to regain his +wind and survive your next onslaught. ++7H – ∑ ++8H – ∑ – 3∫ ++5H – 2∑ – (-10) ++10H – 2∑ – 3∫ ++11H – ∑∏ – 4∫ +56-60 +Strike falls on an exposed area. Foe +gives ground. He is shaken but his +guard is still up. +Foe turns to avoid your attack and +exposes his back. All wood on his back +becomes frozen and brittle. +Strong blast hits foe low. His legs +almost give with the pain. Foe recoils +5 feet away from your assault. +Miss foe's arm and strike his thigh. He +loses his footing. Skin and nerve +damage causes foe pain. +Your blast engulfs foe's weapon arm +and climbs toward his torso. He steps +away frantic to evade the pain. ++8H – 2∑ ++9H – 2∑ – 2∫ +with leg armor: +5H – 2π +w/o leg armor: +9H – ∑∏ +∑∏ – 3∫ – (-15) ++10H – ∑∏ – 4∫ – (-20) +61-65 +Well placed. Strike slams into foe's +weapon arm. Foe's evasion is comical. +Solid strike to foe's forearm. Foe's +hand frozen shut for 1 round. +Blast freeze dries organic material on +foe's back. +Blast freezes foe's arm and shield. If +no shield,arm useless from nerve +damage. +Strike to foe's waist. All equipment on +belt freezes and breaks if foe moves. +with arm greaves: +2H – π +w/o arm greaves: +9H – ∑∏ ++10H – ∑∏ – (-5) – 3∫ ++11H – 4∑ +with shield: +20H +w/o shield: 5∑ ++13H – 3∑ – (- 30) +66 +Steal the heat from foe's neck and +chest area. Foe drops anything he is +holding and blocks his throat. +Foe is covered by the blast. All +extremities are damaged. The pain +grows until foe is warmed up. +Foe's response to your burst of cold +sends him to the ground hard. Foe +jams his wrist into the ground. +Frigid onslaught fills foes eyes and +mouth with ice. Foe is blinded for a +moment until he can clear his eyes. +Your strike steals the heat out of foe's +neck and upper chest. Nerves and +muscles are damaged. ++10H – 3∑∏ +4∑∏ – 3∫ +6∑ – (-15) – 4∫ +4∑ – (-30) – 4∫ ++15H – 8∑∏ – 4∫ +67-70 +Score a hit to foe's side. It produces +mild frostbite. Any herbs on foe's belt +are ruined. +Spray foe's face with a powerful chill. +He tries without success to push your +attack away . The damage endures. +Freeze foe's weapon arm. It is useless +until it is warmed up. Foe is in great +pain and stuggles to stand. +Polar wind pierces deep into chest and +leaves foe trembling. You are close to +victory. Foe faces the wrong way. +Blow to foe's shield arm. He is +knocked down. If foe has a shield, it is +broken. If not, the arm is broken. ++10H – ∑∏ – (-5) ++11H – 2∑ – ∏ – (-10) ++12H – 2∑ – ∏ – (-15) +with chest armor: +15H – ∑∏ – (-5) +w/o ch armor: +13H – 3∑ – ∏ – (-20) +with shield: 2∑ +w/o shield: 6∑ +71-75 +Strong unbalancing blast. Foe's body +temperature drops. +Strike lands on foe's legs. The pain and +shock cause him to falter. +Side strike hits foe just right. Any +leather or cloth freezes and shatters. +Blast drains the heat from foe's +weapon arm. Hand and arm are +useless. The hand is frozen closed. +Blast freezes weapon hand, shoulder +and face. Foe is numb and needs time +to warm up. Foe is still standing. ++11H – 2∑ – (-10) ++12H – 2∑∏ – 3∫ + 2∑∏ – 3∫ – (-20) ++13H – 2∑∏ – (-50) ++15H – 3∑ +76-80 +Strike to foe's shield arm. If foe sees it +he may block with a shield. Foe recoils +5 feet from the blast. +Chest strike freezes what it touches. +Equipment is damaged. The pain +persists. Chest armor is destroyed. +Blow to foe's arms. Any metal +armguards freeze, immobilizing arms +until the armor is removed or unfrozen. +Strike to foe's side downs him. Severe +frostbite hampers movements. Any +liquid among foe's equipment freezes. +Solid chest strike. Foe flips onto his +back , dropping all he holds. Foe is at +your mercy. +with shield: +2H – 2π +w/o shield: +12H – 2∑ – ∏ +w/ ch. armor: +13H – 4∑ – (+15) – 3∫ +w/o chest armor: +20H – 4π – (-5) +with chest armor: 3∑ – 4∫ +w/o chest armor: (-25) – 4∫ ++15H – 3∑∏ – (-25) +12∑ – (-30) +81-85 +Back blast. Any glass on back is +broken. Painful bruise. +Clean hard strike pushes foe over, +cracking ribs. His recovery lacks grace. +Arctic blast to foe's torso. Foe is badly +frostbitten and falls to knees in pain. +Freezes foe's hands. Arms are useless. +Foe drops what he was carrying. +Assault to throat and face is terminal. +Foe is still active but dies in 12 rounds. ++13H – 2∑∏ ++12H – 2∑∏ – (-15) – 4∫ + 6∑ – 5∫ – (-40) +9∑ – 6∫ ++17H +86-90 +Assault to foe's lower leg freezes part +of it. Foe falls down. Without leg +armor, foot must be amputated. +Strike lower leg and freeze it. With leg +armor, he needs aid in 20 rnds to keep +the foot. Without leg armor, it's gone. +Blow to foe's knees. They freeze up +and foe falls. On impact, foe shatters a +knee. His fall makes it twice as bad. +Chest hit causes much pain. If foe is +warmly clothed he is knocked out. If +not he dies of shock in 12 rounds. +Your ruthless tempest entangles foe +and steals the warmth from his body. +He drops and dies in 9 inactive rounds. +with leg armor: 2∑ – 6(-10) +w/o leg armor: (-70) +with leg armor: 3∑ +w/o leg armor: (-75) +9∑ – 6∫ – (-80) ++25H – (-40) + +91-95 +Blow lands on foe's face. It freezes his +nose, ears and cheeks. Foe collapses. +Without helm, foe loses both ears. +Connect with foe's hip. Hip is +fractured. Skin and muscles are +frostbitten. Foe falls down. He is +almost helpless. +Freeze the blood in foe's thigh. As it +warms the clots move to his heart +killing him in 9 rounds. +All warmth is driven from foe's lower +body. Vital organs are destroyed. Foe +is immobile, and dies in 9 rounds. +Push foe backwards and off balance. +The blood in foe's extremeties is +frozen. He dies in 6 rounds of agony. +with helmet: 3∑ +w/o helmet: 6∑ – (-50) ++17H – 3∑∏ – (-75) ++15H – 3∑∏ – (–30) ++18H ++19H +96-99 +Chest strike sends foe over hard. He is +knocked out. His lips freeze and split +open. He cannot speak for 2 weeks. +Blast foe's neck and collarbone. Neck +armor will block the attack, but foe is +knocked out. If the neck is exposed it +freezes solid and foe dies in 9 rounds. +Your onslaught freezes foe's torso and +head. Foe remains standing for a +moment. He goes into shock and dies +6 rounds later. +Foe's heart and lungs are suddenly +frozen by your arctic blast. Foe is +finished. He dies of shock and +suffocation in 6 rounds. +Foe is a lifeless frozen statue. He is +quite dead and well preserved. Store in +a cool dry place. +9∑ + ++18H ++19H ++20H – (+10) +100 +Foe is sent into a month long coma by +the attack. He loses his nose to +frostbite. +Assault drops foe's body temperature; +his heart stops. He dies in 1 round; +well preserved. You are respected by all. +Blast freezes foe's eyes, mouth, and +neck. Foe falls down in a coma for 2 +weeks and paralyzed from neck down. +Massive assault freezes foe's body +completely. He remains standing, but if +knocked over he will shatter. +Foe freezes solid and shatters into a +thousand pieces. Most land within 20 +feet from where he was standing. ++21H +(+5) + ++20H +(+20) +A +B +C +D +E +COLD CRITICAL STRIKE TABLE A-10.10.1 +becomes frozen and brittle. +arm useless from nerve +with shield: +20H – (-20) +w/o shield: 5∑ – (-30) +67-70 +becomes frozen and brittle. +arm useless from nerve +with shield: +20H – (-20) +w/o shield: 5∑ – (-30) +67-70 +14.1 COLD CRITICAL STRIKE TABLE + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/cold/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/cold/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/cold/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__01-05.png new file mode 100644 index 0000000..c91d678 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__06-10.png new file mode 100644 index 0000000..e7c8720 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__100.png new file mode 100644 index 0000000..c8a76c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__11-15.png new file mode 100644 index 0000000..104e50a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__16-20.png new file mode 100644 index 0000000..f3af66d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__21-35.png new file mode 100644 index 0000000..cd92598 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__36-45.png new file mode 100644 index 0000000..e9e371c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__46-50.png new file mode 100644 index 0000000..8b10cc5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__51-55.png new file mode 100644 index 0000000..d92636f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__56-60.png new file mode 100644 index 0000000..dd032ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__61-65.png new file mode 100644 index 0000000..414fe8f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__66.png new file mode 100644 index 0000000..cf07cc2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__67-70.png new file mode 100644 index 0000000..e113803 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__71-75.png new file mode 100644 index 0000000..cddf3f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__76-80.png new file mode 100644 index 0000000..d75a6c4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__81-85.png new file mode 100644 index 0000000..7ecb3bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__86-90.png new file mode 100644 index 0000000..aef0b12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__91-95.png new file mode 100644 index 0000000..cca8411 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__96-99.png new file mode 100644 index 0000000..6bc1c4e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__01-05.png new file mode 100644 index 0000000..269f6ac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__06-10.png new file mode 100644 index 0000000..6c6173d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__100.png new file mode 100644 index 0000000..a152968 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__11-15.png new file mode 100644 index 0000000..d0f573c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__16-20.png new file mode 100644 index 0000000..a7f6a56 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__21-35.png new file mode 100644 index 0000000..2a488d0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__36-45.png new file mode 100644 index 0000000..20bf01f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__46-50.png new file mode 100644 index 0000000..cc0b81b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__51-55.png new file mode 100644 index 0000000..2f0f8a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__56-60.png new file mode 100644 index 0000000..898b141 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__61-65.png new file mode 100644 index 0000000..d2e4803 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__66.png new file mode 100644 index 0000000..74f185d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__67-70.png new file mode 100644 index 0000000..de21d6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__71-75.png new file mode 100644 index 0000000..d3bf5e2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__76-80.png new file mode 100644 index 0000000..57412f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__81-85.png new file mode 100644 index 0000000..6638609 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__86-90.png new file mode 100644 index 0000000..d4b36b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__91-95.png new file mode 100644 index 0000000..7fdee00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__96-99.png new file mode 100644 index 0000000..84b588b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__01-05.png new file mode 100644 index 0000000..5d047ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__06-10.png new file mode 100644 index 0000000..43d8f57 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__100.png new file mode 100644 index 0000000..e86443f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__11-15.png new file mode 100644 index 0000000..9aacd8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__16-20.png new file mode 100644 index 0000000..86ceef4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__21-35.png new file mode 100644 index 0000000..2979f6b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__36-45.png new file mode 100644 index 0000000..162e7aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__46-50.png new file mode 100644 index 0000000..d25b941 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__51-55.png new file mode 100644 index 0000000..7ac5a5f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__56-60.png new file mode 100644 index 0000000..d68430a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__61-65.png new file mode 100644 index 0000000..ba73b5b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__66.png new file mode 100644 index 0000000..99b194c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__67-70.png new file mode 100644 index 0000000..bc20dc6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__71-75.png new file mode 100644 index 0000000..bbc3190 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__76-80.png new file mode 100644 index 0000000..ef91ffe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__81-85.png new file mode 100644 index 0000000..10118fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__86-90.png new file mode 100644 index 0000000..086ffba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__91-95.png new file mode 100644 index 0000000..8af5abd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__96-99.png new file mode 100644 index 0000000..62b17b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__01-05.png new file mode 100644 index 0000000..3c1c95b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__06-10.png new file mode 100644 index 0000000..5e203ce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__100.png new file mode 100644 index 0000000..0881e2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__11-15.png new file mode 100644 index 0000000..42556e9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__16-20.png new file mode 100644 index 0000000..ce10dd5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__21-35.png new file mode 100644 index 0000000..31c5b5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__36-45.png new file mode 100644 index 0000000..4a6be7a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__46-50.png new file mode 100644 index 0000000..68660ec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__51-55.png new file mode 100644 index 0000000..4734a1c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__56-60.png new file mode 100644 index 0000000..f50041f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__61-65.png new file mode 100644 index 0000000..dd68a00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__66.png new file mode 100644 index 0000000..4fb1ed7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__67-70.png new file mode 100644 index 0000000..22f40ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__71-75.png new file mode 100644 index 0000000..773b830 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__76-80.png new file mode 100644 index 0000000..0243724 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__81-85.png new file mode 100644 index 0000000..8dd9c1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__86-90.png new file mode 100644 index 0000000..92b4121 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__91-95.png new file mode 100644 index 0000000..8b95e41 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__96-99.png new file mode 100644 index 0000000..c855145 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__01-05.png new file mode 100644 index 0000000..c0213a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__06-10.png new file mode 100644 index 0000000..1955733 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__100.png new file mode 100644 index 0000000..3104477 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__11-15.png new file mode 100644 index 0000000..547531d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__16-20.png new file mode 100644 index 0000000..1d828e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__21-35.png new file mode 100644 index 0000000..79c3180 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__36-45.png new file mode 100644 index 0000000..b678439 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__46-50.png new file mode 100644 index 0000000..1ec953a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__51-55.png new file mode 100644 index 0000000..8d26c3f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__56-60.png new file mode 100644 index 0000000..721cb60 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__61-65.png new file mode 100644 index 0000000..3a7eb8a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__66.png new file mode 100644 index 0000000..a3ba1b0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__67-70.png new file mode 100644 index 0000000..6eb78fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__71-75.png new file mode 100644 index 0000000..cdb123e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__76-80.png new file mode 100644 index 0000000..d66c549 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__81-85.png new file mode 100644 index 0000000..820d231 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__86-90.png new file mode 100644 index 0000000..2ec7c46 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__91-95.png new file mode 100644 index 0000000..eef43bc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__96-99.png new file mode 100644 index 0000000..0f3445b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/electricity/fragments.json new file mode 100644 index 0000000..436f225 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/electricity/fragments.json @@ -0,0 +1,3902 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 123, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 151, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 153.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 155, + "Width": 7, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 158.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 162, + "Width": 84, + "Height": 8, + "Text": "= must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 4, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 257 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 260, + "Width": 7, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 267, + "Width": 89, + "Height": 8, + "Text": "= no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 364, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 369, + "Width": 9, + "Height": 9, + "Text": "\u2211", + "Confidence": null, + "CenterX": 373.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 378, + "Width": 86, + "Height": 8, + "Text": "= stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 475.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 5, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 483, + "Width": 91, + "Height": 8, + "Text": "= bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 528.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 582, + "Width": 90, + "Height": 8, + "Text": "(-\u00DF) = foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 125, + "Height": 8, + "Text": "(\u002B\u00DF) = attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 1142, + "Left": 63, + "Width": 17, + "Height": 13, + "Text": "90", + "Confidence": null, + "CenterX": 71.5 + }, + { + "PageNumber": 1, + "Top": 99, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 93, + "Left": 101, + "Width": 109, + "Height": 8, + "Text": "Blast is frightful, but ineffective.", + "Confidence": null, + "CenterX": 155.5 + }, + { + "PageNumber": 1, + "Top": 93, + "Left": 248, + "Width": 128, + "Height": 8, + "Text": "Your strike\u0027s energy is poorly aimed.", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 93, + "Left": 395, + "Width": 130, + "Height": 8, + "Text": "Strike\u0027s energy soaks into the ground.", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 93, + "Left": 541, + "Width": 129, + "Height": 8, + "Text": "Bright flash and little heat disturb foe.", + "Confidence": null, + "CenterX": 605.5 + }, + { + "PageNumber": 1, + "Top": 93, + "Left": 688, + "Width": 119, + "Height": 8, + "Text": "Foe avoids blast but feels charged.", + "Confidence": null, + "CenterX": 747.5 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 226, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 373, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 380 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 520, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 666, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 813, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 820 + }, + { + "PageNumber": 1, + "Top": 134, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 128, + "Left": 101, + "Width": 130, + "Height": 8, + "Text": "Sparks fly. Foe is illuminated by blast.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 128, + "Left": 248, + "Width": 130, + "Height": 8, + "Text": "Foe\u0027s hair stands on end. Frightening!", + "Confidence": null, + "CenterX": 313 + }, + { + "PageNumber": 1, + "Top": 128, + "Left": 395, + "Width": 114, + "Height": 8, + "Text": "Foe waves off sparks and smoke.", + "Confidence": null, + "CenterX": 452 + }, + { + "PageNumber": 1, + "Top": 128, + "Left": 541, + "Width": 91, + "Height": 8, + "Text": "Static gathers on foe. Zap!", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 128, + "Left": 688, + "Width": 120, + "Height": 8, + "Text": "Foe sees spots. You have initiative.", + "Confidence": null, + "CenterX": 748 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 226, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 373, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 380 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 520, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 666, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 813, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 820 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 101, + "Width": 130, + "Height": 8, + "Text": "Bolt reaches for foe but then grounds", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 101, + "Width": 80, + "Height": 8, + "Text": "out. You have initiative.", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 248, + "Width": 131, + "Height": 8, + "Text": "Mild jolt to foe\u0027s shoulder causes him", + "Confidence": null, + "CenterX": 313.5 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 248, + "Width": 105, + "Height": 8, + "Text": "to hesitate. You have initiative.", + "Confidence": null, + "CenterX": 300.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 395, + "Width": 126, + "Height": 8, + "Text": "The thunderous crack of your attack", + "Confidence": null, + "CenterX": 458 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 395, + "Width": 115, + "Height": 8, + "Text": "panics foe. You gain the initiative.", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 541, + "Width": 132, + "Height": 8, + "Text": "Bolt jumps to foe\u0027s weapons and then", + "Confidence": null, + "CenterX": 607 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 541, + "Width": 122, + "Height": 8, + "Text": "into the ground. You have initiative.", + "Confidence": null, + "CenterX": 602 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 688, + "Width": 137, + "Height": 8, + "Text": "Flash unbalances foe and sends him on", + "Confidence": null, + "CenterX": 756.5 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 688, + "Width": 114, + "Height": 8, + "Text": "the defensive. You have initiative.", + "Confidence": null, + "CenterX": 745 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 226, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 373, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 380 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 520, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 666, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 795, + "Width": 34, + "Height": 8, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "Foe flinches from the static in the air.", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 101, + "Width": 77, + "Height": 8, + "Text": "You have the initiative.", + "Confidence": null, + "CenterX": 139.5 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 248, + "Width": 131, + "Height": 8, + "Text": "The blast of light and heat daunts foe.", + "Confidence": null, + "CenterX": 313.5 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 248, + "Width": 117, + "Height": 8, + "Text": "He looks away; you have initiative.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 395, + "Width": 124, + "Height": 8, + "Text": "Flying debris obstructs foe\u0027s vision.", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 395, + "Width": 106, + "Height": 8, + "Text": "You have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 448 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 541, + "Width": 128, + "Height": 8, + "Text": "Foe strikes out at the blast to protect", + "Confidence": null, + "CenterX": 605 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 541, + "Width": 133, + "Height": 8, + "Text": "himself. It seems to work well enough.", + "Confidence": null, + "CenterX": 607.5 + }, + { + "PageNumber": 1, + "Top": 206, + "Left": 688, + "Width": 125, + "Height": 8, + "Text": "Foe fails to avoid some of the attack", + "Confidence": null, + "CenterX": 750.5 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 688, + "Width": 77, + "Height": 8, + "Text": "and almost falls down.", + "Confidence": null, + "CenterX": 726.5 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 226, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 234 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 373, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 520, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 527 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 649, + "Width": 34, + "Height": 8, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 666 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 796, + "Width": 34, + "Height": 8, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 101, + "Width": 132, + "Height": 8, + "Text": "Foe recoils from thundering sound of", + "Confidence": null, + "CenterX": 167 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "the blast. He loses 2 rounds initiative.", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 248, + "Width": 137, + "Height": 8, + "Text": "Flashes of light and sharp cracks. Foe\u0027s", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 248, + "Width": 127, + "Height": 8, + "Text": "impressed.You have 2 rnds initiative.", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 395, + "Width": 128, + "Height": 8, + "Text": "Any coins on foe heat up smolder in", + "Confidence": null, + "CenterX": 459 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 395, + "Width": 100, + "Height": 8, + "Text": "foe\u0027s pockets. He steps back.", + "Confidence": null, + "CenterX": 445 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 541, + "Width": 122, + "Height": 8, + "Text": "Your attack jolts foe into action. He", + "Confidence": null, + "CenterX": 602 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 541, + "Width": 136, + "Height": 8, + "Text": "steps back and swings in all directions.", + "Confidence": null, + "CenterX": 609 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 688, + "Width": 122, + "Height": 8, + "Text": "Foe is magnetized foe a moment. It", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 688, + "Width": 90, + "Height": 8, + "Text": "distracts him. He is dazed.", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 226, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 234 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 373, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 504, + "Width": 29, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 518.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 633, + "Width": 49, + "Height": 8, + "Text": "\u002B5H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 784, + "Width": 45, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 296, + "Left": 101, + "Width": 124, + "Height": 8, + "Text": "Blast almost misses, but it grounds", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 101, + "Width": 79, + "Height": 8, + "Text": "into foe\u0027s weapon arm.", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 296, + "Left": 248, + "Width": 128, + "Height": 8, + "Text": "Foe\u0027s side and back are entangled by", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 248, + "Width": 69, + "Height": 8, + "Text": "blast. Foe is shaken.", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 296, + "Left": 395, + "Width": 125, + "Height": 8, + "Text": "Foe heats up and goes on defensive", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 395, + "Width": 118, + "Height": 8, + "Text": "until he cools. His footing is good.", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 296, + "Left": 541, + "Width": 113, + "Height": 8, + "Text": "Entangle foe in deadly blue light.", + "Confidence": null, + "CenterX": 597.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 541, + "Width": 113, + "Height": 8, + "Text": "Garments smolder and traces of", + "Confidence": null, + "CenterX": 597.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 541, + "Width": 102, + "Height": 8, + "Text": "energy inhabit his equipment.", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 296, + "Left": 688, + "Width": 119, + "Height": 8, + "Text": "Foe\u0027s equipment is infested by the", + "Confidence": null, + "CenterX": 747.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 688, + "Width": 136, + "Height": 8, + "Text": "blast. Garments are scorched; exposed", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 688, + "Width": 104, + "Height": 8, + "Text": "skin is burned. Foe is a wreck.", + "Confidence": null, + "CenterX": 740 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 143, + "Width": 96, + "Height": 8, + "Text": "w/o metal weapon: \u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 132, + "Width": 109, + "Height": 8, + "Text": "with metal weapon: \u002B7H \u2013 \u2211\u03C0", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 344, + "Width": 43, + "Height": 8, + "Text": "\u002B2H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 365.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 499, + "Width": 36, + "Height": 8, + "Text": "\u002B7H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 618, + "Width": 62, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211 \u2013 2(-10)", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 788, + "Width": 38, + "Height": 8, + "Text": "\u002B12H \u20132\u2211", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 101, + "Width": 125, + "Height": 8, + "Text": "Small bits of electrical energy chase", + "Confidence": null, + "CenterX": 163.5 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 101, + "Width": 130, + "Height": 8, + "Text": "around foe\u0027s body. Foe makes a futile", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 101, + "Width": 83, + "Height": 8, + "Text": "effort to throw them off.", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 248, + "Width": 133, + "Height": 8, + "Text": "Strike hits foe\u0027s chest. Clothes smoke,", + "Confidence": null, + "CenterX": 314.5 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 248, + "Width": 133, + "Height": 8, + "Text": "then burn. Foe flails his arms trying to", + "Confidence": null, + "CenterX": 314.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 248, + "Width": 48, + "Height": 8, + "Text": "put them out.", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 395, + "Width": 116, + "Height": 8, + "Text": "Strike connects with foe\u0027s arm. It", + "Confidence": null, + "CenterX": 453 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 395, + "Width": 129, + "Height": 8, + "Text": "careens off each piece of metal foe is", + "Confidence": null, + "CenterX": 459.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 395, + "Width": 128, + "Height": 8, + "Text": "wearing. Exposed areas are blistered.", + "Confidence": null, + "CenterX": 459 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 541, + "Width": 136, + "Height": 8, + "Text": "Direct hit to foe\u0027s chest illuminates foe.", + "Confidence": null, + "CenterX": 609 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 541, + "Width": 133, + "Height": 8, + "Text": "Much of the strike grounds out. Some", + "Confidence": null, + "CenterX": 607.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 541, + "Width": 127, + "Height": 8, + "Text": "of the energy remains for an instant.", + "Confidence": null, + "CenterX": 604.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 688, + "Width": 116, + "Height": 8, + "Text": "Blast to foe\u0027s waist. He stumbles,", + "Confidence": null, + "CenterX": 746 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 688, + "Width": 127, + "Height": 8, + "Text": "dazzled by light, and twitches for the", + "Confidence": null, + "CenterX": 751.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 688, + "Width": 130, + "Height": 8, + "Text": "next hour. You have 6 rds of initiative.", + "Confidence": null, + "CenterX": 753 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 197, + "Width": 43, + "Height": 8, + "Text": "\u002B2H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 353, + "Width": 34, + "Height": 8, + "Text": "\u002B6H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 370 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 498, + "Width": 38, + "Height": 8, + "Text": "\u002B7H \u2013 2\u2211", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 614, + "Width": 66, + "Height": 8, + "Text": "\u002B7H \u2013 2\u2211 \u2013 2(-10)", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 771, + "Width": 58, + "Height": 8, + "Text": "\u002B13H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 426, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 101, + "Width": 131, + "Height": 8, + "Text": "Direct sizzling blast to foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 101, + "Width": 124, + "Height": 8, + "Text": "It grounds out and leaves foe dazed.", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 248, + "Width": 128, + "Height": 8, + "Text": "Back strike throws equipment about.", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 248, + "Width": 100, + "Height": 8, + "Text": "Minor burns to exposed skin.", + "Confidence": null, + "CenterX": 298 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 395, + "Width": 122, + "Height": 8, + "Text": "Hard strike to side, armor does not", + "Confidence": null, + "CenterX": 456 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 395, + "Width": 128, + "Height": 8, + "Text": "help. Blow leaves a permanent mark.", + "Confidence": null, + "CenterX": 459 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 541, + "Width": 128, + "Height": 8, + "Text": "Blast assaults foe\u0027s shield arm. If foe", + "Confidence": null, + "CenterX": 605 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 541, + "Width": 121, + "Height": 8, + "Text": "has metal armor he is knocked out.", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 688, + "Width": 108, + "Height": 8, + "Text": "Weapon arm endures a terrible", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 688, + "Width": 124, + "Height": 8, + "Text": "onslaught. Foe drops all in his hand.", + "Confidence": null, + "CenterX": 750 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 210, + "Width": 29, + "Height": 8, + "Text": "\u002B6H \u2013\u2211", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 338, + "Width": 49, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 479, + "Width": 54, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211\u220F \u2013 \u222B", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 624, + "Width": 55, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 769, + "Width": 58, + "Height": 8, + "Text": "\u002B13H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 476, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "Foe is jerked off balance by the strike", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 101, + "Width": 116, + "Height": 8, + "Text": "and has trouble regaining footing.", + "Confidence": null, + "CenterX": 159 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 248, + "Width": 128, + "Height": 8, + "Text": "Blast heats up metal on foe, causing", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 248, + "Width": 113, + "Height": 8, + "Text": "painful burns to contacting flesh.", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 395, + "Width": 120, + "Height": 8, + "Text": "Strong blast hits foe low. His legs", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 395, + "Width": 131, + "Height": 8, + "Text": "almost give from the pain. Foe recoils.", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 541, + "Width": 111, + "Height": 8, + "Text": "You hits hard; foe\u0027s abdomen is", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 541, + "Width": 115, + "Height": 8, + "Text": "hammered. He steps back 5 feet.", + "Confidence": null, + "CenterX": 598.5 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 688, + "Width": 126, + "Height": 8, + "Text": "Bolt passes through foe\u0027s leg before", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 688, + "Width": 82, + "Height": 8, + "Text": "grounding. Foe suffers .", + "Confidence": null, + "CenterX": 729 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 206, + "Width": 34, + "Height": 8, + "Text": "\u002B7H \u2013 3\u03C0", + "Confidence": null, + "CenterX": 223 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 313, + "Width": 74, + "Height": 8, + "Text": "w/o metal: \u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 300, + "Width": 87, + "Height": 8, + "Text": "with metal: \u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 444, + "Width": 90, + "Height": 8, + "Text": "with leg armor: \u002B12H \u2013 \u2211", + "Confidence": null, + "CenterX": 489 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 445, + "Width": 88, + "Height": 8, + "Text": "w/o leg armor: \u002B9H \u2013 2\u2211", + "Confidence": null, + "CenterX": 489 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 579, + "Width": 100, + "Height": 8, + "Text": "with abdominal armor: \u002B20H", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 562, + "Width": 118, + "Height": 8, + "Text": "w/o abdominal armor: \u002B15H \u2013 6\u2211", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 734, + "Width": 93, + "Height": 8, + "Text": "with leg armor: \u002B8H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 780.5 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 743, + "Width": 83, + "Height": 8, + "Text": "w/o leg armor: 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 101, + "Width": 122, + "Height": 8, + "Text": "Well placed. Strike slams into foe\u0027s", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 101, + "Width": 132, + "Height": 8, + "Text": "weapon arm. Foe\u0027s evasion is comical.", + "Confidence": null, + "CenterX": 167 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 248, + "Width": 135, + "Height": 8, + "Text": "Foe\u0027s reflexes are numbed by blast. He", + "Confidence": null, + "CenterX": 315.5 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 248, + "Width": 99, + "Height": 8, + "Text": "is dazed and moving slowly.", + "Confidence": null, + "CenterX": 297.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 395, + "Width": 132, + "Height": 8, + "Text": "Strike is low and pours into ground. A", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 395, + "Width": 108, + "Height": 8, + "Text": "stray bolt arches into foe\u0027s leg.", + "Confidence": null, + "CenterX": 449 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 541, + "Width": 124, + "Height": 8, + "Text": "Blast to foe\u0027s shield shoulder. Foe\u0027s", + "Confidence": null, + "CenterX": 603 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 541, + "Width": 99, + "Height": 8, + "Text": "shield arm and shield ignite.", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 688, + "Width": 132, + "Height": 8, + "Text": "Foe is overcome by the flash. He falls,", + "Confidence": null, + "CenterX": 754 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 688, + "Width": 132, + "Height": 8, + "Text": "entangled in his smoldering garments.", + "Confidence": null, + "CenterX": 754 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 133, + "Width": 107, + "Height": 8, + "Text": "with metal greaves: \u002B3H \u2013 2\u2211", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 142, + "Width": 98, + "Height": 8, + "Text": "w/o metal greaves: \u002B7H \u2013 \u2211", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 348, + "Width": 41, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 477, + "Width": 55, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 608, + "Width": 72, + "Height": 8, + "Text": "with shield: 6\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 610, + "Width": 73, + "Height": 8, + "Text": "w/o shield: 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 771, + "Width": 55, + "Height": 8, + "Text": "\u002B14H \u2013 2\u2211 \u2013 \u03C0", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 583, + "Left": 62, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 70 + }, + { + "PageNumber": 1, + "Top": 567, + "Left": 101, + "Width": 133, + "Height": 8, + "Text": "Disrupt the beating of foe\u0027s heart for a", + "Confidence": null, + "CenterX": 167.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 101, + "Width": 135, + "Height": 8, + "Text": "moment. Reflexes strain muscles. Foe", + "Confidence": null, + "CenterX": 168.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 101, + "Width": 60, + "Height": 8, + "Text": "is knocked down.", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 567, + "Left": 248, + "Width": 123, + "Height": 8, + "Text": "Bright flash illumnates foe and jolts", + "Confidence": null, + "CenterX": 309.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 248, + "Width": 110, + "Height": 8, + "Text": "every muscle in his body. Foe\u0027s", + "Confidence": null, + "CenterX": 303 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 248, + "Width": 130, + "Height": 8, + "Text": "reflexes will flinch again in 10 rounds.", + "Confidence": null, + "CenterX": 313 + }, + { + "PageNumber": 1, + "Top": 567, + "Left": 395, + "Width": 121, + "Height": 8, + "Text": "Any metal armor on arm and chest", + "Confidence": null, + "CenterX": 455.5 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 395, + "Width": 127, + "Height": 8, + "Text": "becomes fused together in the blast.", + "Confidence": null, + "CenterX": 458.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 395, + "Width": 129, + "Height": 8, + "Text": "Foe\u0027s arm is then pinned and useless.", + "Confidence": null, + "CenterX": 459.5 + }, + { + "PageNumber": 1, + "Top": 567, + "Left": 541, + "Width": 120, + "Height": 8, + "Text": "Foe\u0027s neck absorbs the bulk of the", + "Confidence": null, + "CenterX": 601 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 541, + "Width": 107, + "Height": 8, + "Text": "attack. Nerves overload. Foe is", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 541, + "Width": 118, + "Height": 8, + "Text": "knocked out and mute for a week.", + "Confidence": null, + "CenterX": 600 + }, + { + "PageNumber": 1, + "Top": 567, + "Left": 688, + "Width": 136, + "Height": 8, + "Text": "Boom! Foe\u0027s skeleton crackles with the", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 577, + "Left": 688, + "Width": 136, + "Height": 8, + "Text": "impact. He drops and dies in 2 rounds.", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 225, + "Width": 17, + "Height": 8, + "Text": "3 \u2211", + "Confidence": null, + "CenterX": 233.5 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 296, + "Width": 91, + "Height": 8, + "Text": "\u002B15H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 493, + "Width": 40, + "Height": 8, + "Text": "\u002B9H \u2013 12\u2211", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 644, + "Width": 36, + "Height": 8, + "Text": "\u002B20H \u2013 4\u222B", + "Confidence": null, + "CenterX": 662 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 809, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 818.5 + }, + { + "PageNumber": 1, + "Top": 638, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 101, + "Width": 127, + "Height": 8, + "Text": "Blast climbs up foe\u0027s side and sends", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "him stumbling back 5 feet. He blocks", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 101, + "Width": 119, + "Height": 8, + "Text": "his face against a renewed assault.", + "Confidence": null, + "CenterX": 160.5 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 248, + "Width": 127, + "Height": 8, + "Text": "Strike lands on shoulder and streaks", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 248, + "Width": 134, + "Height": 8, + "Text": "down back. Foe steps foward in failing", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 248, + "Width": 115, + "Height": 8, + "Text": "attempt to duck. He is vulnerable.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 395, + "Width": 132, + "Height": 8, + "Text": "Back blast. Foe drops to one knee and", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 395, + "Width": 136, + "Height": 8, + "Text": "rises again with some difficulty. Skin is", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 395, + "Width": 52, + "Height": 8, + "Text": "blistered badly.", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 541, + "Width": 134, + "Height": 8, + "Text": "The shock of the assault inhabits foe\u0027s", + "Confidence": null, + "CenterX": 608 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 541, + "Width": 111, + "Height": 8, + "Text": "spine. Muscles and tendons are", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 541, + "Width": 120, + "Height": 8, + "Text": "stretched. He has trouble standing.", + "Confidence": null, + "CenterX": 601 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 688, + "Width": 124, + "Height": 8, + "Text": "Blasted leaps onto foe\u0027s shield arm.", + "Confidence": null, + "CenterX": 750 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 688, + "Width": 122, + "Height": 8, + "Text": "His arm and any shield are on fire.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 688, + "Width": 50, + "Height": 8, + "Text": "Metal is fused.", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 201, + "Width": 38, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211\u03C0", + "Confidence": null, + "CenterX": 220 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 331, + "Width": 58, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 460, + "Width": 73, + "Height": 8, + "Text": "\u002B11H \u2013 2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 614, + "Width": 66, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 769, + "Width": 57, + "Height": 8, + "Text": "4\u2211 \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 101, + "Width": 128, + "Height": 8, + "Text": "Your attack infects foe with electrical", + "Confidence": null, + "CenterX": 165 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 101, + "Width": 133, + "Height": 8, + "Text": "energy. It dances all over him. It takes", + "Confidence": null, + "CenterX": 167.5 + }, + { + "PageNumber": 1, + "Top": 697, + "Left": 101, + "Width": 102, + "Height": 8, + "Text": "some time for him to recover.", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 248, + "Width": 132, + "Height": 8, + "Text": "Chest and arm blast damages organic", + "Confidence": null, + "CenterX": 314 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 248, + "Width": 111, + "Height": 8, + "Text": "armor. Metal armor will heat up", + "Confidence": null, + "CenterX": 303.5 + }, + { + "PageNumber": 1, + "Top": 697, + "Left": 248, + "Width": 133, + "Height": 8, + "Text": "painfully. Foe smells own hair burning.", + "Confidence": null, + "CenterX": 314.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 395, + "Width": 102, + "Height": 8, + "Text": "Chest blast. Organic armor is", + "Confidence": null, + "CenterX": 446 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 395, + "Width": 134, + "Height": 8, + "Text": "destroyed. Metal armor is scalding hot.", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 541, + "Width": 136, + "Height": 8, + "Text": "Attack engulfs foe\u0027s weapon. Hand and", + "Confidence": null, + "CenterX": 609 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 541, + "Width": 126, + "Height": 8, + "Text": "arm are useless. Skin, muscles, and", + "Confidence": null, + "CenterX": 604 + }, + { + "PageNumber": 1, + "Top": 697, + "Left": 541, + "Width": 71, + "Height": 8, + "Text": "nerves are damaged.", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 677, + "Left": 688, + "Width": 126, + "Height": 8, + "Text": "Strike savages center of foe\u0027s chest.", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 688, + "Width": 128, + "Height": 8, + "Text": "Foe\u0027s convulsions resemble a dance.", + "Confidence": null, + "CenterX": 752 + }, + { + "PageNumber": 1, + "Top": 697, + "Left": 688, + "Width": 76, + "Height": 8, + "Text": "One arm is paralyzed.", + "Confidence": null, + "CenterX": 726 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 183, + "Width": 58, + "Height": 8, + "Text": "\u002B8H \u2013 3\u2211 \u2013 (-5)", + "Confidence": null, + "CenterX": 212 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 354, + "Width": 33, + "Height": 8, + "Text": "4\u2211 \u2013 2\u220F", + "Confidence": null, + "CenterX": 370.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 292, + "Width": 95, + "Height": 8, + "Text": "while metal armor worn: 3\u222B", + "Confidence": null, + "CenterX": 339.5 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 493, + "Width": 40, + "Height": 8, + "Text": "\u002B12H \u2013 8\u2211", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 427, + "Width": 107, + "Height": 8, + "Text": "until metal armor removed: 5\u222B", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 640, + "Width": 40, + "Height": 8, + "Text": "\u002B13H \u2013 3\u2211", + "Confidence": null, + "CenterX": 660 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 724, + "Width": 102, + "Height": 8, + "Text": "with armor: \u002B10H \u2013 3\u2211\u220F \u2013 \u222B", + "Confidence": null, + "CenterX": 775 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 736, + "Width": 91, + "Height": 8, + "Text": "w/o chest armor: 6\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 741, + "Left": 101, + "Width": 123, + "Height": 8, + "Text": "Electrify foe\u0027s shield side. Foe finds", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 101, + "Width": 116, + "Height": 8, + "Text": "little protection behind his shield.", + "Confidence": null, + "CenterX": 159 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 101, + "Width": 106, + "Height": 8, + "Text": "Hopefully, it contains no metal.", + "Confidence": null, + "CenterX": 154 + }, + { + "PageNumber": 1, + "Top": 741, + "Left": 248, + "Width": 107, + "Height": 8, + "Text": "Abdomen entangled by a great", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 248, + "Width": 116, + "Height": 8, + "Text": "electrical serpent. Foe is knocked", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 248, + "Width": 96, + "Height": 8, + "Text": "down; the beast disappears.", + "Confidence": null, + "CenterX": 296 + }, + { + "PageNumber": 1, + "Top": 741, + "Left": 395, + "Width": 124, + "Height": 8, + "Text": "Nerves in foe\u0027s elbow are damaged;", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 395, + "Width": 124, + "Height": 8, + "Text": "shield arm is useless. He drops his", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 395, + "Width": 133, + "Height": 8, + "Text": "weapon on his foot. He is embarassed.", + "Confidence": null, + "CenterX": 461.5 + }, + { + "PageNumber": 1, + "Top": 741, + "Left": 541, + "Width": 132, + "Height": 8, + "Text": "Blast reaches out with hateful resolve.", + "Confidence": null, + "CenterX": 607 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 541, + "Width": 118, + "Height": 8, + "Text": "Foe\u0027s neck and back are engulfed.", + "Confidence": null, + "CenterX": 600 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 541, + "Width": 136, + "Height": 8, + "Text": "Nerves are damaged and muscles torn.", + "Confidence": null, + "CenterX": 609 + }, + { + "PageNumber": 1, + "Top": 741, + "Left": 688, + "Width": 108, + "Height": 8, + "Text": "Metal on foe fuses to his body,", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 688, + "Width": 130, + "Height": 8, + "Text": "damaging nerves. Dazed, he drops to", + "Confidence": null, + "CenterX": 753 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 688, + "Width": 121, + "Height": 8, + "Text": "the ground to look for his marbles.", + "Confidence": null, + "CenterX": 748.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 130, + "Width": 110, + "Height": 8, + "Text": "w/o metal on shield: \u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 125, + "Width": 118, + "Height": 8, + "Text": "with metal on shield: \u002B9H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 261, + "Width": 126, + "Height": 8, + "Text": "with abdom. armor: \u002B15H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 324 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 273, + "Width": 116, + "Height": 8, + "Text": "w/o abdominal armor: \u002B11H \u2013 2\u222B", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 483, + "Width": 50, + "Height": 8, + "Text": "8 \u2211 \u2013 (-5) \u2013 \u222B", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 628, + "Width": 52, + "Height": 8, + "Text": "\u002B20H \u2013 10\u2211\u220F", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 791, + "Width": 36, + "Height": 8, + "Text": "\u002B18H \u2013 3\u222B", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 101, + "Width": 133, + "Height": 8, + "Text": "Blast goes right into foe\u0027s back and he", + "Confidence": null, + "CenterX": 167.5 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 101, + "Width": 113, + "Height": 8, + "Text": "vibrates. He is unaware of much", + "Confidence": null, + "CenterX": 157.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 101, + "Width": 134, + "Height": 8, + "Text": "around him for a moment. He flails his", + "Confidence": null, + "CenterX": 168 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 101, + "Width": 55, + "Height": 8, + "Text": "weapon around.", + "Confidence": null, + "CenterX": 128.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 248, + "Width": 132, + "Height": 8, + "Text": "The shock turns foe\u0027s reflexes against", + "Confidence": null, + "CenterX": 314 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 248, + "Width": 130, + "Height": 8, + "Text": "his muscles. Tendons are torn during", + "Confidence": null, + "CenterX": 313 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 248, + "Width": 122, + "Height": 8, + "Text": "foe\u0027s violent convulsions. The poor", + "Confidence": null, + "CenterX": 309 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 248, + "Width": 15, + "Height": 8, + "Text": "fool.", + "Confidence": null, + "CenterX": 255.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 395, + "Width": 136, + "Height": 8, + "Text": "Violent shock to foe\u0027s abdomen. Armor", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 395, + "Width": 125, + "Height": 8, + "Text": "deflects some of the damage. Foe is", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 395, + "Width": 119, + "Height": 8, + "Text": "terribly unbalanced. Torn cartilage.", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 541, + "Width": 126, + "Height": 8, + "Text": "Bolt grapples foe\u0027s weapon arm and", + "Confidence": null, + "CenterX": 604 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 541, + "Width": 112, + "Height": 8, + "Text": "snakes into his body. His arm is", + "Confidence": null, + "CenterX": 597 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 541, + "Width": 99, + "Height": 8, + "Text": "useless. He is dizzy and falls", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 541, + "Width": 118, + "Height": 8, + "Text": "unconscious after 6 active rounds.", + "Confidence": null, + "CenterX": 600 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 688, + "Width": 134, + "Height": 8, + "Text": "Blast hits shoulder. Foe conducts your", + "Confidence": null, + "CenterX": 755 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 688, + "Width": 117, + "Height": 8, + "Text": "strike well. His nervous system is", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 688, + "Width": 115, + "Height": 8, + "Text": "rearranged. He drops and dies of", + "Confidence": null, + "CenterX": 745.5 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 688, + "Width": 133, + "Height": 8, + "Text": "shock and nerve damage in 12 rounds.", + "Confidence": null, + "CenterX": 754.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 193, + "Width": 49, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211\u03C0", + "Confidence": null, + "CenterX": 217.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 339, + "Width": 47, + "Height": 8, + "Text": "\u002B13H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 430, + "Width": 104, + "Height": 8, + "Text": "with armor: \u002B10H \u2013 \u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 482 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 437, + "Width": 97, + "Height": 8, + "Text": "w/o armor: 4\u2211 \u2013 (-40) \u2013 2\u222B", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 628, + "Width": 51, + "Height": 8, + "Text": "\u002B15H \u2013 6(-30)", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 822, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 824 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 101, + "Width": 130, + "Height": 8, + "Text": "Assault to foe\u0027s lower leg fuses metal", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "and burns much. Foe falls. One leg is", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 101, + "Width": 123, + "Height": 8, + "Text": "paralyzed if metal greaves are worn.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 248, + "Width": 131, + "Height": 8, + "Text": "Blast lands on leg with unusual force.", + "Confidence": null, + "CenterX": 313.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 248, + "Width": 134, + "Height": 8, + "Text": "Simple leg fracture if he wears armor;", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 248, + "Width": 96, + "Height": 8, + "Text": "a compound fracture if not.", + "Confidence": null, + "CenterX": 296 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 395, + "Width": 115, + "Height": 8, + "Text": "Brunt of strike infests foe\u0027s knee.", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 395, + "Width": 126, + "Height": 8, + "Text": "Muscles and nerves are burned. Foe", + "Confidence": null, + "CenterX": 458 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 395, + "Width": 118, + "Height": 8, + "Text": "drops in agony and grips his knee.", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 541, + "Width": 115, + "Height": 8, + "Text": "Electrify foe\u0027s body. Muscles and", + "Confidence": null, + "CenterX": 598.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 541, + "Width": 119, + "Height": 8, + "Text": "tendons tear in convulsions. If no", + "Confidence": null, + "CenterX": 600.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 541, + "Width": 95, + "Height": 8, + "Text": "armor he dies in 12 rounds.", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 688, + "Width": 134, + "Height": 8, + "Text": "Strike seeks out the shoulder and then", + "Confidence": null, + "CenterX": 755 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 688, + "Width": 136, + "Height": 8, + "Text": "his spine. Foe drops, hip and backbone", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 688, + "Width": 113, + "Height": 8, + "Text": "shattered, and dies in 12 rounds.", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 130, + "Width": 110, + "Height": 8, + "Text": "with metal armor: \u002B15H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 132, + "Width": 108, + "Height": 8, + "Text": "w/o metal armor: \u002B15H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 186 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 297, + "Width": 90, + "Height": 8, + "Text": "with leg armor: 6\u2211\u220F \u2013 \u222B", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 296, + "Width": 94, + "Height": 8, + "Text": "w/o leg armor: 6\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 488, + "Width": 46, + "Height": 8, + "Text": "2\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 586, + "Width": 93, + "Height": 8, + "Text": "with chest armor: 9\u2211 \u2013 6\u222B", + "Confidence": null, + "CenterX": 632.5 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 822, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 824 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 101, + "Width": 134, + "Height": 8, + "Text": "Strike arcs up into foe\u0027s hip. Garments", + "Confidence": null, + "CenterX": 168 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 101, + "Width": 125, + "Height": 8, + "Text": "catch fire. Shock and nerve damage", + "Confidence": null, + "CenterX": 163.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 101, + "Width": 29, + "Height": 8, + "Text": "inflicted.", + "Confidence": null, + "CenterX": 115.5 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 248, + "Width": 124, + "Height": 8, + "Text": "Jolt blinds foe for 2 days and sends", + "Confidence": null, + "CenterX": 310 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 248, + "Width": 117, + "Height": 8, + "Text": "him crashing to the ground. He is", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 248, + "Width": 120, + "Height": 8, + "Text": "badly dazed and helpless while the", + "Confidence": null, + "CenterX": 308 + }, + { + "PageNumber": 1, + "Top": 973, + "Left": 248, + "Width": 104, + "Height": 8, + "Text": "blindness lasts (2 to 10 days).", + "Confidence": null, + "CenterX": 300 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 395, + "Width": 136, + "Height": 8, + "Text": "Trapped in a web of light, your foe falls", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 395, + "Width": 128, + "Height": 8, + "Text": "to escape the heat. He is unconsious", + "Confidence": null, + "CenterX": 459 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 395, + "Width": 124, + "Height": 8, + "Text": "and, without immediate aid, will go", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 973, + "Left": 395, + "Width": 107, + "Height": 8, + "Text": "into shock, dying in 12 rounds.", + "Confidence": null, + "CenterX": 448.5 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 541, + "Width": 137, + "Height": 8, + "Text": "Strike to foe\u0027s head devastates nervous", + "Confidence": null, + "CenterX": 609.5 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 541, + "Width": 129, + "Height": 8, + "Text": "system. He falls into a coma. Foe is a", + "Confidence": null, + "CenterX": 605.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 541, + "Width": 137, + "Height": 8, + "Text": "living vegetable. Any metal is hot to the", + "Confidence": null, + "CenterX": 609.5 + }, + { + "PageNumber": 1, + "Top": 973, + "Left": 541, + "Width": 22, + "Height": 8, + "Text": "touch.", + "Confidence": null, + "CenterX": 552 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 688, + "Width": 126, + "Height": 8, + "Text": "Blast rends foe\u0027s body, causing fatal", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 688, + "Width": 126, + "Height": 8, + "Text": "damage to organs. His eyes pop out", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 688, + "Width": 125, + "Height": 8, + "Text": "and he dies in 9 inactive rounds. So", + "Confidence": null, + "CenterX": 750.5 + }, + { + "PageNumber": 1, + "Top": 973, + "Left": 688, + "Width": 110, + "Height": 8, + "Text": "much for the Govenor\u0027s pardon.", + "Confidence": null, + "CenterX": 743 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 199, + "Width": 41, + "Height": 8, + "Text": "3\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 373, + "Width": 13, + "Height": 8, + "Text": "9\u2211", + "Confidence": null, + "CenterX": 379.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 496, + "Width": 37, + "Height": 8, + "Text": "(\u201375) \u2013 5\u222B", + "Confidence": null, + "CenterX": 514.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 662, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 671 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 809, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 818 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 52, + "Width": 37, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 70.5 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 101, + "Width": 125, + "Height": 8, + "Text": "Foe\u0027s loses consciousness from the", + "Confidence": null, + "CenterX": 163.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 101, + "Width": 111, + "Height": 8, + "Text": "blast. His convulsions keep him", + "Confidence": null, + "CenterX": 156.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 101, + "Width": 63, + "Height": 8, + "Text": "standing 1 round.", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 248, + "Width": 135, + "Height": 8, + "Text": "Strike overloads foe\u0027s nervous system.", + "Confidence": null, + "CenterX": 315.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 248, + "Width": 123, + "Height": 8, + "Text": "His heart stops and restarts several", + "Confidence": null, + "CenterX": 309.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 248, + "Width": 131, + "Height": 8, + "Text": "times. He drops and dies in 9 rounds.", + "Confidence": null, + "CenterX": 313.5 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 395, + "Width": 131, + "Height": 8, + "Text": "Sustained heat of the onslaught fuses", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 395, + "Width": 131, + "Height": 8, + "Text": "metal, cloth, and skin. Foe\u0027s eyes pop", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 395, + "Width": 124, + "Height": 8, + "Text": "out of his head. He dies in 3 rounds.", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 541, + "Width": 130, + "Height": 8, + "Text": "Foe reels back 10 feet. Nerve damage", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 541, + "Width": 129, + "Height": 8, + "Text": "and shock combined with broken hip", + "Confidence": null, + "CenterX": 605.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 541, + "Width": 128, + "Height": 8, + "Text": "and arm spell death in 3 painful rnds.", + "Confidence": null, + "CenterX": 605 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 688, + "Width": 128, + "Height": 8, + "Text": "Titanic blast virtually cuts foe in half.", + "Confidence": null, + "CenterX": 752 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 688, + "Width": 135, + "Height": 8, + "Text": "Bolts streak across ground threatening", + "Confidence": null, + "CenterX": 755.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 688, + "Width": 123, + "Height": 8, + "Text": "new victims. Foe is dead, of course.", + "Confidence": null, + "CenterX": 749.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 196, + "Width": 45, + "Height": 8, + "Text": "\u002B10H \u2013 12\u2211", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 369, + "Width": 18, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 378 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 528, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 530 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 662, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 671 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 809, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 818.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 58, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 70 + }, + { + "PageNumber": 1, + "Top": 1063, + "Left": 101, + "Width": 129, + "Height": 8, + "Text": "Foe\u0027s head is ablaze. Garments catch", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 1073, + "Left": 101, + "Width": 131, + "Height": 8, + "Text": "fire. Foe falls unconscious and dies in", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 1084, + "Left": 101, + "Width": 102, + "Height": 8, + "Text": "6 rounds from nerve damage.", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 1063, + "Left": 248, + "Width": 109, + "Height": 8, + "Text": "Foe\u0027s insides heat up and burn,", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 1073, + "Left": 248, + "Width": 124, + "Height": 8, + "Text": "destroying nerves and organs alike.", + "Confidence": null, + "CenterX": 310 + }, + { + "PageNumber": 1, + "Top": 1084, + "Left": 248, + "Width": 98, + "Height": 8, + "Text": "Foe drops and dies instantly.", + "Confidence": null, + "CenterX": 297 + }, + { + "PageNumber": 1, + "Top": 1063, + "Left": 395, + "Width": 137, + "Height": 8, + "Text": "Strike lands on foe\u0027s head. Muscles are", + "Confidence": null, + "CenterX": 463.5 + }, + { + "PageNumber": 1, + "Top": 1073, + "Left": 395, + "Width": 131, + "Height": 8, + "Text": "fused, tendons torn. Foe\u0027s brain fries.", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1084, + "Left": 395, + "Width": 129, + "Height": 8, + "Text": "He slips to ground and dies in 3 rnds.", + "Confidence": null, + "CenterX": 459.5 + }, + { + "PageNumber": 1, + "Top": 1063, + "Left": 541, + "Width": 135, + "Height": 8, + "Text": "Havoc reigns around foe. Closest thing", + "Confidence": null, + "CenterX": 608.5 + }, + { + "PageNumber": 1, + "Top": 1073, + "Left": 541, + "Width": 132, + "Height": 8, + "Text": "to him is also entangled in this deadly", + "Confidence": null, + "CenterX": 607 + }, + { + "PageNumber": 1, + "Top": 1084, + "Left": 541, + "Width": 86, + "Height": 8, + "Text": "bolt. He dies 2 rnds later.", + "Confidence": null, + "CenterX": 584 + }, + { + "PageNumber": 1, + "Top": 1063, + "Left": 688, + "Width": 131, + "Height": 8, + "Text": "Strike to foe\u0027s head. He is burned to a", + "Confidence": null, + "CenterX": 753.5 + }, + { + "PageNumber": 1, + "Top": 1073, + "Left": 688, + "Width": 132, + "Height": 8, + "Text": "cinder. What is left blows away on the", + "Confidence": null, + "CenterX": 754 + }, + { + "PageNumber": 1, + "Top": 1084, + "Left": 688, + "Width": 62, + "Height": 8, + "Text": "wind. All fear you.", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 222, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 231 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 369, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 378.5 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 511, + "Width": 23, + "Height": 8, + "Text": "3(\u002B10)", + "Confidence": null, + "CenterX": 522.5 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 662, + "Width": 19, + "Height": 8, + "Text": "(\u002B15)", + "Confidence": null, + "CenterX": 671.5 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 809, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 818.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 164, + "Width": 14, + "Height": 14, + "Text": "A", + "Confidence": null, + "CenterX": 171 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 311, + "Width": 13, + "Height": 14, + "Text": "B", + "Confidence": null, + "CenterX": 317.5 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 456, + "Width": 16, + "Height": 14, + "Text": "C", + "Confidence": null, + "CenterX": 464 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 601, + "Width": 19, + "Height": 14, + "Text": "D", + "Confidence": null, + "CenterX": 610.5 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 752, + "Width": 13, + "Height": 14, + "Text": "E", + "Confidence": null, + "CenterX": 758.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 243, + "Width": 391, + "Height": 19, + "Text": "6.2 ELECTRICITY CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 265, + "Width": 398, + "Height": 19, + "Text": "14.2 ELECTRICITY CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 464 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/electricity/pages/page-001.png new file mode 100644 index 0000000..6066ea4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/electricity/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/electricity/parsed-cells.json new file mode 100644 index 0000000..a394e6c --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/electricity/parsed-cells.json @@ -0,0 +1,7457 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Blast is frightful, but ineffective.", + "\u002B0H" + ], + "BaseLines": [ + "Blast is frightful, but ineffective.", + "\u002B0H" + ], + "RawCellText": "Blast is frightful, but ineffective.\n\u002B0H", + "DescriptionText": "Blast is frightful, but ineffective.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 93, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 372, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 356, + "CropTop": 340, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Your strike\u0027s energy is poorly aimed.", + "\u002B0H" + ], + "BaseLines": [ + "Your strike\u0027s energy is poorly aimed.", + "\u002B0H" + ], + "RawCellText": "Your strike\u0027s energy is poorly aimed.\n\u002B0H", + "DescriptionText": "Your strike\u0027s energy is poorly aimed.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 93, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 372, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 944, + "CropTop": 340, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Strike\u0027s energy soaks into the ground.", + "\u002B1H" + ], + "BaseLines": [ + "Strike\u0027s energy soaks into the ground.", + "\u002B1H" + ], + "RawCellText": "Strike\u0027s energy soaks into the ground.\n\u002B1H", + "DescriptionText": "Strike\u0027s energy soaks into the ground.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 93, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 372, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 1532, + "CropTop": 340, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Bright flash and little heat disturb foe.", + "\u002B2H" + ], + "BaseLines": [ + "Bright flash and little heat disturb foe.", + "\u002B2H" + ], + "RawCellText": "Bright flash and little heat disturb foe.\n\u002B2H", + "DescriptionText": "Bright flash and little heat disturb foe.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 93, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 372, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 2116, + "CropTop": 340, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Foe avoids blast but feels charged.", + "\u002B3H" + ], + "BaseLines": [ + "Foe avoids blast but feels charged.", + "\u002B3H" + ], + "RawCellText": "Foe avoids blast but feels charged.\n\u002B3H", + "DescriptionText": "Foe avoids blast but feels charged.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 93, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 372, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 2704, + "CropTop": 340, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Sparks fly. Foe is illuminated by blast.", + "\u002B1H" + ], + "BaseLines": [ + "Sparks fly. Foe is illuminated by blast.", + "\u002B1H" + ], + "RawCellText": "Sparks fly. Foe is illuminated by blast.\n\u002B1H", + "DescriptionText": "Sparks fly. Foe is illuminated by blast.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 128, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 512, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 356, + "CropTop": 480, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s hair stands on end. Frightening!", + "\u002B2H" + ], + "BaseLines": [ + "Foe\u0027s hair stands on end. Frightening!", + "\u002B2H" + ], + "RawCellText": "Foe\u0027s hair stands on end. Frightening!\n\u002B2H", + "DescriptionText": "Foe\u0027s hair stands on end. Frightening!", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 128, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 512, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 944, + "CropTop": 480, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Foe waves off sparks and smoke.", + "\u002B3H" + ], + "BaseLines": [ + "Foe waves off sparks and smoke.", + "\u002B3H" + ], + "RawCellText": "Foe waves off sparks and smoke.\n\u002B3H", + "DescriptionText": "Foe waves off sparks and smoke.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 128, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 512, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 1532, + "CropTop": 480, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Static gathers on foe. Zap!", + "\u002B4H" + ], + "BaseLines": [ + "Static gathers on foe. Zap!", + "\u002B4H" + ], + "RawCellText": "Static gathers on foe. Zap!\n\u002B4H", + "DescriptionText": "Static gathers on foe. Zap!", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 128, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 512, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 2116, + "CropTop": 480, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Foe sees spots. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Foe sees spots. You have initiative.", + "\u002B4H" + ], + "RawCellText": "Foe sees spots. You have initiative.\n\u002B4H", + "DescriptionText": "Foe sees spots. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 128, + "Width": 139, + "Height": 27 + }, + "SourceImagePath": "electricity/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 512, + "BoundsWidth": 556, + "BoundsHeight": 108, + "CropLeft": 2704, + "CropTop": 480, + "CropWidth": 652, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Bolt reaches for foe but then grounds", + "out. You have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "Bolt reaches for foe but then grounds", + "out. You have initiative.", + "\u002B2H" + ], + "RawCellText": "Bolt reaches for foe but then grounds\nout. You have initiative.\n\u002B2H", + "DescriptionText": "Bolt reaches for foe but then grounds out. You have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 163, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 652, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 356, + "CropTop": 620, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Mild jolt to foe\u0027s shoulder causes him", + "to hesitate. You have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "Mild jolt to foe\u0027s shoulder causes him", + "to hesitate. You have initiative.", + "\u002B2H" + ], + "RawCellText": "Mild jolt to foe\u0027s shoulder causes him\nto hesitate. You have initiative.\n\u002B2H", + "DescriptionText": "Mild jolt to foe\u0027s shoulder causes him to hesitate. You have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 163, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 652, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 944, + "CropTop": 620, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "The thunderous crack of your attack", + "panics foe. You gain the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "The thunderous crack of your attack", + "panics foe. You gain the initiative.", + "\u002B3H" + ], + "RawCellText": "The thunderous crack of your attack\npanics foe. You gain the initiative.\n\u002B3H", + "DescriptionText": "The thunderous crack of your attack panics foe. You gain the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 163, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 652, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1532, + "CropTop": 620, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Bolt jumps to foe\u0027s weapons and then", + "into the ground. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Bolt jumps to foe\u0027s weapons and then", + "into the ground. You have initiative.", + "\u002B4H" + ], + "RawCellText": "Bolt jumps to foe\u0027s weapons and then\ninto the ground. You have initiative.\n\u002B4H", + "DescriptionText": "Bolt jumps to foe\u0027s weapons and then into the ground. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 163, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 652, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2116, + "CropTop": 620, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Flash unbalances foe and sends him on", + "the defensive. You have initiative.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Flash unbalances foe and sends him on", + "the defensive. You have initiative.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Flash unbalances foe and sends him on\nthe defensive. You have initiative.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Flash unbalances foe and sends him on the defensive. You have initiative.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 163, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 652, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 2704, + "CropTop": 620, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe flinches from the static in the air.", + "You have the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Foe flinches from the static in the air.", + "You have the initiative.", + "\u002B3H" + ], + "RawCellText": "Foe flinches from the static in the air.\nYou have the initiative.\n\u002B3H", + "DescriptionText": "Foe flinches from the static in the air. You have the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 206, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 824, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 356, + "CropTop": 792, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "The blast of light and heat daunts foe.", + "He looks away; you have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "The blast of light and heat daunts foe.", + "He looks away; you have initiative.", + "\u002B4H" + ], + "RawCellText": "The blast of light and heat daunts foe.\nHe looks away; you have initiative.\n\u002B4H", + "DescriptionText": "The blast of light and heat daunts foe. He looks away; you have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 206, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 824, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 944, + "CropTop": 792, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Flying debris obstructs foe\u0027s vision.", + "You have 2 rounds of initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Flying debris obstructs foe\u0027s vision.", + "You have 2 rounds of initiative.", + "\u002B3H" + ], + "RawCellText": "Flying debris obstructs foe\u0027s vision.\nYou have 2 rounds of initiative.\n\u002B3H", + "DescriptionText": "Flying debris obstructs foe\u0027s vision. You have 2 rounds of initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 206, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 824, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1532, + "CropTop": 792, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe strikes out at the blast to protect", + "himself. It seems to work well enough.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe strikes out at the blast to protect", + "himself. It seems to work well enough.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Foe strikes out at the blast to protect\nhimself. It seems to work well enough.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Foe strikes out at the blast to protect himself. It seems to work well enough.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 206, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 824, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 2116, + "CropTop": 792, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Foe fails to avoid some of the attack\nand almost falls down.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Foe fails to avoid some of the attack and almost falls down.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 206, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 824, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 2704, + "CropTop": 792, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe recoils from thundering sound of", + "the blast. He loses 2 rounds initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Foe recoils from thundering sound of", + "the blast. He loses 2 rounds initiative.", + "\u002B4H" + ], + "RawCellText": "Foe recoils from thundering sound of\nthe blast. He loses 2 rounds initiative.\n\u002B4H", + "DescriptionText": "Foe recoils from thundering sound of the blast. He loses 2 rounds initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 251, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 1004, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 356, + "CropTop": 972, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Flashes of light and sharp cracks. Foe\u0027s", + "impressed.You have 2 rnds initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Flashes of light and sharp cracks. Foe\u0027s", + "impressed.You have 2 rnds initiative.", + "\u002B5H" + ], + "RawCellText": "Flashes of light and sharp cracks. Foe\u0027s\nimpressed.You have 2 rnds initiative.\n\u002B5H", + "DescriptionText": "Flashes of light and sharp cracks. Foe\u0027s impressed.You have 2 rnds initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 251, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 1004, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 944, + "CropTop": 972, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Any coins on foe heat up smolder in", + "foe\u0027s pockets. He steps back.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Any coins on foe heat up smolder in", + "foe\u0027s pockets. He steps back.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Any coins on foe heat up smolder in\nfoe\u0027s pockets. He steps back.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Any coins on foe heat up smolder in foe\u0027s pockets. He steps back.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 251, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 1004, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 1532, + "CropTop": 972, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Your attack jolts foe into action. He", + "steps back and swings in all directions.", + "\u002B5H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Your attack jolts foe into action. He", + "steps back and swings in all directions.", + "\u002B5H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "Your attack jolts foe into action. He\nsteps back and swings in all directions.\n\u002B5H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "Your attack jolts foe into action. He steps back and swings in all directions.", + "RawAffixText": "\u002B5H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 251, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 1004, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 2116, + "CropTop": 972, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Foe is magnetized foe a moment. It", + "distracts him. He is dazed.", + "\u002B10H \u2013 2\u2211" + ], + "BaseLines": [ + "Foe is magnetized foe a moment. It", + "distracts him. He is dazed.", + "\u002B10H \u2013 2\u2211" + ], + "RawCellText": "Foe is magnetized foe a moment. It\ndistracts him. He is dazed.\n\u002B10H \u2013 2\u2211", + "DescriptionText": "Foe is magnetized foe a moment. It distracts him. He is dazed.", + "RawAffixText": "\u002B10H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 251, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 1004, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 2704, + "CropTop": 972, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Blast almost misses, but it grounds", + "into foe\u0027s weapon arm.", + "w/o metal weapon: \u002B5H \u2013 \u03C0", + "with metal weapon: \u002B7H \u2013 \u2211\u03C0" + ], + "BaseLines": [ + "Blast almost misses, but it grounds", + "into foe\u0027s weapon arm." + ], + "RawCellText": "Blast almost misses, but it grounds\ninto foe\u0027s weapon arm.", + "DescriptionText": "Blast almost misses, but it grounds into foe\u0027s weapon arm.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_metal_weapon", + "ConditionText": "w/o metal weapon", + "RawText": "w/o metal weapon: \u002B5H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "with_metal_weapon", + "ConditionText": "with metal weapon", + "RawText": "with metal weapon: \u002B7H \u2013 \u2211\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 \u2211\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 296, + "Width": 140, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 1184, + "BoundsWidth": 560, + "BoundsHeight": 224, + "CropLeft": 356, + "CropTop": 1152, + "CropWidth": 656, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s side and back are entangled by", + "blast. Foe is shaken.", + "\u002B2H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Foe\u0027s side and back are entangled by", + "blast. Foe is shaken.", + "\u002B2H \u2013 \u03C0 \u2013 \u222B" + ], + "RawCellText": "Foe\u0027s side and back are entangled by\nblast. Foe is shaken.\n\u002B2H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "Foe\u0027s side and back are entangled by blast. Foe is shaken.", + "RawAffixText": "\u002B2H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 296, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 1184, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 944, + "CropTop": 1152, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Foe heats up and goes on defensive", + "until he cools. His footing is good.", + "\u002B7H \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe heats up and goes on defensive", + "until he cools. His footing is good.", + "\u002B7H \u2013 2\u03C0" + ], + "RawCellText": "Foe heats up and goes on defensive\nuntil he cools. His footing is good.\n\u002B7H \u2013 2\u03C0", + "DescriptionText": "Foe heats up and goes on defensive until he cools. His footing is good.", + "RawAffixText": "\u002B7H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 296, + "Width": 140, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 1184, + "BoundsWidth": 560, + "BoundsHeight": 224, + "CropLeft": 1532, + "CropTop": 1152, + "CropWidth": 656, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Entangle foe in deadly blue light.", + "Garments smolder and traces of", + "energy inhabit his equipment.", + "\u002B7H \u2013 \u2211 \u2013 2(-10)" + ], + "BaseLines": [ + "Entangle foe in deadly blue light.", + "Garments smolder and traces of", + "energy inhabit his equipment.", + "\u002B7H \u2013 \u2211 \u2013 2(-10)" + ], + "RawCellText": "Entangle foe in deadly blue light.\nGarments smolder and traces of\nenergy inhabit his equipment.\n\u002B7H \u2013 \u2211 \u2013 2(-10)", + "DescriptionText": "Entangle foe in deadly blue light. Garments smolder and traces of energy inhabit his equipment.", + "RawAffixText": "\u002B7H \u2013 \u2211 \u2013 2(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 296, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 1184, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 2116, + "CropTop": 1152, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s equipment is infested by the", + "blast. Garments are scorched; exposed", + "skin is burned. Foe is a wreck.", + "\u002B12H \u20132\u2211" + ], + "BaseLines": [ + "Foe\u0027s equipment is infested by the", + "blast. Garments are scorched; exposed", + "skin is burned. Foe is a wreck.", + "\u002B12H \u20132\u2211" + ], + "RawCellText": "Foe\u0027s equipment is infested by the\nblast. Garments are scorched; exposed\nskin is burned. Foe is a wreck.\n\u002B12H \u20132\u2211", + "DescriptionText": "Foe\u0027s equipment is infested by the blast. Garments are scorched; exposed skin is burned. Foe is a wreck.", + "RawAffixText": "\u002B12H \u20132\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 296, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 1184, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 2704, + "CropTop": 1152, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Small bits of electrical energy chase", + "around foe\u0027s body. Foe makes a futile", + "effort to throw them off.", + "\u002B2H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Small bits of electrical energy chase", + "around foe\u0027s body. Foe makes a futile", + "effort to throw them off.", + "\u002B2H \u2013 \u03C0 \u2013 \u222B" + ], + "RawCellText": "Small bits of electrical energy chase\naround foe\u0027s body. Foe makes a futile\neffort to throw them off.\n\u002B2H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "Small bits of electrical energy chase around foe\u0027s body. Foe makes a futile effort to throw them off.", + "RawAffixText": "\u002B2H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 360, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 1440, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 356, + "CropTop": 1408, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Strike hits foe\u0027s chest. Clothes smoke,", + "then burn. Foe flails his arms trying to", + "put them out.", + "\u002B6H \u2013 2\u03C0" + ], + "BaseLines": [ + "Strike hits foe\u0027s chest. Clothes smoke,", + "then burn. Foe flails his arms trying to", + "put them out.", + "\u002B6H \u2013 2\u03C0" + ], + "RawCellText": "Strike hits foe\u0027s chest. Clothes smoke,\nthen burn. Foe flails his arms trying to\nput them out.\n\u002B6H \u2013 2\u03C0", + "DescriptionText": "Strike hits foe\u0027s chest. Clothes smoke, then burn. Foe flails his arms trying to put them out.", + "RawAffixText": "\u002B6H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 360, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 1440, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 944, + "CropTop": 1408, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Strike connects with foe\u0027s arm. It", + "careens off each piece of metal foe is", + "wearing. Exposed areas are blistered.", + "\u002B7H \u2013 2\u2211" + ], + "BaseLines": [ + "Strike connects with foe\u0027s arm. It", + "careens off each piece of metal foe is", + "wearing. Exposed areas are blistered.", + "\u002B7H \u2013 2\u2211" + ], + "RawCellText": "Strike connects with foe\u0027s arm. It\ncareens off each piece of metal foe is\nwearing. Exposed areas are blistered.\n\u002B7H \u2013 2\u2211", + "DescriptionText": "Strike connects with foe\u0027s arm. It careens off each piece of metal foe is wearing. Exposed areas are blistered.", + "RawAffixText": "\u002B7H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 360, + "Width": 141, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 1440, + "BoundsWidth": 564, + "BoundsHeight": 192, + "CropLeft": 1532, + "CropTop": 1408, + "CropWidth": 660, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Direct hit to foe\u0027s chest illuminates foe.", + "Much of the strike grounds out. Some", + "of the energy remains for an instant.", + "\u002B7H \u2013 2\u2211 \u2013 2(-10)" + ], + "BaseLines": [ + "Direct hit to foe\u0027s chest illuminates foe.", + "Much of the strike grounds out. Some", + "of the energy remains for an instant.", + "\u002B7H \u2013 2\u2211 \u2013 2(-10)" + ], + "RawCellText": "Direct hit to foe\u0027s chest illuminates foe.\nMuch of the strike grounds out. Some\nof the energy remains for an instant.\n\u002B7H \u2013 2\u2211 \u2013 2(-10)", + "DescriptionText": "Direct hit to foe\u0027s chest illuminates foe. Much of the strike grounds out. Some of the energy remains for an instant.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 2(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 360, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 1440, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 2116, + "CropTop": 1408, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Blast to foe\u0027s waist. He stumbles,", + "dazzled by light, and twitches for the", + "next hour. You have 6 rds of initiative.", + "\u002B13H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Blast to foe\u0027s waist. He stumbles,", + "dazzled by light, and twitches for the", + "next hour. You have 6 rds of initiative.", + "\u002B13H \u2013 2\u2211 \u2013 \u220F" + ], + "RawCellText": "Blast to foe\u0027s waist. He stumbles,\ndazzled by light, and twitches for the\nnext hour. You have 6 rds of initiative.\n\u002B13H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "Blast to foe\u0027s waist. He stumbles, dazzled by light, and twitches for the next hour. You have 6 rds of initiative.", + "RawAffixText": "\u002B13H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 360, + "Width": 141, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 1440, + "BoundsWidth": 564, + "BoundsHeight": 192, + "CropLeft": 2704, + "CropTop": 1408, + "CropWidth": 660, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Direct sizzling blast to foe\u0027s shoulder.", + "It grounds out and leaves foe dazed.", + "\u002B6H \u2013\u2211" + ], + "BaseLines": [ + "Direct sizzling blast to foe\u0027s shoulder.", + "It grounds out and leaves foe dazed.", + "\u002B6H \u2013\u2211" + ], + "RawCellText": "Direct sizzling blast to foe\u0027s shoulder.\nIt grounds out and leaves foe dazed.\n\u002B6H \u2013\u2211", + "DescriptionText": "Direct sizzling blast to foe\u0027s shoulder. It grounds out and leaves foe dazed.", + "RawAffixText": "\u002B6H \u2013\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 414, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 1656, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 356, + "CropTop": 1624, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Back strike throws equipment about.", + "Minor burns to exposed skin.", + "\u002B7H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Back strike throws equipment about.", + "Minor burns to exposed skin.", + "\u002B7H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Back strike throws equipment about.\nMinor burns to exposed skin.\n\u002B7H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Back strike throws equipment about. Minor burns to exposed skin.", + "RawAffixText": "\u002B7H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 414, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 1656, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 944, + "CropTop": 1624, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard strike to side, armor does not", + "help. Blow leaves a permanent mark.", + "\u002B7H \u2013 \u2211\u220F \u2013 \u222B" + ], + "BaseLines": [ + "Hard strike to side, armor does not", + "help. Blow leaves a permanent mark.", + "\u002B7H \u2013 \u2211\u220F \u2013 \u222B" + ], + "RawCellText": "Hard strike to side, armor does not\nhelp. Blow leaves a permanent mark.\n\u002B7H \u2013 \u2211\u220F \u2013 \u222B", + "DescriptionText": "Hard strike to side, armor does not help. Blow leaves a permanent mark.", + "RawAffixText": "\u002B7H \u2013 \u2211\u220F \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 414, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 1656, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 1532, + "CropTop": 1624, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Blast assaults foe\u0027s shield arm. If foe", + "has metal armor he is knocked out.", + "\u002B10H \u2013 2\u2211 \u2013 \u03C0" + ], + "BaseLines": [ + "Blast assaults foe\u0027s shield arm. If foe", + "has metal armor he is knocked out.", + "\u002B10H \u2013 2\u2211 \u2013 \u03C0" + ], + "RawCellText": "Blast assaults foe\u0027s shield arm. If foe\nhas metal armor he is knocked out.\n\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "DescriptionText": "Blast assaults foe\u0027s shield arm. If foe has metal armor he is knocked out.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 414, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 1656, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2116, + "CropTop": 1624, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Weapon arm endures a terrible", + "onslaught. Foe drops all in his hand.", + "\u002B13H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Weapon arm endures a terrible", + "onslaught. Foe drops all in his hand.", + "\u002B13H \u2013 2\u2211 \u2013 2\u222B" + ], + "RawCellText": "Weapon arm endures a terrible\nonslaught. Foe drops all in his hand.\n\u002B13H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "Weapon arm endures a terrible onslaught. Foe drops all in his hand.", + "RawAffixText": "\u002B13H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 414, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "electricity/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 1656, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 2704, + "CropTop": 1624, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Foe is jerked off balance by the strike", + "and has trouble regaining footing.", + "\u002B7H \u2013 3\u03C0" + ], + "BaseLines": [ + "Foe is jerked off balance by the strike", + "and has trouble regaining footing.", + "\u002B7H \u2013 3\u03C0" + ], + "RawCellText": "Foe is jerked off balance by the strike\nand has trouble regaining footing.\n\u002B7H \u2013 3\u03C0", + "DescriptionText": "Foe is jerked off balance by the strike and has trouble regaining footing.", + "RawAffixText": "\u002B7H \u2013 3\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 459, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 1836, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 356, + "CropTop": 1804, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Blast heats up metal on foe, causing", + "painful burns to contacting flesh.", + "w/o metal: \u002B8H \u2013 2\u2211", + "with metal: \u002B10H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Blast heats up metal on foe, causing", + "painful burns to contacting flesh." + ], + "RawCellText": "Blast heats up metal on foe, causing\npainful burns to contacting flesh.", + "DescriptionText": "Blast heats up metal on foe, causing painful burns to contacting flesh.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_metal", + "ConditionText": "w/o metal", + "RawText": "w/o metal: \u002B8H \u2013 2\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "with_metal", + "ConditionText": "with metal", + "RawText": "with metal: \u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 459, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 1836, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 944, + "CropTop": 1804, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong blast hits foe low. His legs", + "almost give from the pain. Foe recoils.", + "with leg armor: \u002B12H \u2013 \u2211", + "w/o leg armor: \u002B9H \u2013 2\u2211" + ], + "BaseLines": [ + "Strong blast hits foe low. His legs", + "almost give from the pain. Foe recoils." + ], + "RawCellText": "Strong blast hits foe low. His legs\nalmost give from the pain. Foe recoils.", + "DescriptionText": "Strong blast hits foe low. His legs almost give from the pain. Foe recoils.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B12H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B9H \u2013 2\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 459, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 1836, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1532, + "CropTop": 1804, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "You hits hard; foe\u0027s abdomen is", + "hammered. He steps back 5 feet.", + "with abdominal armor: \u002B20H", + "w/o abdominal armor: \u002B15H \u2013 6\u2211" + ], + "BaseLines": [ + "You hits hard; foe\u0027s abdomen is", + "hammered. He steps back 5 feet." + ], + "RawCellText": "You hits hard; foe\u0027s abdomen is\nhammered. He steps back 5 feet.", + "DescriptionText": "You hits hard; foe\u0027s abdomen is hammered. He steps back 5 feet.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdominal_armor", + "ConditionText": "with abdominal armor", + "RawText": "with abdominal armor: \u002B20H", + "DescriptionText": "", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_abdominal_armor", + "ConditionText": "w/o abdominal armor", + "RawText": "w/o abdominal armor: \u002B15H \u2013 6\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 459, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 1836, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2116, + "CropTop": 1804, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Bolt passes through foe\u0027s leg before", + "grounding. Foe suffers .", + "with leg armor: \u002B8H \u2013 \u2211\u220F", + "w/o leg armor: 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Bolt passes through foe\u0027s leg before", + "grounding. Foe suffers ." + ], + "RawCellText": "Bolt passes through foe\u0027s leg before\ngrounding. Foe suffers .", + "DescriptionText": "Bolt passes through foe\u0027s leg before grounding. Foe suffers .", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B8H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: 2\u2211 \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 459, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 1836, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2704, + "CropTop": 1804, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe\u0027s evasion is comical.", + "with metal greaves: \u002B3H \u2013 2\u2211", + "w/o metal greaves: \u002B7H \u2013 \u2211" + ], + "BaseLines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe\u0027s evasion is comical." + ], + "RawCellText": "Well placed. Strike slams into foe\u0027s\nweapon arm. Foe\u0027s evasion is comical.", + "DescriptionText": "Well placed. Strike slams into foe\u0027s weapon arm. Foe\u0027s evasion is comical.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_metal_greaves", + "ConditionText": "with metal greaves", + "RawText": "with metal greaves: \u002B3H \u2013 2\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_metal_greaves", + "ConditionText": "w/o metal greaves", + "RawText": "w/o metal greaves: \u002B7H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 513, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 2052, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 356, + "CropTop": 2020, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s reflexes are numbed by blast. He", + "is dazed and moving slowly.", + "\u002B9H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Foe\u0027s reflexes are numbed by blast. He", + "is dazed and moving slowly.", + "\u002B9H \u2013 \u2211\u220F" + ], + "RawCellText": "Foe\u0027s reflexes are numbed by blast. He\nis dazed and moving slowly.\n\u002B9H \u2013 \u2211\u220F", + "DescriptionText": "Foe\u0027s reflexes are numbed by blast. He is dazed and moving slowly.", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 513, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 2052, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 944, + "CropTop": 2020, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Strike is low and pours into ground. A", + "stray bolt arches into foe\u0027s leg.", + "\u002B10H \u2013 2\u2211 \u2013 \u03C0" + ], + "BaseLines": [ + "Strike is low and pours into ground. A", + "stray bolt arches into foe\u0027s leg.", + "\u002B10H \u2013 2\u2211 \u2013 \u03C0" + ], + "RawCellText": "Strike is low and pours into ground. A\nstray bolt arches into foe\u0027s leg.\n\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "DescriptionText": "Strike is low and pours into ground. A stray bolt arches into foe\u0027s leg.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 513, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 2052, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 1532, + "CropTop": 2020, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blast to foe\u0027s shield shoulder. Foe\u0027s", + "shield arm and shield ignite.", + "with shield: 6\u2211 \u2013 3\u222B", + "w/o shield: 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Blast to foe\u0027s shield shoulder. Foe\u0027s", + "shield arm and shield ignite." + ], + "RawCellText": "Blast to foe\u0027s shield shoulder. Foe\u0027s\nshield arm and shield ignite.", + "DescriptionText": "Blast to foe\u0027s shield shoulder. Foe\u0027s shield arm and shield ignite.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: 6\u2211 \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "6\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: 2\u2211 \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 513, + "Width": 142, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 2052, + "BoundsWidth": 568, + "BoundsHeight": 188, + "CropLeft": 2116, + "CropTop": 2020, + "CropWidth": 664, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Foe is overcome by the flash. He falls,", + "entangled in his smoldering garments.", + "\u002B14H \u2013 2\u2211 \u2013 \u03C0" + ], + "BaseLines": [ + "Foe is overcome by the flash. He falls,", + "entangled in his smoldering garments.", + "\u002B14H \u2013 2\u2211 \u2013 \u03C0" + ], + "RawCellText": "Foe is overcome by the flash. He falls,\nentangled in his smoldering garments.\n\u002B14H \u2013 2\u2211 \u2013 \u03C0", + "DescriptionText": "Foe is overcome by the flash. He falls, entangled in his smoldering garments.", + "RawAffixText": "\u002B14H \u2013 2\u2211 \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 513, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 2052, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2704, + "CropTop": 2020, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Disrupt the beating of foe\u0027s heart for a", + "moment. Reflexes strain muscles. Foe", + "is knocked down.", + "3 \u2211" + ], + "BaseLines": [ + "Disrupt the beating of foe\u0027s heart for a", + "moment. Reflexes strain muscles. Foe", + "is knocked down.", + "3 \u2211" + ], + "RawCellText": "Disrupt the beating of foe\u0027s heart for a\nmoment. Reflexes strain muscles. Foe\nis knocked down.\n3 \u2211", + "DescriptionText": "Disrupt the beating of foe\u0027s heart for a moment. Reflexes strain muscles. Foe is knocked down.", + "RawAffixText": "3 \u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 567, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 2268, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 356, + "CropTop": 2236, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Bright flash illumnates foe and jolts", + "every muscle in his body. Foe\u0027s", + "reflexes will flinch again in 10 rounds.", + "\u002B15H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Bright flash illumnates foe and jolts", + "every muscle in his body. Foe\u0027s", + "reflexes will flinch again in 10 rounds.", + "\u002B15H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Bright flash illumnates foe and jolts\nevery muscle in his body. Foe\u0027s\nreflexes will flinch again in 10 rounds.\n\u002B15H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Bright flash illumnates foe and jolts every muscle in his body. Foe\u0027s reflexes will flinch again in 10 rounds.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 567, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 2268, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 944, + "CropTop": 2236, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Any metal armor on arm and chest", + "becomes fused together in the blast.", + "Foe\u0027s arm is then pinned and useless.", + "\u002B9H \u2013 12\u2211" + ], + "BaseLines": [ + "Any metal armor on arm and chest", + "becomes fused together in the blast.", + "Foe\u0027s arm is then pinned and useless.", + "\u002B9H \u2013 12\u2211" + ], + "RawCellText": "Any metal armor on arm and chest\nbecomes fused together in the blast.\nFoe\u0027s arm is then pinned and useless.\n\u002B9H \u2013 12\u2211", + "DescriptionText": "Any metal armor on arm and chest becomes fused together in the blast. Foe\u0027s arm is then pinned and useless.", + "RawAffixText": "\u002B9H \u2013 12\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 567, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 2268, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1532, + "CropTop": 2236, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s neck absorbs the bulk of the", + "attack. Nerves overload. Foe is", + "knocked out and mute for a week.", + "\u002B20H \u2013 4\u222B" + ], + "BaseLines": [ + "Foe\u0027s neck absorbs the bulk of the", + "attack. Nerves overload. Foe is", + "knocked out and mute for a week.", + "\u002B20H \u2013 4\u222B" + ], + "RawCellText": "Foe\u0027s neck absorbs the bulk of the\nattack. Nerves overload. Foe is\nknocked out and mute for a week.\n\u002B20H \u2013 4\u222B", + "DescriptionText": "Foe\u0027s neck absorbs the bulk of the attack. Nerves overload. Foe is knocked out and mute for a week.", + "RawAffixText": "\u002B20H \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 567, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 2268, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2116, + "CropTop": 2236, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Boom! Foe\u0027s skeleton crackles with the", + "impact. He drops and dies in 2 rounds.", + "(\u002B10)" + ], + "BaseLines": [ + "Boom! Foe\u0027s skeleton crackles with the", + "impact. He drops and dies in 2 rounds.", + "(\u002B10)" + ], + "RawCellText": "Boom! Foe\u0027s skeleton crackles with the\nimpact. He drops and dies in 2 rounds.\n(\u002B10)", + "DescriptionText": "Boom! Foe\u0027s skeleton crackles with the impact. He drops and dies in 2 rounds.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 567, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 2268, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 2704, + "CropTop": 2236, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Blast climbs up foe\u0027s side and sends", + "him stumbling back 5 feet. He blocks", + "his face against a renewed assault.", + "\u002B7H \u2013 \u2211\u03C0" + ], + "BaseLines": [ + "Blast climbs up foe\u0027s side and sends", + "him stumbling back 5 feet. He blocks", + "his face against a renewed assault.", + "\u002B7H \u2013 \u2211\u03C0" + ], + "RawCellText": "Blast climbs up foe\u0027s side and sends\nhim stumbling back 5 feet. He blocks\nhis face against a renewed assault.\n\u002B7H \u2013 \u2211\u03C0", + "DescriptionText": "Blast climbs up foe\u0027s side and sends him stumbling back 5 feet. He blocks his face against a renewed assault.", + "RawAffixText": "\u002B7H \u2013 \u2211\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 622, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 2488, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 356, + "CropTop": 2456, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Strike lands on shoulder and streaks", + "down back. Foe steps foward in failing", + "attempt to duck. He is vulnerable.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Strike lands on shoulder and streaks", + "down back. Foe steps foward in failing", + "attempt to duck. He is vulnerable.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F" + ], + "RawCellText": "Strike lands on shoulder and streaks\ndown back. Foe steps foward in failing\nattempt to duck. He is vulnerable.\n\u002B10H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "Strike lands on shoulder and streaks down back. Foe steps foward in failing attempt to duck. He is vulnerable.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 622, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 2488, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 944, + "CropTop": 2456, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Back blast. Foe drops to one knee and", + "rises again with some difficulty. Skin is", + "blistered badly.", + "\u002B11H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Back blast. Foe drops to one knee and", + "rises again with some difficulty. Skin is", + "blistered badly.", + "\u002B11H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Back blast. Foe drops to one knee and\nrises again with some difficulty. Skin is\nblistered badly.\n\u002B11H \u2013 2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Back blast. Foe drops to one knee and rises again with some difficulty. Skin is blistered badly.", + "RawAffixText": "\u002B11H \u2013 2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 622, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 2488, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1532, + "CropTop": 2456, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "The shock of the assault inhabits foe\u0027s", + "spine. Muscles and tendons are", + "stretched. He has trouble standing.", + "\u002B12H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "The shock of the assault inhabits foe\u0027s", + "spine. Muscles and tendons are", + "stretched. He has trouble standing.", + "\u002B12H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "The shock of the assault inhabits foe\u0027s\nspine. Muscles and tendons are\nstretched. He has trouble standing.\n\u002B12H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "The shock of the assault inhabits foe\u0027s spine. Muscles and tendons are stretched. He has trouble standing.", + "RawAffixText": "\u002B12H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 622, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 2488, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2116, + "CropTop": 2456, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blasted leaps onto foe\u0027s shield arm.", + "His arm and any shield are on fire.", + "Metal is fused.", + "4\u2211 \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Blasted leaps onto foe\u0027s shield arm.", + "His arm and any shield are on fire.", + "Metal is fused.", + "4\u2211 \u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Blasted leaps onto foe\u0027s shield arm.\nHis arm and any shield are on fire.\nMetal is fused.\n4\u2211 \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Blasted leaps onto foe\u0027s shield arm. His arm and any shield are on fire. Metal is fused.", + "RawAffixText": "4\u2211 \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 622, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 2488, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2704, + "CropTop": 2456, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Your attack infects foe with electrical", + "energy. It dances all over him. It takes", + "some time for him to recover.", + "\u002B8H \u2013 3\u2211 \u2013 (-5)" + ], + "BaseLines": [ + "Your attack infects foe with electrical", + "energy. It dances all over him. It takes", + "some time for him to recover.", + "\u002B8H \u2013 3\u2211 \u2013 (-5)" + ], + "RawCellText": "Your attack infects foe with electrical\nenergy. It dances all over him. It takes\nsome time for him to recover.\n\u002B8H \u2013 3\u2211 \u2013 (-5)", + "DescriptionText": "Your attack infects foe with electrical energy. It dances all over him. It takes some time for him to recover.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 677, + "Width": 140, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 2708, + "BoundsWidth": 560, + "BoundsHeight": 224, + "CropLeft": 356, + "CropTop": 2676, + "CropWidth": 656, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Chest and arm blast damages organic", + "armor. Metal armor will heat up", + "painfully. Foe smells own hair burning.", + "4\u2211 \u2013 2\u220F", + "while metal armor worn: 3\u222B" + ], + "BaseLines": [ + "Chest and arm blast damages organic", + "armor. Metal armor will heat up", + "painfully. Foe smells own hair burning.", + "4\u2211 \u2013 2\u220F" + ], + "RawCellText": "Chest and arm blast damages organic\narmor. Metal armor will heat up\npainfully. Foe smells own hair burning.\n4\u2211 \u2013 2\u220F", + "DescriptionText": "Chest and arm blast damages organic armor. Metal armor will heat up painfully. Foe smells own hair burning.", + "RawAffixText": "4\u2211 \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "while_metal_armor_worn", + "ConditionText": "while metal armor worn", + "RawText": "while metal armor worn: 3\u222B", + "DescriptionText": "", + "RawAffixText": "3\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 677, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 2708, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 944, + "CropTop": 2676, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Chest blast. Organic armor is", + "destroyed. Metal armor is scalding hot.", + "\u002B12H \u2013 8\u2211", + "until metal armor removed: 5\u222B" + ], + "BaseLines": [ + "Chest blast. Organic armor is", + "destroyed. Metal armor is scalding hot.", + "\u002B12H \u2013 8\u2211" + ], + "RawCellText": "Chest blast. Organic armor is\ndestroyed. Metal armor is scalding hot.\n\u002B12H \u2013 8\u2211", + "DescriptionText": "Chest blast. Organic armor is destroyed. Metal armor is scalding hot.", + "RawAffixText": "\u002B12H \u2013 8\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211" + } + ], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "until_metal_armor_removed", + "ConditionText": "until metal armor removed", + "RawText": "until metal armor removed: 5\u222B", + "DescriptionText": "", + "RawAffixText": "5\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 677, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 2708, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 1532, + "CropTop": 2676, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Attack engulfs foe\u0027s weapon. Hand and", + "arm are useless. Skin, muscles, and", + "nerves are damaged.", + "\u002B13H \u2013 3\u2211" + ], + "BaseLines": [ + "Attack engulfs foe\u0027s weapon. Hand and", + "arm are useless. Skin, muscles, and", + "nerves are damaged.", + "\u002B13H \u2013 3\u2211" + ], + "RawCellText": "Attack engulfs foe\u0027s weapon. Hand and\narm are useless. Skin, muscles, and\nnerves are damaged.\n\u002B13H \u2013 3\u2211", + "DescriptionText": "Attack engulfs foe\u0027s weapon. Hand and arm are useless. Skin, muscles, and nerves are damaged.", + "RawAffixText": "\u002B13H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 677, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 2708, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 2116, + "CropTop": 2676, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Strike savages center of foe\u0027s chest.", + "Foe\u0027s convulsions resemble a dance.", + "One arm is paralyzed.", + "with armor: \u002B10H \u2013 3\u2211\u220F \u2013 \u222B", + "w/o chest armor: 6\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Strike savages center of foe\u0027s chest.", + "Foe\u0027s convulsions resemble a dance.", + "One arm is paralyzed." + ], + "RawCellText": "Strike savages center of foe\u0027s chest.\nFoe\u0027s convulsions resemble a dance.\nOne arm is paralyzed.", + "DescriptionText": "Strike savages center of foe\u0027s chest. Foe\u0027s convulsions resemble a dance. One arm is paralyzed.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_armor", + "ConditionText": "with armor", + "RawText": "with armor: \u002B10H \u2013 3\u2211\u220F \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: 6\u2211 \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "6\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 677, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 2708, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 2704, + "CropTop": 2676, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Electrify foe\u0027s shield side. Foe finds", + "little protection behind his shield.", + "Hopefully, it contains no metal.", + "w/o metal on shield: \u002B6H \u2013 \u2211\u220F", + "with metal on shield: \u002B9H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Electrify foe\u0027s shield side. Foe finds", + "little protection behind his shield.", + "Hopefully, it contains no metal." + ], + "RawCellText": "Electrify foe\u0027s shield side. Foe finds\nlittle protection behind his shield.\nHopefully, it contains no metal.", + "DescriptionText": "Electrify foe\u0027s shield side. Foe finds little protection behind his shield. Hopefully, it contains no metal.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_metal_on_shield", + "ConditionText": "w/o metal on shield", + "RawText": "w/o metal on shield: \u002B6H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "with_metal_on_shield", + "ConditionText": "with metal on shield", + "RawText": "with metal on shield: \u002B9H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 741, + "Width": 142, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 2964, + "BoundsWidth": 568, + "BoundsHeight": 224, + "CropLeft": 356, + "CropTop": 2932, + "CropWidth": 664, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Abdomen entangled by a great", + "electrical serpent. Foe is knocked", + "down; the beast disappears.", + "with abdom. armor: \u002B15H \u2013 2\u2211 \u2013 \u220F", + "w/o abdominal armor: \u002B11H \u2013 2\u222B" + ], + "BaseLines": [ + "Abdomen entangled by a great", + "electrical serpent. Foe is knocked", + "down; the beast disappears." + ], + "RawCellText": "Abdomen entangled by a great\nelectrical serpent. Foe is knocked\ndown; the beast disappears.", + "DescriptionText": "Abdomen entangled by a great electrical serpent. Foe is knocked down; the beast disappears.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdom_armor", + "ConditionText": "with abdom. armor", + "RawText": "with abdom. armor: \u002B15H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_abdominal_armor", + "ConditionText": "w/o abdominal armor", + "RawText": "w/o abdominal armor: \u002B11H \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B11H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 741, + "Width": 141, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 2964, + "BoundsWidth": 564, + "BoundsHeight": 224, + "CropLeft": 944, + "CropTop": 2932, + "CropWidth": 660, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Nerves in foe\u0027s elbow are damaged;", + "shield arm is useless. He drops his", + "weapon on his foot. He is embarassed.", + "8 \u2211 \u2013 (-5) \u2013 \u222B" + ], + "BaseLines": [ + "Nerves in foe\u0027s elbow are damaged;", + "shield arm is useless. He drops his", + "weapon on his foot. He is embarassed.", + "8 \u2211 \u2013 (-5) \u2013 \u222B" + ], + "RawCellText": "Nerves in foe\u0027s elbow are damaged;\nshield arm is useless. He drops his\nweapon on his foot. He is embarassed.\n8 \u2211 \u2013 (-5) \u2013 \u222B", + "DescriptionText": "Nerves in foe\u0027s elbow are damaged; shield arm is useless. He drops his weapon on his foot. He is embarassed.", + "RawAffixText": "8 \u2211 \u2013 (-5) \u2013 \u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8 \u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 741, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 2964, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 1532, + "CropTop": 2932, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Blast reaches out with hateful resolve.", + "Foe\u0027s neck and back are engulfed.", + "Nerves are damaged and muscles torn.", + "\u002B20H \u2013 10\u2211\u220F" + ], + "BaseLines": [ + "Blast reaches out with hateful resolve.", + "Foe\u0027s neck and back are engulfed.", + "Nerves are damaged and muscles torn.", + "\u002B20H \u2013 10\u2211\u220F" + ], + "RawCellText": "Blast reaches out with hateful resolve.\nFoe\u0027s neck and back are engulfed.\nNerves are damaged and muscles torn.\n\u002B20H \u2013 10\u2211\u220F", + "DescriptionText": "Blast reaches out with hateful resolve. Foe\u0027s neck and back are engulfed. Nerves are damaged and muscles torn.", + "RawAffixText": "\u002B20H \u2013 10\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 741, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 2964, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 2116, + "CropTop": 2932, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Metal on foe fuses to his body,", + "damaging nerves. Dazed, he drops to", + "the ground to look for his marbles.", + "\u002B18H \u2013 3\u222B" + ], + "BaseLines": [ + "Metal on foe fuses to his body,", + "damaging nerves. Dazed, he drops to", + "the ground to look for his marbles.", + "\u002B18H \u2013 3\u222B" + ], + "RawCellText": "Metal on foe fuses to his body,\ndamaging nerves. Dazed, he drops to\nthe ground to look for his marbles.\n\u002B18H \u2013 3\u222B", + "DescriptionText": "Metal on foe fuses to his body, damaging nerves. Dazed, he drops to the ground to look for his marbles.", + "RawAffixText": "\u002B18H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 741, + "Width": 139, + "Height": 56 + }, + "SourceImagePath": "electricity/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 2964, + "BoundsWidth": 556, + "BoundsHeight": 224, + "CropLeft": 2704, + "CropTop": 2932, + "CropWidth": 652, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Blast goes right into foe\u0027s back and he", + "vibrates. He is unaware of much", + "around him for a moment. He flails his", + "weapon around.", + "\u002B12H \u2013 2\u2211\u03C0" + ], + "BaseLines": [ + "Blast goes right into foe\u0027s back and he", + "vibrates. He is unaware of much", + "around him for a moment. He flails his", + "weapon around.", + "\u002B12H \u2013 2\u2211\u03C0" + ], + "RawCellText": "Blast goes right into foe\u0027s back and he\nvibrates. He is unaware of much\naround him for a moment. He flails his\nweapon around.\n\u002B12H \u2013 2\u2211\u03C0", + "DescriptionText": "Blast goes right into foe\u0027s back and he vibrates. He is unaware of much around him for a moment. He flails his weapon around.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 805, + "Width": 141, + "Height": 67 + }, + "SourceImagePath": "electricity/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 3220, + "BoundsWidth": 564, + "BoundsHeight": 268, + "CropLeft": 356, + "CropTop": 3188, + "CropWidth": 660, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "The shock turns foe\u0027s reflexes against", + "his muscles. Tendons are torn during", + "foe\u0027s violent convulsions. The poor", + "fool.", + "\u002B13H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "The shock turns foe\u0027s reflexes against", + "his muscles. Tendons are torn during", + "foe\u0027s violent convulsions. The poor", + "fool.", + "\u002B13H \u2013 3\u2211\u220F" + ], + "RawCellText": "The shock turns foe\u0027s reflexes against\nhis muscles. Tendons are torn during\nfoe\u0027s violent convulsions. The poor\nfool.\n\u002B13H \u2013 3\u2211\u220F", + "DescriptionText": "The shock turns foe\u0027s reflexes against his muscles. Tendons are torn during foe\u0027s violent convulsions. The poor fool.", + "RawAffixText": "\u002B13H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 805, + "Width": 138, + "Height": 67 + }, + "SourceImagePath": "electricity/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 3220, + "BoundsWidth": 552, + "BoundsHeight": 268, + "CropLeft": 944, + "CropTop": 3188, + "CropWidth": 648, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Violent shock to foe\u0027s abdomen. Armor", + "deflects some of the damage. Foe is", + "terribly unbalanced. Torn cartilage.", + "with armor: \u002B10H \u2013 \u2211 \u2013 (-20)", + "w/o armor: 4\u2211 \u2013 (-40) \u2013 2\u222B" + ], + "BaseLines": [ + "Violent shock to foe\u0027s abdomen. Armor", + "deflects some of the damage. Foe is", + "terribly unbalanced. Torn cartilage." + ], + "RawCellText": "Violent shock to foe\u0027s abdomen. Armor\ndeflects some of the damage. Foe is\nterribly unbalanced. Torn cartilage.", + "DescriptionText": "Violent shock to foe\u0027s abdomen. Armor deflects some of the damage. Foe is terribly unbalanced. Torn cartilage.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_armor", + "ConditionText": "with armor", + "RawText": "with armor: \u002B10H \u2013 \u2211 \u2013 (-20)", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 \u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_armor", + "ConditionText": "w/o armor", + "RawText": "w/o armor: 4\u2211 \u2013 (-40) \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "4\u2211 \u2013 (-40) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 805, + "Width": 139, + "Height": 67 + }, + "SourceImagePath": "electricity/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 3220, + "BoundsWidth": 556, + "BoundsHeight": 268, + "CropLeft": 1532, + "CropTop": 3188, + "CropWidth": 652, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Bolt grapples foe\u0027s weapon arm and", + "snakes into his body. His arm is", + "useless. He is dizzy and falls", + "unconscious after 6 active rounds.", + "\u002B15H \u2013 6(-30)" + ], + "BaseLines": [ + "Bolt grapples foe\u0027s weapon arm and", + "snakes into his body. His arm is", + "useless. He is dizzy and falls", + "unconscious after 6 active rounds.", + "\u002B15H \u2013 6(-30)" + ], + "RawCellText": "Bolt grapples foe\u0027s weapon arm and\nsnakes into his body. His arm is\nuseless. He is dizzy and falls\nunconscious after 6 active rounds.\n\u002B15H \u2013 6(-30)", + "DescriptionText": "Bolt grapples foe\u0027s weapon arm and snakes into his body. His arm is useless. He is dizzy and falls unconscious after 6 active rounds.", + "RawAffixText": "\u002B15H \u2013 6(-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 805, + "Width": 138, + "Height": 67 + }, + "SourceImagePath": "electricity/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 3220, + "BoundsWidth": 552, + "BoundsHeight": 268, + "CropLeft": 2116, + "CropTop": 3188, + "CropWidth": 648, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Blast hits shoulder. Foe conducts your", + "strike well. His nervous system is", + "rearranged. He drops and dies of", + "shock and nerve damage in 12 rounds.", + "\u2013" + ], + "BaseLines": [ + "Blast hits shoulder. Foe conducts your", + "strike well. His nervous system is", + "rearranged. He drops and dies of", + "shock and nerve damage in 12 rounds.", + "\u2013" + ], + "RawCellText": "Blast hits shoulder. Foe conducts your\nstrike well. His nervous system is\nrearranged. He drops and dies of\nshock and nerve damage in 12 rounds.\n\u2013", + "DescriptionText": "Blast hits shoulder. Foe conducts your strike well. His nervous system is rearranged. He drops and dies of shock and nerve damage in 12 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 805, + "Width": 138, + "Height": 67 + }, + "SourceImagePath": "electricity/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 3220, + "BoundsWidth": 552, + "BoundsHeight": 268, + "CropLeft": 2704, + "CropTop": 3188, + "CropWidth": 648, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Assault to foe\u0027s lower leg fuses metal", + "and burns much. Foe falls. One leg is", + "paralyzed if metal greaves are worn.", + "with metal armor: \u002B15H \u2013 2\u2211\u220F", + "w/o metal armor: \u002B15H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Assault to foe\u0027s lower leg fuses metal", + "and burns much. Foe falls. One leg is", + "paralyzed if metal greaves are worn." + ], + "RawCellText": "Assault to foe\u0027s lower leg fuses metal\nand burns much. Foe falls. One leg is\nparalyzed if metal greaves are worn.", + "DescriptionText": "Assault to foe\u0027s lower leg fuses metal and burns much. Foe falls. One leg is paralyzed if metal greaves are worn.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_metal_armor", + "ConditionText": "with metal armor", + "RawText": "with metal armor: \u002B15H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_metal_armor", + "ConditionText": "w/o metal armor", + "RawText": "w/o metal armor: \u002B15H \u2013 3\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 879, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 3516, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 356, + "CropTop": 3484, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Blast lands on leg with unusual force.", + "Simple leg fracture if he wears armor;", + "a compound fracture if not.", + "with leg armor: 6\u2211\u220F \u2013 \u222B", + "w/o leg armor: 6\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Blast lands on leg with unusual force.", + "Simple leg fracture if he wears armor;", + "a compound fracture if not." + ], + "RawCellText": "Blast lands on leg with unusual force.\nSimple leg fracture if he wears armor;\na compound fracture if not.", + "DescriptionText": "Blast lands on leg with unusual force. Simple leg fracture if he wears armor; a compound fracture if not.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: 6\u2211\u220F \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "6\u2211\u220F \u2013 \u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: 6\u2211 \u2013 (-50)", + "DescriptionText": "", + "RawAffixText": "6\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 879, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 3516, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 944, + "CropTop": 3484, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Brunt of strike infests foe\u0027s knee.", + "Muscles and nerves are burned. Foe", + "drops in agony and grips his knee.", + "2\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Brunt of strike infests foe\u0027s knee.", + "Muscles and nerves are burned. Foe", + "drops in agony and grips his knee.", + "2\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Brunt of strike infests foe\u0027s knee.\nMuscles and nerves are burned. Foe\ndrops in agony and grips his knee.\n2\u2211\u220F \u2013 (-60)", + "DescriptionText": "Brunt of strike infests foe\u0027s knee. Muscles and nerves are burned. Foe drops in agony and grips his knee.", + "RawAffixText": "2\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 879, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 3516, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 1532, + "CropTop": 3484, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Electrify foe\u0027s body. Muscles and", + "tendons tear in convulsions. If no", + "armor he dies in 12 rounds.", + "with chest armor: 9\u2211 \u2013 6\u222B" + ], + "BaseLines": [ + "Electrify foe\u0027s body. Muscles and", + "tendons tear in convulsions. If no", + "armor he dies in 12 rounds." + ], + "RawCellText": "Electrify foe\u0027s body. Muscles and\ntendons tear in convulsions. If no\narmor he dies in 12 rounds.", + "DescriptionText": "Electrify foe\u0027s body. Muscles and tendons tear in convulsions. If no armor he dies in 12 rounds.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: 9\u2211 \u2013 6\u222B", + "DescriptionText": "", + "RawAffixText": "9\u2211 \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 879, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 3516, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 2116, + "CropTop": 3484, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Strike seeks out the shoulder and then", + "his spine. Foe drops, hip and backbone", + "shattered, and dies in 12 rounds.", + "\u2013" + ], + "BaseLines": [ + "Strike seeks out the shoulder and then", + "his spine. Foe drops, hip and backbone", + "shattered, and dies in 12 rounds.", + "\u2013" + ], + "RawCellText": "Strike seeks out the shoulder and then\nhis spine. Foe drops, hip and backbone\nshattered, and dies in 12 rounds.\n\u2013", + "DescriptionText": "Strike seeks out the shoulder and then his spine. Foe drops, hip and backbone shattered, and dies in 12 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 879, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 3516, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 2704, + "CropTop": 3484, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Strike arcs up into foe\u0027s hip. Garments", + "catch fire. Shock and nerve damage", + "inflicted.", + "3\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Strike arcs up into foe\u0027s hip. Garments", + "catch fire. Shock and nerve damage", + "inflicted.", + "3\u2211 \u2013 (-50)" + ], + "RawCellText": "Strike arcs up into foe\u0027s hip. Garments\ncatch fire. Shock and nerve damage\ninflicted.\n3\u2211 \u2013 (-50)", + "DescriptionText": "Strike arcs up into foe\u0027s hip. Garments catch fire. Shock and nerve damage inflicted.", + "RawAffixText": "3\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 943, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 3772, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 356, + "CropTop": 3740, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Jolt blinds foe for 2 days and sends", + "him crashing to the ground. He is", + "badly dazed and helpless while the", + "blindness lasts (2 to 10 days).", + "9\u2211" + ], + "BaseLines": [ + "Jolt blinds foe for 2 days and sends", + "him crashing to the ground. He is", + "badly dazed and helpless while the", + "blindness lasts (2 to 10 days).", + "9\u2211" + ], + "RawCellText": "Jolt blinds foe for 2 days and sends\nhim crashing to the ground. He is\nbadly dazed and helpless while the\nblindness lasts (2 to 10 days).\n9\u2211", + "DescriptionText": "Jolt blinds foe for 2 days and sends him crashing to the ground. He is badly dazed and helpless while the blindness lasts (2 to 10 days).", + "RawAffixText": "9\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 943, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 3772, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 944, + "CropTop": 3740, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Trapped in a web of light, your foe falls", + "to escape the heat. He is unconsious", + "and, without immediate aid, will go", + "into shock, dying in 12 rounds.", + "(\u201375) \u2013 5\u222B" + ], + "BaseLines": [ + "Trapped in a web of light, your foe falls", + "to escape the heat. He is unconsious", + "and, without immediate aid, will go", + "into shock, dying in 12 rounds.", + "(\u201375) \u2013 5\u222B" + ], + "RawCellText": "Trapped in a web of light, your foe falls\nto escape the heat. He is unconsious\nand, without immediate aid, will go\ninto shock, dying in 12 rounds.\n(\u201375) \u2013 5\u222B", + "DescriptionText": "Trapped in a web of light, your foe falls to escape the heat. He is unconsious and, without immediate aid, will go into shock, dying in 12 rounds.", + "RawAffixText": "(\u201375) \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 943, + "Width": 138, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 3772, + "BoundsWidth": 552, + "BoundsHeight": 228, + "CropLeft": 1532, + "CropTop": 3740, + "CropWidth": 648, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s head devastates nervous", + "system. He falls into a coma. Foe is a", + "living vegetable. Any metal is hot to the", + "touch.", + "\u002B30H" + ], + "BaseLines": [ + "Strike to foe\u0027s head devastates nervous", + "system. He falls into a coma. Foe is a", + "living vegetable. Any metal is hot to the", + "touch.", + "\u002B30H" + ], + "RawCellText": "Strike to foe\u0027s head devastates nervous\nsystem. He falls into a coma. Foe is a\nliving vegetable. Any metal is hot to the\ntouch.\n\u002B30H", + "DescriptionText": "Strike to foe\u0027s head devastates nervous system. He falls into a coma. Foe is a living vegetable. Any metal is hot to the touch.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 943, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 3772, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 2116, + "CropTop": 3740, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blast rends foe\u0027s body, causing fatal", + "damage to organs. His eyes pop out", + "and he dies in 9 inactive rounds. So", + "much for the Govenor\u0027s pardon.", + "\u002B25H" + ], + "BaseLines": [ + "Blast rends foe\u0027s body, causing fatal", + "damage to organs. His eyes pop out", + "and he dies in 9 inactive rounds. So", + "much for the Govenor\u0027s pardon.", + "\u002B25H" + ], + "RawCellText": "Blast rends foe\u0027s body, causing fatal\ndamage to organs. His eyes pop out\nand he dies in 9 inactive rounds. So\nmuch for the Govenor\u0027s pardon.\n\u002B25H", + "DescriptionText": "Blast rends foe\u0027s body, causing fatal damage to organs. His eyes pop out and he dies in 9 inactive rounds. So much for the Govenor\u0027s pardon.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 943, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "electricity/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 3772, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 2704, + "CropTop": 3740, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s loses consciousness from the", + "blast. His convulsions keep him", + "standing 1 round.", + "\u002B10H \u2013 12\u2211" + ], + "BaseLines": [ + "Foe\u0027s loses consciousness from the", + "blast. His convulsions keep him", + "standing 1 round.", + "\u002B10H \u2013 12\u2211" + ], + "RawCellText": "Foe\u0027s loses consciousness from the\nblast. His convulsions keep him\nstanding 1 round.\n\u002B10H \u2013 12\u2211", + "DescriptionText": "Foe\u0027s loses consciousness from the blast. His convulsions keep him standing 1 round.", + "RawAffixText": "\u002B10H \u2013 12\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 1008, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 4032, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 356, + "CropTop": 4000, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Strike overloads foe\u0027s nervous system.", + "His heart stops and restarts several", + "times. He drops and dies in 9 rounds.", + "\u002B15H" + ], + "BaseLines": [ + "Strike overloads foe\u0027s nervous system.", + "His heart stops and restarts several", + "times. He drops and dies in 9 rounds.", + "\u002B15H" + ], + "RawCellText": "Strike overloads foe\u0027s nervous system.\nHis heart stops and restarts several\ntimes. He drops and dies in 9 rounds.\n\u002B15H", + "DescriptionText": "Strike overloads foe\u0027s nervous system. His heart stops and restarts several times. He drops and dies in 9 rounds.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 1008, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 4032, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 944, + "CropTop": 4000, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Sustained heat of the onslaught fuses", + "metal, cloth, and skin. Foe\u0027s eyes pop", + "out of his head. He dies in 3 rounds.", + "\u2013" + ], + "BaseLines": [ + "Sustained heat of the onslaught fuses", + "metal, cloth, and skin. Foe\u0027s eyes pop", + "out of his head. He dies in 3 rounds.", + "\u2013" + ], + "RawCellText": "Sustained heat of the onslaught fuses\nmetal, cloth, and skin. Foe\u0027s eyes pop\nout of his head. He dies in 3 rounds.\n\u2013", + "DescriptionText": "Sustained heat of the onslaught fuses metal, cloth, and skin. Foe\u0027s eyes pop out of his head. He dies in 3 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 1008, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 4032, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 1532, + "CropTop": 4000, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Foe reels back 10 feet. Nerve damage", + "and shock combined with broken hip", + "and arm spell death in 3 painful rnds.", + "\u002B20H" + ], + "BaseLines": [ + "Foe reels back 10 feet. Nerve damage", + "and shock combined with broken hip", + "and arm spell death in 3 painful rnds.", + "\u002B20H" + ], + "RawCellText": "Foe reels back 10 feet. Nerve damage\nand shock combined with broken hip\nand arm spell death in 3 painful rnds.\n\u002B20H", + "DescriptionText": "Foe reels back 10 feet. Nerve damage and shock combined with broken hip and arm spell death in 3 painful rnds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 1008, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 4032, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2116, + "CropTop": 4000, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Titanic blast virtually cuts foe in half.", + "Bolts streak across ground threatening", + "new victims. Foe is dead, of course.", + "(\u002B20)" + ], + "BaseLines": [ + "Titanic blast virtually cuts foe in half.", + "Bolts streak across ground threatening", + "new victims. Foe is dead, of course.", + "(\u002B20)" + ], + "RawCellText": "Titanic blast virtually cuts foe in half.\nBolts streak across ground threatening\nnew victims. Foe is dead, of course.\n(\u002B20)", + "DescriptionText": "Titanic blast virtually cuts foe in half. Bolts streak across ground threatening new victims. Foe is dead, of course.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 1008, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "electricity/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 4032, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 2704, + "CropTop": 4000, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s head is ablaze. Garments catch", + "fire. Foe falls unconscious and dies in", + "6 rounds from nerve damage.", + "\u002B20H" + ], + "BaseLines": [ + "Foe\u0027s head is ablaze. Garments catch", + "fire. Foe falls unconscious and dies in", + "6 rounds from nerve damage.", + "\u002B20H" + ], + "RawCellText": "Foe\u0027s head is ablaze. Garments catch\nfire. Foe falls unconscious and dies in\n6 rounds from nerve damage.\n\u002B20H", + "DescriptionText": "Foe\u0027s head is ablaze. Garments catch fire. Foe falls unconscious and dies in 6 rounds from nerve damage.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 101, + "Top": 1063, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 404, + "BoundsTop": 4252, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 356, + "CropTop": 4220, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s insides heat up and burn,", + "destroying nerves and organs alike.", + "Foe drops and dies instantly.", + "(\u002B10)" + ], + "BaseLines": [ + "Foe\u0027s insides heat up and burn,", + "destroying nerves and organs alike.", + "Foe drops and dies instantly.", + "(\u002B10)" + ], + "RawCellText": "Foe\u0027s insides heat up and burn,\ndestroying nerves and organs alike.\nFoe drops and dies instantly.\n(\u002B10)", + "DescriptionText": "Foe\u0027s insides heat up and burn, destroying nerves and organs alike. Foe drops and dies instantly.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 248, + "Top": 1063, + "Width": 140, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 992, + "BoundsTop": 4252, + "BoundsWidth": 560, + "BoundsHeight": 192, + "CropLeft": 944, + "CropTop": 4220, + "CropWidth": 656, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Strike lands on foe\u0027s head. Muscles are", + "fused, tendons torn. Foe\u0027s brain fries.", + "He slips to ground and dies in 3 rnds.", + "3(\u002B10)" + ], + "BaseLines": [ + "Strike lands on foe\u0027s head. Muscles are", + "fused, tendons torn. Foe\u0027s brain fries.", + "He slips to ground and dies in 3 rnds.", + "3(\u002B10)" + ], + "RawCellText": "Strike lands on foe\u0027s head. Muscles are\nfused, tendons torn. Foe\u0027s brain fries.\nHe slips to ground and dies in 3 rnds.\n3(\u002B10)", + "DescriptionText": "Strike lands on foe\u0027s head. Muscles are fused, tendons torn. Foe\u0027s brain fries. He slips to ground and dies in 3 rnds.", + "RawAffixText": "3(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 395, + "Top": 1063, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1580, + "BoundsTop": 4252, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 1532, + "CropTop": 4220, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Havoc reigns around foe. Closest thing", + "to him is also entangled in this deadly", + "bolt. He dies 2 rnds later.", + "(\u002B15)" + ], + "BaseLines": [ + "Havoc reigns around foe. Closest thing", + "to him is also entangled in this deadly", + "bolt. He dies 2 rnds later.", + "(\u002B15)" + ], + "RawCellText": "Havoc reigns around foe. Closest thing\nto him is also entangled in this deadly\nbolt. He dies 2 rnds later.\n(\u002B15)", + "DescriptionText": "Havoc reigns around foe. Closest thing to him is also entangled in this deadly bolt. He dies 2 rnds later.", + "RawAffixText": "(\u002B15)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 541, + "Top": 1063, + "Width": 140, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2164, + "BoundsTop": 4252, + "BoundsWidth": 560, + "BoundsHeight": 192, + "CropLeft": 2116, + "CropTop": 4220, + "CropWidth": 656, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s head. He is burned to a", + "cinder. What is left blows away on the", + "wind. All fear you.", + "(\u002B20)" + ], + "BaseLines": [ + "Strike to foe\u0027s head. He is burned to a", + "cinder. What is left blows away on the", + "wind. All fear you.", + "(\u002B20)" + ], + "RawCellText": "Strike to foe\u0027s head. He is burned to a\ncinder. What is left blows away on the\nwind. All fear you.\n(\u002B20)", + "DescriptionText": "Strike to foe\u0027s head. He is burned to a cinder. What is left blows away on the wind. All fear you.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 688, + "Top": 1063, + "Width": 140, + "Height": 48 + }, + "SourceImagePath": "electricity/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2752, + "BoundsTop": 4252, + "BoundsWidth": 560, + "BoundsHeight": 192, + "CropLeft": 2704, + "CropTop": 4220, + "CropWidth": 656, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/source.xml b/src/RolemasterDb.App/import-artifacts/critical/electricity/source.xml new file mode 100644 index 0000000..3ce2573 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/electricity/source.xml @@ -0,0 +1,405 @@ + + + + + + + + + + + + + +Key: +ß +π + = must parry ß rounds; +ß + + = no parry for ß rounds; +ß + + = stunned for ß rounds; +ß + + = bleed ß hits per round; +(-ß) = foe has -ß penalty; +(+ß) = attacker gets +ß next round. +90 +01-05 +Blast is frightful, but ineffective. +Your strike's energy is poorly aimed. +Strike's energy soaks into the ground. +Bright flash and little heat disturb foe. +Foe avoids blast but feels charged. ++0H ++0H ++1H ++2H ++3H +06-10 +Sparks fly. Foe is illuminated by blast. +Foe's hair stands on end. Frightening! +Foe waves off sparks and smoke. +Static gathers on foe. Zap! +Foe sees spots. You have initiative. ++1H ++2H ++3H ++4H ++4H +11-15 +Bolt reaches for foe but then grounds +out. You have initiative. +Mild jolt to foe's shoulder causes him +to hesitate. You have initiative. +The thunderous crack of your attack +panics foe. You gain the initiative. +Bolt jumps to foe's weapons and then +into the ground. You have initiative. +Flash unbalances foe and sends him on +the defensive. You have initiative. ++2H ++2H ++3H ++4H ++5H – ∑ +16-20 +Foe flinches from the static in the air. +You have the initiative. +The blast of light and heat daunts foe. +He looks away; you have initiative. +Flying debris obstructs foe's vision. +You have 2 rounds of initiative. +Foe strikes out at the blast to protect +himself. It seems to work well enough. +Foe fails to avoid some of the attack +and almost falls down. ++3H ++4H ++3H ++4H – π ++6H – ∑ +21-35 +Foe recoils from thundering sound of +the blast. He loses 2 rounds initiative. +Flashes of light and sharp cracks. Foe's +impressed.You have 2 rnds initiative. +Any coins on foe heat up smolder in +foe's pockets. He steps back. +Your attack jolts foe into action. He +steps back and swings in all directions. +Foe is magnetized foe a moment. It +distracts him. He is dazed. ++4H ++5H ++6H – π ++5H – 2π – ∫ ++10H – 2∑ +36-45 +Blast almost misses, but it grounds +into foe's weapon arm. +Foe's side and back are entangled by +blast. Foe is shaken. +Foe heats up and goes on defensive +until he cools. His footing is good. +Entangle foe in deadly blue light. +Garments smolder and traces of +energy inhabit his equipment. +Foe's equipment is infested by the +blast. Garments are scorched; exposed +skin is burned. Foe is a wreck. +w/o metal weapon: +5H – π +with metal weapon: +7H – ∑π ++2H – π – ∫ ++7H – 2π ++7H – ∑ – 2(-10) ++12H –2∑ +46-50 +Small bits of electrical energy chase +around foe's body. Foe makes a futile +effort to throw them off. +Strike hits foe's chest. Clothes smoke, +then burn. Foe flails his arms trying to +put them out. +Strike connects with foe's arm. It +careens off each piece of metal foe is +wearing. Exposed areas are blistered. +Direct hit to foe's chest illuminates foe. +Much of the strike grounds out. Some +of the energy remains for an instant. +Blast to foe's waist. He stumbles, +dazzled by light, and twitches for the +next hour. You have 6 rds of initiative. ++2H – π – ∫ ++6H – 2π ++7H – 2∑ ++7H – 2∑ – 2(-10) ++13H – 2∑ – ∏ +51-55 +Direct sizzling blast to foe's shoulder. +It grounds out and leaves foe dazed. +Back strike throws equipment about. +Minor burns to exposed skin. +Hard strike to side, armor does not +help. Blow leaves a permanent mark. +Blast assaults foe's shield arm. If foe +has metal armor he is knocked out. +Weapon arm endures a terrible +onslaught. Foe drops all in his hand. ++6H –∑ ++7H – ∑ – 2∫ ++7H – ∑∏ – ∫ ++10H – 2∑ – π ++13H – 2∑ – 2∫ +56-60 +Foe is jerked off balance by the strike +and has trouble regaining footing. +Blast heats up metal on foe, causing +painful burns to contacting flesh. +Strong blast hits foe low. His legs +almost give from the pain. Foe recoils. +You hits hard; foe's abdomen is +hammered. He steps back 5 feet. +Bolt passes through foe's leg before +grounding. Foe suffers . ++7H – 3π +w/o metal: +8H – 2∑ +with metal: +10H – 2∑∏ +with leg armor: +12H – ∑ +w/o leg armor: +9H – 2∑ + with abdominal armor: +20H +w/o abdominal armor: +15H – 6∑ +with leg armor: +8H – ∑∏ +w/o leg armor: 2∑ – 2∫ +61-65 +Well placed. Strike slams into foe's +weapon arm. Foe's evasion is comical. +Foe's reflexes are numbed by blast. He +is dazed and moving slowly. +Strike is low and pours into ground. A +stray bolt arches into foe's leg. +Blast to foe's shield shoulder. Foe's +shield arm and shield ignite. +Foe is overcome by the flash. He falls, +entangled in his smoldering garments. +with metal greaves: +3H – 2∑ +w/o metal greaves: +7H – ∑ ++9H – ∑∏ ++10H – 2∑ – π +with shield: 6∑ – 3∫ +w/o shield: 2∑ – 2∫ ++14H – 2∑ – π +66 +Disrupt the beating of foe's heart for a +moment. Reflexes strain muscles. Foe +is knocked down. +Bright flash illumnates foe and jolts +every muscle in his body. Foe's +reflexes will flinch again in 10 rounds. +Any metal armor on arm and chest +becomes fused together in the blast. +Foe's arm is then pinned and useless. +Foe's neck absorbs the bulk of the +attack. Nerves overload. Foe is +knocked out and mute for a week. +Boom! Foe's skeleton crackles with the +impact. He drops and dies in 2 rounds. +3 ∑ ++15H – 3∑∏ – 2∫ – (-20) ++9H – 12∑ ++20H – 4∫ +(+10) +67-70 +Blast climbs up foe's side and sends +him stumbling back 5 feet. He blocks +his face against a renewed assault. +Strike lands on shoulder and streaks +down back. Foe steps foward in failing +attempt to duck. He is vulnerable. +Back blast. Foe drops to one knee and +rises again with some difficulty. Skin is +blistered badly. +The shock of the assault inhabits foe's +spine. Muscles and tendons are +stretched. He has trouble standing. +Blasted leaps onto foe's shield arm. +His arm and any shield are on fire. +Metal is fused. ++7H – ∑π ++10H – 2∑ – ∏ ++11H – 2∑∏ – (-10) ++12H – 2∑ – (-20) +4∑ – 3∫ – (-40) +71-75 +Your attack infects foe with electrical +energy. It dances all over him. It takes +some time for him to recover. +Chest and arm blast damages organic +armor. Metal armor will heat up +painfully. Foe smells own hair burning. +Chest blast. Organic armor is +destroyed. Metal armor is scalding hot. +Attack engulfs foe's weapon. Hand and +arm are useless. Skin, muscles, and +nerves are damaged. +Strike savages center of foe's chest. +Foe's convulsions resemble a dance. +One arm is paralyzed. ++8H – 3∑ – (-5) +4∑ – 2∏ +while metal armor worn: 3∫ ++12H – 8∑ + until metal armor removed: 5∫ ++13H – 3∑ +with armor: +10H – 3∑∏ – ∫ +w/o chest armor: 6∑ – 3∫ +76-80 +Electrify foe's shield side. Foe finds +little protection behind his shield. +Hopefully, it contains no metal. +Abdomen entangled by a great +electrical serpent. Foe is knocked +down; the beast disappears. +Nerves in foe's elbow are damaged; +shield arm is useless. He drops his +weapon on his foot. He is embarassed. +Blast reaches out with hateful resolve. +Foe's neck and back are engulfed. +Nerves are damaged and muscles torn. +Metal on foe fuses to his body, +damaging nerves. Dazed, he drops to +the ground to look for his marbles. +w/o metal on shield: +6H – ∑∏ +with metal on shield: +9H – 2∑∏ +with abdom. armor: +15H – 2∑ – ∏ +w/o abdominal armor: +11H – 2∫ +8 ∑ – (-5) – ∫ ++20H – 10∑∏ ++18H – 3∫ +81-85 +Blast goes right into foe's back and he +vibrates. He is unaware of much +around him for a moment. He flails his +weapon around. +The shock turns foe's reflexes against +his muscles. Tendons are torn during +foe's violent convulsions. The poor +fool. +Violent shock to foe's abdomen. Armor +deflects some of the damage. Foe is +terribly unbalanced. Torn cartilage. +Bolt grapples foe's weapon arm and +snakes into his body. His arm is +useless. He is dizzy and falls +unconscious after 6 active rounds. +Blast hits shoulder. Foe conducts your +strike well. His nervous system is +rearranged. He drops and dies of +shock and nerve damage in 12 rounds. ++12H – 2∑π ++13H – 3∑∏ +with armor: +10H – ∑ – (-20) +w/o armor: 4∑ – (-40) – 2∫ ++15H – 6(-30) + +86-90 +Assault to foe's lower leg fuses metal +and burns much. Foe falls. One leg is +paralyzed if metal greaves are worn. +Blast lands on leg with unusual force. +Simple leg fracture if he wears armor; +a compound fracture if not. +Brunt of strike infests foe's knee. +Muscles and nerves are burned. Foe +drops in agony and grips his knee. +Electrify foe's body. Muscles and +tendons tear in convulsions. If no +armor he dies in 12 rounds. +Strike seeks out the shoulder and then +his spine. Foe drops, hip and backbone +shattered, and dies in 12 rounds. +with metal armor: +15H – 2∑∏ +w/o metal armor: +15H – 3∑∏ +with leg armor: 6∑∏ – ∫ +w/o leg armor: 6∑ – (-50) +2∑∏ – (-60) +with chest armor: 9∑ – 6∫ + +91-95 +Strike arcs up into foe's hip. Garments +catch fire. Shock and nerve damage +inflicted. +Jolt blinds foe for 2 days and sends +him crashing to the ground. He is +badly dazed and helpless while the +blindness lasts (2 to 10 days). +Trapped in a web of light, your foe falls +to escape the heat. He is unconsious +and, without immediate aid, will go +into shock, dying in 12 rounds. +Strike to foe's head devastates nervous +system. He falls into a coma. Foe is a +living vegetable. Any metal is hot to the +touch. +Blast rends foe's body, causing fatal +damage to organs. His eyes pop out +and he dies in 9 inactive rounds. So +much for the Govenor's pardon. + 3∑ – (-50) +9∑ +(–75) – 5∫ ++30H ++25H +96-99 +Foe's loses consciousness from the +blast. His convulsions keep him +standing 1 round. +Strike overloads foe's nervous system. +His heart stops and restarts several +times. He drops and dies in 9 rounds. +Sustained heat of the onslaught fuses +metal, cloth, and skin. Foe's eyes pop +out of his head. He dies in 3 rounds. +Foe reels back 10 feet. Nerve damage +and shock combined with broken hip +and arm spell death in 3 painful rnds. +Titanic blast virtually cuts foe in half. +Bolts streak across ground threatening +new victims. Foe is dead, of course. ++10H – 12∑ ++15H + ++20H +(+20) +100 +Foe's head is ablaze. Garments catch +fire. Foe falls unconscious and dies in +6 rounds from nerve damage. +Foe's insides heat up and burn, +destroying nerves and organs alike. +Foe drops and dies instantly. +Strike lands on foe's head. Muscles are +fused, tendons torn. Foe's brain fries. +He slips to ground and dies in 3 rnds. +Havoc reigns around foe. Closest thing +to him is also entangled in this deadly +bolt. He dies 2 rnds later. +Strike to foe's head. He is burned to a +cinder. What is left blows away on the +wind. All fear you. ++20H +(+10) +3(+10) +(+15) +(+20) +A +B +C +D +E +6.2 ELECTRICITY CRITICAL STRIKE TABLE +14.2 ELECTRICITY CRITICAL STRIKE TABLE + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/electricity/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/electricity/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/electricity/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__01-05.png new file mode 100644 index 0000000..db2b559 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__06-10.png new file mode 100644 index 0000000..f390291 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__100.png new file mode 100644 index 0000000..bdf49c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__11-15.png new file mode 100644 index 0000000..699122e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__16-20.png new file mode 100644 index 0000000..2eaed24 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__21-35.png new file mode 100644 index 0000000..3d82925 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__36-45.png new file mode 100644 index 0000000..3bc0aeb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__46-50.png new file mode 100644 index 0000000..245f43a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__51-55.png new file mode 100644 index 0000000..1402f42 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__56-60.png new file mode 100644 index 0000000..341e65e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__61-65.png new file mode 100644 index 0000000..ada0945 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__66.png new file mode 100644 index 0000000..91d3500 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__67-70.png new file mode 100644 index 0000000..0b153b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__71-75.png new file mode 100644 index 0000000..85a2813 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__76-80.png new file mode 100644 index 0000000..b7942ca Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__81-85.png new file mode 100644 index 0000000..c7a8f09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__86-90.png new file mode 100644 index 0000000..ae26f25 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__91-95.png new file mode 100644 index 0000000..7d672f1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__96-99.png new file mode 100644 index 0000000..aac8594 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__01-05.png new file mode 100644 index 0000000..10ad216 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__06-10.png new file mode 100644 index 0000000..f1307a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__100.png new file mode 100644 index 0000000..1fe19af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__11-15.png new file mode 100644 index 0000000..e0b8106 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__16-20.png new file mode 100644 index 0000000..3b0b7ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__21-35.png new file mode 100644 index 0000000..6af04c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__36-45.png new file mode 100644 index 0000000..e3c2bdd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__46-50.png new file mode 100644 index 0000000..dba81f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__51-55.png new file mode 100644 index 0000000..36b7b03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__56-60.png new file mode 100644 index 0000000..003c818 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__61-65.png new file mode 100644 index 0000000..66f3ba2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__66.png new file mode 100644 index 0000000..b381ca6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__67-70.png new file mode 100644 index 0000000..5833b66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__71-75.png new file mode 100644 index 0000000..6193527 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__76-80.png new file mode 100644 index 0000000..50f3e51 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__81-85.png new file mode 100644 index 0000000..b8697de Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__86-90.png new file mode 100644 index 0000000..6e1c60b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__91-95.png new file mode 100644 index 0000000..62f7e7c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__96-99.png new file mode 100644 index 0000000..fa9d221 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__01-05.png new file mode 100644 index 0000000..0077916 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__06-10.png new file mode 100644 index 0000000..f655123 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__100.png new file mode 100644 index 0000000..b05def5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__11-15.png new file mode 100644 index 0000000..65721ca Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__16-20.png new file mode 100644 index 0000000..c9dda1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__21-35.png new file mode 100644 index 0000000..a00cbcc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__36-45.png new file mode 100644 index 0000000..bce5019 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__46-50.png new file mode 100644 index 0000000..b6aec00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__51-55.png new file mode 100644 index 0000000..0026a73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__56-60.png new file mode 100644 index 0000000..3c84828 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__61-65.png new file mode 100644 index 0000000..5364fbe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__66.png new file mode 100644 index 0000000..428d92d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__67-70.png new file mode 100644 index 0000000..98a9935 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__71-75.png new file mode 100644 index 0000000..56ab09a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__76-80.png new file mode 100644 index 0000000..2e1ccbb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__81-85.png new file mode 100644 index 0000000..610dcaa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__86-90.png new file mode 100644 index 0000000..152e59b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__91-95.png new file mode 100644 index 0000000..cc3c2e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__96-99.png new file mode 100644 index 0000000..4d6ee09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__01-05.png new file mode 100644 index 0000000..984cd7d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__06-10.png new file mode 100644 index 0000000..103ded3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__100.png new file mode 100644 index 0000000..bfd3147 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__11-15.png new file mode 100644 index 0000000..9d116ce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__16-20.png new file mode 100644 index 0000000..38b78fd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__21-35.png new file mode 100644 index 0000000..ed8f419 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__36-45.png new file mode 100644 index 0000000..4b1c5d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__46-50.png new file mode 100644 index 0000000..2449476 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__51-55.png new file mode 100644 index 0000000..21b01fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__56-60.png new file mode 100644 index 0000000..9b23bd0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__61-65.png new file mode 100644 index 0000000..ba37c65 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__66.png new file mode 100644 index 0000000..e59f350 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__67-70.png new file mode 100644 index 0000000..3d528a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__71-75.png new file mode 100644 index 0000000..cba067d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__76-80.png new file mode 100644 index 0000000..4dea445 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__81-85.png new file mode 100644 index 0000000..0041040 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__86-90.png new file mode 100644 index 0000000..e2e0e0e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__91-95.png new file mode 100644 index 0000000..b2590a7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__96-99.png new file mode 100644 index 0000000..99556f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__01-05.png new file mode 100644 index 0000000..1b3c179 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__06-10.png new file mode 100644 index 0000000..4b5f10f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__100.png new file mode 100644 index 0000000..ede26b9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__11-15.png new file mode 100644 index 0000000..f0ae9ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__16-20.png new file mode 100644 index 0000000..9701875 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__21-35.png new file mode 100644 index 0000000..b10dd04 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__36-45.png new file mode 100644 index 0000000..e329b9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__46-50.png new file mode 100644 index 0000000..eac19f3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__51-55.png new file mode 100644 index 0000000..b4072ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__56-60.png new file mode 100644 index 0000000..2e84c29 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__61-65.png new file mode 100644 index 0000000..e4e4d39 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__66.png new file mode 100644 index 0000000..2394d6b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__67-70.png new file mode 100644 index 0000000..045cd6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__71-75.png new file mode 100644 index 0000000..65fabe7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__76-80.png new file mode 100644 index 0000000..d1adb30 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__81-85.png new file mode 100644 index 0000000..26fab1c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__86-90.png new file mode 100644 index 0000000..ba3d984 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__91-95.png new file mode 100644 index 0000000..d6ce6cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__96-99.png new file mode 100644 index 0000000..c2799b0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/grapple/fragments.json new file mode 100644 index 0000000..6d2eef2 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/grapple/fragments.json @@ -0,0 +1,3842 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 852, + "Width": 15, + "Height": 13, + "Text": "95", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 107, + "Left": 139, + "Width": 93, + "Height": 10, + "Text": "Foe escapes like the wind.", + "Confidence": null, + "CenterX": 185.5 + }, + { + "PageNumber": 1, + "Top": 107, + "Left": 275, + "Width": 83, + "Height": 10, + "Text": "Your attack falls short.", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 107, + "Left": 428, + "Width": 139, + "Height": 10, + "Text": "Your fingernails deal a vicious wound.", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 107, + "Left": 582, + "Width": 141, + "Height": 10, + "Text": "A little elbow before you lose your grip.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 107, + "Left": 736, + "Width": 141, + "Height": 10, + "Text": "You grip strand of foe\u0027s hair. It breaks.", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 254, + "Width": 15, + "Height": 10, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 407, + "Width": 15, + "Height": 10, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 559, + "Width": 15, + "Height": 10, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 713, + "Width": 15, + "Height": 10, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 871, + "Width": 15, + "Height": 10, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 150, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 139, + "Width": 116, + "Height": 10, + "Text": "Grab foe\u0027s arm. Oops. Try again.", + "Confidence": null, + "CenterX": 197 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 275, + "Width": 55, + "Height": 10, + "Text": "Your grip fails.", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 428, + "Width": 137, + "Height": 10, + "Text": "Foe grabs, misses. You have initiative.", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 582, + "Width": 116, + "Height": 10, + "Text": "This was not a special moment.", + "Confidence": null, + "CenterX": 640 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 735, + "Width": 111, + "Height": 10, + "Text": "You have initiative next round.", + "Confidence": null, + "CenterX": 790.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 254, + "Width": 15, + "Height": 10, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 407, + "Width": 15, + "Height": 10, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 559, + "Width": 15, + "Height": 10, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 713, + "Width": 15, + "Height": 10, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 163, + "Left": 871, + "Width": 15, + "Height": 10, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 91, + "Width": 38, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 110 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "You impede foe\u0027s combat stance.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 139, + "Width": 81, + "Height": 10, + "Text": "You have the initiative.", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 275, + "Width": 145, + "Height": 10, + "Text": "Foe collides with your attack before you", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 275, + "Width": 88, + "Height": 10, + "Text": "get a grip. Small bruise.", + "Confidence": null, + "CenterX": 319 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 428, + "Width": 137, + "Height": 10, + "Text": "You cannot get a good grip, foe hurts", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 428, + "Width": 131, + "Height": 10, + "Text": "himself evading. You have initiative.", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 582, + "Width": 137, + "Height": 10, + "Text": "Grab foe\u0027s head. If foe has helm, you", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 582, + "Width": 137, + "Height": 10, + "Text": "twist it. Otherwise, you gain initiative.", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 736, + "Width": 138, + "Height": 10, + "Text": "Lame attack, but foe is concerned. He", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 191, + "Left": 736, + "Width": 45, + "Height": 10, + "Text": "moves back.", + "Confidence": null, + "CenterX": 758.5 + }, + { + "PageNumber": 1, + "Top": 210, + "Left": 254, + "Width": 15, + "Height": 10, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 210, + "Left": 407, + "Width": 15, + "Height": 10, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 210, + "Left": 559, + "Width": 15, + "Height": 10, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 210, + "Left": 678, + "Width": 51, + "Height": 10, + "Text": "with helm: \u2211", + "Confidence": null, + "CenterX": 703.5 + }, + { + "PageNumber": 1, + "Top": 210, + "Left": 854, + "Width": 31, + "Height": 10, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 869.5 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 139, + "Width": 110, + "Height": 10, + "Text": "Foe breaks free of a weak grip.", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "You have the initiative next round.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 275, + "Width": 149, + "Height": 10, + "Text": "Grab foe and give him a weak punch. He", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 275, + "Width": 95, + "Height": 10, + "Text": "thinks you are dangerous.", + "Confidence": null, + "CenterX": 322.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 428, + "Width": 131, + "Height": 10, + "Text": "Foe recovers, continues his defense", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 428, + "Width": 135, + "Height": 10, + "Text": "by sweeping his weapon at your feet.", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 582, + "Width": 138, + "Height": 10, + "Text": "Push foe, unbalancing him. You have", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 582, + "Width": 79, + "Height": 10, + "Text": "initiative for 2 rounds.", + "Confidence": null, + "CenterX": 621.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 736, + "Width": 136, + "Height": 10, + "Text": "Strong passing blow near foe\u0027s head.", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 736, + "Width": 132, + "Height": 10, + "Text": "His violent evasion is not productive.", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 254, + "Width": 15, + "Height": 10, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 415, + "Width": 7, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 567, + "Width": 7, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 717, + "Width": 9, + "Height": 10, + "Text": "\u2014", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 256, + "Left": 853, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 869.5 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 139, + "Width": 126, + "Height": 10, + "Text": "Almost get a grip on foe\u0027s arm. He", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 139, + "Width": 118, + "Height": 10, + "Text": "avoids his mistake. You gain the", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 139, + "Width": 73, + "Height": 10, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 175.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 275, + "Width": 138, + "Height": 10, + "Text": "You grip foe\u0027s shield arm. Foe\u0027s strike", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 275, + "Width": 138, + "Height": 10, + "Text": "toward your head makes you let go of", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 275, + "Width": 94, + "Height": 10, + "Text": "him. He keeps a distance.", + "Confidence": null, + "CenterX": 322 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 428, + "Width": 135, + "Height": 10, + "Text": "Collide with foe. You push him away", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 428, + "Width": 132, + "Height": 10, + "Text": "and he stumbles back 5 feet. It went", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 428, + "Width": 124, + "Height": 10, + "Text": "better than you could have hoped.", + "Confidence": null, + "CenterX": 490 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 582, + "Width": 136, + "Height": 10, + "Text": "Hard, but poorly placed. Foe bounces", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 582, + "Width": 138, + "Height": 10, + "Text": "back out of your grip. He looks like he", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 582, + "Width": 88, + "Height": 10, + "Text": "does not recognize you.", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 736, + "Width": 137, + "Height": 10, + "Text": "Uncoordinated attack and a little luck,", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 736, + "Width": 154, + "Height": 10, + "Text": "allows foe to escape your grasp. You have", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 736, + "Width": 81, + "Height": 10, + "Text": "initiative for 2 rounds.", + "Confidence": null, + "CenterX": 776.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 254, + "Width": 15, + "Height": 10, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 396, + "Width": 25, + "Height": 10, + "Text": "\u03C0(-20)", + "Confidence": null, + "CenterX": 408.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 541, + "Width": 33, + "Height": 10, + "Text": "\u002B2H \u2013 \u2211", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 694, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 710.5 + }, + { + "PageNumber": 1, + "Top": 314, + "Left": 875, + "Width": 9, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 347, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 139, + "Width": 121, + "Height": 10, + "Text": "Grip to lower back. Foe wards off", + "Confidence": null, + "CenterX": 199.5 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "your attack and prepares for your", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 139, + "Width": 42, + "Height": 10, + "Text": "next move.", + "Confidence": null, + "CenterX": 160 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 275, + "Width": 122, + "Height": 10, + "Text": "Grip fails, but bash does not. You", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 275, + "Width": 124, + "Height": 10, + "Text": "unbalance your foe. You have the", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 275, + "Width": 34, + "Height": 10, + "Text": "initiative.", + "Confidence": null, + "CenterX": 292 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 428, + "Width": 134, + "Height": 10, + "Text": "Your attack is almost comical as you", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 428, + "Width": 138, + "Height": 10, + "Text": "seek any little grip you can get. All the", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 428, + "Width": 134, + "Height": 10, + "Text": "tiny tugs finally have an effect on foe.", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 582, + "Width": 142, + "Height": 10, + "Text": "Strike to foe\u0027s shield arm. If foe has no", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 582, + "Width": 118, + "Height": 10, + "Text": "shield, you immobilize arm for 6", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 582, + "Width": 30, + "Height": 10, + "Text": "rounds.", + "Confidence": null, + "CenterX": 597 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 736, + "Width": 140, + "Height": 10, + "Text": "Attack to upper leg. Foe spins to break", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 736, + "Width": 139, + "Height": 10, + "Text": "free. He is disoriented badly. It takes a", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 736, + "Width": 102, + "Height": 10, + "Text": "moment for him to see you.", + "Confidence": null, + "CenterX": 787 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 261, + "Width": 7, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 264.5 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 390, + "Width": 31, + "Height": 10, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 558, + "Width": 16, + "Height": 10, + "Text": "\u2211\u03C0", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 669, + "Width": 58, + "Height": 10, + "Text": "with shield: \u002B3H", + "Confidence": null, + "CenterX": 698 + }, + { + "PageNumber": 1, + "Top": 371, + "Left": 869, + "Width": 16, + "Height": 10, + "Text": "\u2211\u220F", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 403, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 139, + "Width": 109, + "Height": 10, + "Text": "Hinder foe\u0027s weapon arm. Foe", + "Confidence": null, + "CenterX": 193.5 + }, + { + "PageNumber": 1, + "Top": 397, + "Left": 139, + "Width": 124, + "Height": 10, + "Text": "violently frees himself and takes a", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 139, + "Width": 64, + "Height": 10, + "Text": "defensive stance.", + "Confidence": null, + "CenterX": 171 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 275, + "Width": 125, + "Height": 10, + "Text": "Pull foe over, he breaks free. He is", + "Confidence": null, + "CenterX": 337.5 + }, + { + "PageNumber": 1, + "Top": 397, + "Left": 275, + "Width": 145, + "Height": 10, + "Text": "having trouble recovering. Your heart is", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 275, + "Width": 29, + "Height": 10, + "Text": "broken.", + "Confidence": null, + "CenterX": 289.5 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 428, + "Width": 143, + "Height": 10, + "Text": "Grab foe\u0027s waist. Your grip appeared to", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 397, + "Left": 428, + "Width": 120, + "Height": 10, + "Text": "be strong, but now it is losing its", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 428, + "Width": 132, + "Height": 10, + "Text": "advantage. Your foe is working free.", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 582, + "Width": 139, + "Height": 10, + "Text": "Painful grip on foe\u0027s hand. You do not", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 397, + "Left": 582, + "Width": 136, + "Height": 10, + "Text": "break anything, but he thinks so. You", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 582, + "Width": 100, + "Height": 10, + "Text": "have initiative for 4 rounds.", + "Confidence": null, + "CenterX": 632 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 736, + "Width": 146, + "Height": 10, + "Text": "You and foe collide. He breaks your grip", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 397, + "Left": 736, + "Width": 153, + "Height": 10, + "Text": "and stumbles away. You bounce back and", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 736, + "Width": 92, + "Height": 10, + "Text": "miss a good opportunity.", + "Confidence": null, + "CenterX": 782 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 261, + "Width": 7, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 264.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 393, + "Width": 28, + "Height": 10, + "Text": "5H \u2013 \u2211", + "Confidence": null, + "CenterX": 407 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 552, + "Width": 23, + "Height": 10, + "Text": "3(-25)", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 705, + "Width": 23, + "Height": 10, + "Text": "3(-30)", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 865, + "Width": 21, + "Height": 10, + "Text": "2\u2211\u220F", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 461, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 444, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "You get in close and grab at foe\u0027s", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 139, + "Width": 123, + "Height": 10, + "Text": "hair. He is daunted and steps back", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 139, + "Width": 113, + "Height": 10, + "Text": "to escape your reach.", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 444, + "Left": 275, + "Width": 147, + "Height": 10, + "Text": "Grip to foe\u0027s garments. They rip and you", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 275, + "Width": 142, + "Height": 10, + "Text": "lose a hopeful hold. Foe is carried back", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 275, + "Width": 69, + "Height": 10, + "Text": "by his break-away.", + "Confidence": null, + "CenterX": 309.5 + }, + { + "PageNumber": 1, + "Top": 444, + "Left": 428, + "Width": 141, + "Height": 10, + "Text": "Grapple foe\u0027s leg and try to lift it up off", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 428, + "Width": 135, + "Height": 10, + "Text": "the ground. Foe slips away, but is off", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 428, + "Width": 93, + "Height": 10, + "Text": "balance while recovering.", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 444, + "Left": 582, + "Width": 146, + "Height": 10, + "Text": "Catch foe\u0027s waist garments and pull him", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 582, + "Width": 138, + "Height": 10, + "Text": "in. He is in trouble. He seeks to strike", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 582, + "Width": 115, + "Height": 10, + "Text": "your hand and break your hold.", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 444, + "Left": 736, + "Width": 144, + "Height": 10, + "Text": "Grip to shield arm. Foe drops his shield", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 455, + "Left": 736, + "Width": 125, + "Height": 10, + "Text": "as he wails in pain. You try to stay", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 465, + "Left": 736, + "Width": 31, + "Height": 10, + "Text": "serious.", + "Confidence": null, + "CenterX": 751.5 + }, + { + "PageNumber": 1, + "Top": 485, + "Left": 243, + "Width": 25, + "Height": 10, + "Text": "\u03C0(-20)", + "Confidence": null, + "CenterX": 255.5 + }, + { + "PageNumber": 1, + "Top": 485, + "Left": 389, + "Width": 33, + "Height": 10, + "Text": "\u002B7H \u2013 \u2211", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 485, + "Left": 558, + "Width": 16, + "Height": 10, + "Text": "\u2211\u220F", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 485, + "Left": 705, + "Width": 23, + "Height": 10, + "Text": "3(-50)", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 485, + "Left": 840, + "Width": 45, + "Height": 10, + "Text": "\u002B5H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 139, + "Width": 127, + "Height": 10, + "Text": "Foe spins away and comes back to", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 139, + "Width": 101, + "Height": 10, + "Text": "face you. He is unbalanced.", + "Confidence": null, + "CenterX": 189.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 275, + "Width": 141, + "Height": 10, + "Text": "Foe spins out of your grasp. However,", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 275, + "Width": 107, + "Height": 10, + "Text": "spin nullifies his conterattack.", + "Confidence": null, + "CenterX": 328.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 428, + "Width": 113, + "Height": 10, + "Text": "Short fingers render thigh hold", + "Confidence": null, + "CenterX": 484.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 428, + "Width": 115, + "Height": 10, + "Text": "ineffectual. Try lower next time.", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 582, + "Width": 129, + "Height": 10, + "Text": "Grip foe\u0027s side and shake him like a", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 582, + "Width": 135, + "Height": 10, + "Text": "rattle. He is disoriented, but gets free.", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 736, + "Width": 145, + "Height": 10, + "Text": "Grasp around foe\u0027s leg proves effective.", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 736, + "Width": 120, + "Height": 10, + "Text": "Foe is unbalanced for a moment.", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 235, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 406, + "Width": 16, + "Height": 10, + "Text": "\u2211\u03C0", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 532, + "Width": 43, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 553.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 690, + "Width": 37, + "Height": 10, + "Text": "\u002B6H \u2013 3\u2211", + "Confidence": null, + "CenterX": 708.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 837, + "Width": 48, + "Height": 10, + "Text": "\u2211\u220F \u2013 3(-25)", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 564, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 139, + "Width": 113, + "Height": 10, + "Text": "Grip to arm gives foe a bruised", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 139, + "Width": 97, + "Height": 10, + "Text": "bicep. Foe shakes free and", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 139, + "Width": 92, + "Height": 10, + "Text": "prepares for your assault.", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 275, + "Width": 131, + "Height": 10, + "Text": "Slipping grasp around foe\u0027s waist is", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 275, + "Width": 149, + "Height": 10, + "Text": "weak. He breaks your grip and stumbles", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 275, + "Width": 61, + "Height": 10, + "Text": "out of your way.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 428, + "Width": 138, + "Height": 10, + "Text": "Grab foe around waist. Just when you", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 428, + "Width": 128, + "Height": 10, + "Text": "think your grip is iron, he begins to", + "Confidence": null, + "CenterX": 492 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 428, + "Width": 123, + "Height": 10, + "Text": "break free. You might still prevail.", + "Confidence": null, + "CenterX": 489.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 582, + "Width": 148, + "Height": 10, + "Text": "Clumsy bear hug around foe. Foe can do", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 582, + "Width": 148, + "Height": 10, + "Text": "little to escape for the moment. Both his", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 582, + "Width": 63, + "Height": 10, + "Text": "arms are pinned.", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 736, + "Width": 140, + "Height": 10, + "Text": "You find yourself on foe\u0027s shield side.", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 558, + "Left": 736, + "Width": 125, + "Height": 10, + "Text": "If he has a shield, you are stymied.", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 222, + "Width": 46, + "Height": 10, + "Text": "\u002B3H \u2013 \u03C0(-20", + "Confidence": null, + "CenterX": 245 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 407, + "Width": 14, + "Height": 10, + "Text": "2\u2211", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 527, + "Width": 47, + "Height": 10, + "Text": "\u002B3H \u2013 3(-50)", + "Confidence": null, + "CenterX": 550.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 681, + "Width": 46, + "Height": 10, + "Text": "2\u220F \u2013 \u03C0(-20)", + "Confidence": null, + "CenterX": 704 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 796, + "Width": 88, + "Height": 10, + "Text": "w/o shield: \u002B7H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 622, + "Left": 101, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 109.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 139, + "Width": 113, + "Height": 10, + "Text": "Strike foe\u0027s weapon, disarming", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 139, + "Width": 119, + "Height": 10, + "Text": "him. Foe fails to recover weapon.", + "Confidence": null, + "CenterX": 198.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 139, + "Width": 118, + "Height": 10, + "Text": "He has put himself in a bad spot.", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 275, + "Width": 138, + "Height": 10, + "Text": "You grab foe\u0027s weapon arm and make", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 275, + "Width": 132, + "Height": 10, + "Text": "him drop it with a violent shake. Foe", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 275, + "Width": 117, + "Height": 10, + "Text": "strains wrist trying to break free.", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 428, + "Width": 145, + "Height": 10, + "Text": "Grab foe, he falls down and you follow.", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 428, + "Width": 145, + "Height": 10, + "Text": "You knock him prone to stand back up.", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 428, + "Width": 87, + "Height": 10, + "Text": "He is down for 1 round.", + "Confidence": null, + "CenterX": 471.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 582, + "Width": 144, + "Height": 10, + "Text": "Grab leg and flip foe to ground, pinning", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 582, + "Width": 142, + "Height": 10, + "Text": "him. Prone and immobile for 2 rounds,", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 582, + "Width": 71, + "Height": 10, + "Text": "he might surrender.", + "Confidence": null, + "CenterX": 617.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 736, + "Width": 145, + "Height": 10, + "Text": "Grasp foe around neck and bring him to", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 736, + "Width": 151, + "Height": 10, + "Text": "ground. Muscles and tendons tear. Foe is", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 736, + "Width": 131, + "Height": 10, + "Text": "prone and immobilized for 3 rounds.", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 231, + "Width": 37, + "Height": 10, + "Text": "\u002B3H \u2013 2\u2211", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 381, + "Width": 41, + "Height": 10, + "Text": "2\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 401.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 559, + "Width": 17, + "Height": 10, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 710, + "Width": 17, + "Height": 10, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 853, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 869.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 139, + "Width": 117, + "Height": 10, + "Text": "Passing chest strike. Foe eludes", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 139, + "Width": 119, + "Height": 10, + "Text": "grapple, keeps defensive stance.", + "Confidence": null, + "CenterX": 198.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 275, + "Width": 135, + "Height": 10, + "Text": "Grip foe\u0027s neck. Push foe\u0027s chin back", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 275, + "Width": 122, + "Height": 10, + "Text": "steadily. He should act soon, or...", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 428, + "Width": 141, + "Height": 10, + "Text": "Grab foe\u0027s shield arm. If foe has shield", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 428, + "Width": 128, + "Height": 10, + "Text": "you grapple it. Until dropped: (-50)", + "Confidence": null, + "CenterX": 492 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 582, + "Width": 141, + "Height": 10, + "Text": "Foe barely escapes immobilization, but", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 582, + "Width": 109, + "Height": 10, + "Text": "must recover from the ordeal.", + "Confidence": null, + "CenterX": 636.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 736, + "Width": 144, + "Height": 10, + "Text": "You almost disarm foe and trip him. He", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 736, + "Width": 134, + "Height": 10, + "Text": "uses weapon arm to prevent his fall.", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 238, + "Width": 30, + "Height": 10, + "Text": "2\u03C0(-20)", + "Confidence": null, + "CenterX": 253 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 336, + "Width": 87, + "Height": 10, + "Text": "1(-10) \u2013 1(-20) \u2013 1(-30)", + "Confidence": null, + "CenterX": 379.5 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 507, + "Width": 66, + "Height": 10, + "Text": "w/o shield: 3(-40)", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 691, + "Width": 36, + "Height": 10, + "Text": "\u002B7H \u2013 2\u220F", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 833, + "Width": 53, + "Height": 10, + "Text": "2\u2211\u220F \u2013 1(-75)", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 139, + "Width": 126, + "Height": 10, + "Text": "Grab an exposed garment. Uneasy", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 139, + "Width": 97, + "Height": 10, + "Text": "grip impedes foe\u0027s actions.", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 275, + "Width": 148, + "Height": 10, + "Text": "Weak hold around foe\u0027s waist. He brings", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 275, + "Width": 143, + "Height": 10, + "Text": "his knee up and you lose your grip. Foe", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 275, + "Width": 92, + "Height": 10, + "Text": "does not recover quickly.", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 428, + "Width": 131, + "Height": 10, + "Text": "Very strong grip around foe\u0027s waist.", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 428, + "Width": 130, + "Height": 10, + "Text": "Foe is held at a great disadvanatge.", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 428, + "Width": 64, + "Height": 10, + "Text": "He might get free.", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 582, + "Width": 118, + "Height": 10, + "Text": "You grapple foe in a brutal way.", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 582, + "Width": 140, + "Height": 10, + "Text": "Hold proves to be excellent. You have", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 582, + "Width": 61, + "Height": 10, + "Text": "him. What next?", + "Confidence": null, + "CenterX": 612.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 736, + "Width": 141, + "Height": 10, + "Text": "Foe evades your grasp by falling to the", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 736, + "Width": 151, + "Height": 10, + "Text": "ground. A clever ploy. Smile at your good", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 736, + "Width": 30, + "Height": 10, + "Text": "fortune.", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 222, + "Width": 47, + "Height": 10, + "Text": "\u002B5H \u2013 2(-50)", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 375, + "Width": 47, + "Height": 10, + "Text": "\u002B4H \u2013 3(-50)", + "Confidence": null, + "CenterX": 398.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 523, + "Width": 51, + "Height": 10, + "Text": "2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 548.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 679, + "Width": 48, + "Height": 10, + "Text": "\u2211\u220F \u2013 3(-70)", + "Confidence": null, + "CenterX": 703 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 840, + "Width": 45, + "Height": 10, + "Text": "\u002B9H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 139, + "Width": 128, + "Height": 10, + "Text": "Grapple foe\u0027s shield arm. If foe has", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 139, + "Width": 130, + "Height": 10, + "Text": "a shield, you pull it down. If foe has", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 139, + "Width": 123, + "Height": 10, + "Text": "no shield, you immobilize his arm.", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 275, + "Width": 131, + "Height": 10, + "Text": "Entangle foe\u0027s shield arm. If foe has", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 275, + "Width": 132, + "Height": 10, + "Text": "shield, your grip makes it impossible", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 275, + "Width": 122, + "Height": 10, + "Text": "to use. Until shield dropped: (-30)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 796, + "Left": 275, + "Width": 117, + "Height": 10, + "Text": "If no shield his arm is entangled.", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 428, + "Width": 146, + "Height": 10, + "Text": "Entangle foe\u0027s weapon arm. His weapon", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 428, + "Width": 151, + "Height": 10, + "Text": "is held immobile. He cannot use it, but he", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 428, + "Width": 144, + "Height": 10, + "Text": "will not drop it. He tries to knee you to", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 796, + "Left": 428, + "Width": 64, + "Height": 10, + "Text": "escape, this fails.", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 582, + "Width": 141, + "Height": 10, + "Text": "Entangle foe\u0027s weapon arm. Foe hangs", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 582, + "Width": 116, + "Height": 10, + "Text": "onto his weapon, but the arm is", + "Confidence": null, + "CenterX": 640 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 582, + "Width": 145, + "Height": 10, + "Text": "immobilized. You try to make him strike", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 796, + "Left": 582, + "Width": 58, + "Height": 10, + "Text": "himself. It fails.", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 736, + "Width": 137, + "Height": 10, + "Text": "Grab foe\u0027s weapon arm and beat on it,", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 736, + "Width": 154, + "Height": 10, + "Text": "without concern foe the rest of foe. Foe is", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 736, + "Width": 139, + "Height": 10, + "Text": "disarmed. You tear ligaments and pull", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 796, + "Left": 736, + "Width": 32, + "Height": 10, + "Text": "muscles.", + "Confidence": null, + "CenterX": 752 + }, + { + "PageNumber": 1, + "Top": 816, + "Left": 222, + "Width": 47, + "Height": 10, + "Text": "\u002B2H \u2013 4(-50)", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 816, + "Left": 404, + "Width": 18, + "Height": 10, + "Text": "(-40)", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 816, + "Left": 523, + "Width": 51, + "Height": 10, + "Text": "2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 548.5 + }, + { + "PageNumber": 1, + "Top": 816, + "Left": 713, + "Width": 17, + "Height": 10, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 816, + "Left": 842, + "Width": 43, + "Height": 10, + "Text": "3\u2211 \u2013 (-40)", + "Confidence": null, + "CenterX": 863.5 + }, + { + "PageNumber": 1, + "Top": 849, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 139, + "Width": 113, + "Height": 10, + "Text": "Useful grip on foe\u0027s neck. Foe\u0027s", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 139, + "Width": 118, + "Height": 10, + "Text": "face turns red. He cannot breath", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 139, + "Width": 123, + "Height": 10, + "Text": "easily. Slowly he breaks your grip.", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 275, + "Width": 147, + "Height": 10, + "Text": "Grip around foe\u0027s waist unbalances him.", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 275, + "Width": 149, + "Height": 10, + "Text": "You have the initiative. Foe shares much", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 275, + "Width": 67, + "Height": 10, + "Text": "profanity with you.", + "Confidence": null, + "CenterX": 308.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 428, + "Width": 138, + "Height": 10, + "Text": "Brutal grip around foe\u0027s chest, leaves", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 428, + "Width": 137, + "Height": 10, + "Text": "bruises all over him. Your assault has", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 428, + "Width": 91, + "Height": 10, + "Text": "created much confusion.", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 582, + "Width": 123, + "Height": 10, + "Text": "Grab knee and send foe down. He", + "Confidence": null, + "CenterX": 643.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 582, + "Width": 132, + "Height": 10, + "Text": "breaks his fall by breaking his shield", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 582, + "Width": 113, + "Height": 10, + "Text": "arm. He is disarmed and prone.", + "Confidence": null, + "CenterX": 638.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 736, + "Width": 151, + "Height": 10, + "Text": "Entangle both of foe\u0027s arms and pin them", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 736, + "Width": 121, + "Height": 10, + "Text": "to his body. Foe cannot move his", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 736, + "Width": 137, + "Height": 10, + "Text": "arms and he looks ready to surrender.", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 196, + "Width": 74, + "Height": 10, + "Text": "\u002B5H \u2013 2\u2211 \u2013 2(-25)", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 396, + "Width": 25, + "Height": 10, + "Text": "6(-50)", + "Confidence": null, + "CenterX": 408.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 506, + "Width": 68, + "Height": 10, + "Text": "\u002B3H \u2013 3\u2211\u220F \u2013 (-5)", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 655, + "Width": 72, + "Height": 10, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 691 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 859, + "Width": 27, + "Height": 10, + "Text": "10(-75)", + "Confidence": null, + "CenterX": 872.5 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 139, + "Width": 113, + "Height": 10, + "Text": "Grasp foe\u0027s leg, lifting it off the", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 139, + "Width": 117, + "Height": 10, + "Text": "ground for a moment. You have", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 139, + "Width": 92, + "Height": 10, + "Text": "the initiative for 6 rounds.", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 275, + "Width": 139, + "Height": 10, + "Text": "Entangle foe\u0027s leg and send him down.", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 275, + "Width": 115, + "Height": 10, + "Text": "He does not hit hard. He pulls a", + "Confidence": null, + "CenterX": 332.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 275, + "Width": 102, + "Height": 10, + "Text": "muscle in his leg struggling.", + "Confidence": null, + "CenterX": 326 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 428, + "Width": 147, + "Height": 10, + "Text": "Your assault is strong and lucky. As you", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 428, + "Width": 146, + "Height": 10, + "Text": "grapple foe, you stomp his foot. He falls", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 428, + "Width": 101, + "Height": 10, + "Text": "hard, breaking his shoulder.", + "Confidence": null, + "CenterX": 478.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 582, + "Width": 113, + "Height": 10, + "Text": "Tie up both of foe\u0027s arms. He is", + "Confidence": null, + "CenterX": 638.5 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 582, + "Width": 115, + "Height": 10, + "Text": "immobile and cannot fight back", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 582, + "Width": 109, + "Height": 10, + "Text": "effectively. You have him now.", + "Confidence": null, + "CenterX": 636.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 736, + "Width": 146, + "Height": 10, + "Text": "Foe stumbles, with your assistance, and", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 901, + "Left": 736, + "Width": 150, + "Height": 10, + "Text": "falls. His weapon breaks on impact. If foe", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 736, + "Width": 146, + "Height": 10, + "Text": "has no chest armor, he takes a\u0022D\u0022 Krush.", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 231, + "Width": 37, + "Height": 10, + "Text": "\u002B3H \u2013 3\u2211", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 371, + "Width": 51, + "Height": 10, + "Text": "2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 396.5 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 504, + "Width": 69, + "Height": 10, + "Text": "\u002B10H \u2013 6\u2211 \u2013 (-40)", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 678, + "Width": 49, + "Height": 10, + "Text": "\u002B10H \u2013 9\u2211\u220F", + "Confidence": null, + "CenterX": 702.5 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 853, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 869.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 947, + "Left": 139, + "Width": 123, + "Height": 10, + "Text": "Entangle foe\u0027s leg. Foe is knocked", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 139, + "Width": 115, + "Height": 10, + "Text": "down. Foe lands on his weapon", + "Confidence": null, + "CenterX": 196.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 139, + "Width": 109, + "Height": 10, + "Text": "arm. He kicks and breaks free.", + "Confidence": null, + "CenterX": 193.5 + }, + { + "PageNumber": 1, + "Top": 947, + "Left": 275, + "Width": 145, + "Height": 10, + "Text": "Pull foe\u0027s legs together. He goes down,", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 275, + "Width": 139, + "Height": 10, + "Text": "hitting hard and dropping his weapon.", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 275, + "Width": 122, + "Height": 10, + "Text": "He feebly attempts to crawl for it.", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 947, + "Left": 428, + "Width": 138, + "Height": 10, + "Text": "Painfully immobilize weapon arm. Foe", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 428, + "Width": 130, + "Height": 10, + "Text": "cannot surrender quickly enough to", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 428, + "Width": 103, + "Height": 10, + "Text": "avoid the damage and pain.", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 947, + "Left": 582, + "Width": 138, + "Height": 10, + "Text": "Grapple foe\u0027s legs and send him over.", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 582, + "Width": 145, + "Height": 10, + "Text": "He hits his head in the fall. You get little", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 582, + "Width": 73, + "Height": 10, + "Text": "resistance after that.", + "Confidence": null, + "CenterX": 618.5 + }, + { + "PageNumber": 1, + "Top": 947, + "Left": 736, + "Width": 141, + "Height": 10, + "Text": "Wrap up foe\u0027s legs. Foe tumbles to the", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 736, + "Width": 150, + "Height": 10, + "Text": "ground like a ragdoll breaking both arms", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 736, + "Width": 121, + "Height": 10, + "Text": "and an ankle. Foe is knocked out.", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 223, + "Width": 45, + "Height": 10, + "Text": "\u002B4H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 369, + "Width": 53, + "Height": 10, + "Text": "2\u2211\u220F \u2013 4(-25)", + "Confidence": null, + "CenterX": 395.5 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 491, + "Width": 84, + "Height": 10, + "Text": "\u002B15H \u2013 4\u2211\u220F \u2013 8(-95)", + "Confidence": null, + "CenterX": 533 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 673, + "Width": 54, + "Height": 10, + "Text": "\u002B10H \u2013 30\u2211\u220F", + "Confidence": null, + "CenterX": 700 + }, + { + "PageNumber": 1, + "Top": 987, + "Left": 839, + "Width": 47, + "Height": 10, + "Text": "\u002B20H \u2013 (-95)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 91, + "Width": 39, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 110.5 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 139, + "Width": 129, + "Height": 10, + "Text": "Ride foe down and immobilize him.", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "He can do nothing for 12 rounds.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 139, + "Width": 122, + "Height": 10, + "Text": "You are prone also, while holding", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 139, + "Width": 38, + "Height": 10, + "Text": "him down.", + "Confidence": null, + "CenterX": 158 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 275, + "Width": 123, + "Height": 10, + "Text": "Entangle foe\u0027s arm and flip him to", + "Confidence": null, + "CenterX": 336.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 275, + "Width": 112, + "Height": 10, + "Text": "ground, fracturing his leg. You", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 275, + "Width": 146, + "Height": 10, + "Text": "immobilize him completely. He is prone,", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 275, + "Width": 108, + "Height": 10, + "Text": "face down and still conscious.", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 428, + "Width": 149, + "Height": 10, + "Text": "Entangle foe\u0027s legs. Grapple weapon arm", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 428, + "Width": 147, + "Height": 10, + "Text": "and break it on an available surface. You", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 428, + "Width": 132, + "Height": 10, + "Text": "send foe to the ground. He falls very", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 428, + "Width": 88, + "Height": 10, + "Text": "hard and is knocked out.", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 582, + "Width": 139, + "Height": 10, + "Text": "Crushing grip around foe\u0027s neck. If no", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 582, + "Width": 141, + "Height": 10, + "Text": "neck armor, foe dies in 6 rounds from", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 582, + "Width": 126, + "Height": 10, + "Text": "your mortal grip. Foe is disarmed.", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 736, + "Width": 152, + "Height": 10, + "Text": "Attack results in strangling hold. Foe flails", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 736, + "Width": 153, + "Height": 10, + "Text": "legs in desperation. Foe is unable to break", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 736, + "Width": 142, + "Height": 10, + "Text": "free and dies after 9 rounds of helpless", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 736, + "Width": 63, + "Height": 10, + "Text": "struggling. Grim.", + "Confidence": null, + "CenterX": 767.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 404, + "Width": 18, + "Height": 10, + "Text": "(-40)", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 492, + "Width": 81, + "Height": 10, + "Text": "\u002B20H \u2013 10\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 532.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 643, + "Width": 84, + "Height": 10, + "Text": "with neck armor: 3\u2211\u220F", + "Confidence": null, + "CenterX": 685 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 853, + "Width": 33, + "Height": 10, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 869.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 97, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 109.5 + }, + { + "PageNumber": 1, + "Top": 1071, + "Left": 139, + "Width": 107, + "Height": 10, + "Text": "Foe\u0027s legs are entangled long", + "Confidence": null, + "CenterX": 192.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 139, + "Width": 111, + "Height": 10, + "Text": "enough to make him fall. He is", + "Confidence": null, + "CenterX": 194.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 139, + "Width": 95, + "Height": 10, + "Text": "knocked out for 5 rounds.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1071, + "Left": 275, + "Width": 140, + "Height": 10, + "Text": "Grip foe\u0027s neck in a vicious hold. If foe", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 275, + "Width": 140, + "Height": 10, + "Text": "cannot break your grip in 4 rounds, he", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 275, + "Width": 143, + "Height": 10, + "Text": "will begin to pass out from suffocation.", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1071, + "Left": 428, + "Width": 147, + "Height": 10, + "Text": "Grip foe\u0027s head and jerk it around. If foe", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 428, + "Width": 102, + "Height": 10, + "Text": "has no neck armor, he dies.", + "Confidence": null, + "CenterX": 479 + }, + { + "PageNumber": 1, + "Top": 1071, + "Left": 582, + "Width": 148, + "Height": 10, + "Text": "Grapple foe\u0027s head. His skull is fractured", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 582, + "Width": 149, + "Height": 10, + "Text": "during this assault. If he has no helm, he", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 582, + "Width": 88, + "Height": 10, + "Text": "is in a coma for 30 days.", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1071, + "Left": 736, + "Width": 142, + "Height": 10, + "Text": "Crush foe\u0027s windpipe and pull the head", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 736, + "Width": 114, + "Height": 10, + "Text": "from his body. You are mighty.", + "Confidence": null, + "CenterX": 793 + }, + { + "PageNumber": 1, + "Top": 1112, + "Left": 225, + "Width": 44, + "Height": 10, + "Text": "\u002B9H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 247 + }, + { + "PageNumber": 1, + "Top": 1112, + "Left": 357, + "Width": 65, + "Height": 10, + "Text": "\u002B10H \u2013 \u2211 \u2013 (-40)", + "Confidence": null, + "CenterX": 389.5 + }, + { + "PageNumber": 1, + "Top": 1112, + "Left": 445, + "Width": 129, + "Height": 10, + "Text": "no neck armor: \u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 509.5 + }, + { + "PageNumber": 1, + "Top": 1112, + "Left": 637, + "Width": 91, + "Height": 10, + "Text": "with helmet: \u002B3H \u2013 9\u2211\u220F", + "Confidence": null, + "CenterX": 682.5 + }, + { + "PageNumber": 1, + "Top": 1112, + "Left": 862, + "Width": 24, + "Height": 10, + "Text": "1(\u002B25)", + "Confidence": null, + "CenterX": 874 + }, + { + "PageNumber": 1, + "Top": 48, + "Left": 290, + "Width": 395, + "Height": 14, + "Text": "4.2 grapple critical strike table", + "Confidence": null, + "CenterX": 487.5 + }, + { + "PageNumber": 1, + "Top": 82, + "Left": 196, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 339, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 492, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 644, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 806, + "Width": 12, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 812 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/grapple/pages/page-001.png new file mode 100644 index 0000000..e1c229d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/grapple/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/grapple/parsed-cells.json new file mode 100644 index 0000000..9de7ce0 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/grapple/parsed-cells.json @@ -0,0 +1,6696 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Foe escapes like the wind.", + "\u002B0H" + ], + "BaseLines": [ + "Foe escapes like the wind.", + "\u002B0H" + ], + "RawCellText": "Foe escapes like the wind.\n\u002B0H", + "DescriptionText": "Foe escapes like the wind.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 107, + "Width": 130, + "Height": 30 + }, + "SourceImagePath": "grapple/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 428, + "BoundsWidth": 520, + "BoundsHeight": 120, + "CropLeft": 508, + "CropTop": 396, + "CropWidth": 616, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Your attack falls short.", + "\u002B0H" + ], + "BaseLines": [ + "Your attack falls short.", + "\u002B0H" + ], + "RawCellText": "Your attack falls short.\n\u002B0H", + "DescriptionText": "Your attack falls short.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 107, + "Width": 147, + "Height": 30 + }, + "SourceImagePath": "grapple/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 428, + "BoundsWidth": 588, + "BoundsHeight": 120, + "CropLeft": 1052, + "CropTop": 396, + "CropWidth": 684, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Your fingernails deal a vicious wound.", + "\u002B1H" + ], + "BaseLines": [ + "Your fingernails deal a vicious wound.", + "\u002B1H" + ], + "RawCellText": "Your fingernails deal a vicious wound.\n\u002B1H", + "DescriptionText": "Your fingernails deal a vicious wound.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 107, + "Width": 146, + "Height": 30 + }, + "SourceImagePath": "grapple/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 428, + "BoundsWidth": 584, + "BoundsHeight": 120, + "CropLeft": 1664, + "CropTop": 396, + "CropWidth": 680, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "A little elbow before you lose your grip.", + "\u002B2H" + ], + "BaseLines": [ + "A little elbow before you lose your grip.", + "\u002B2H" + ], + "RawCellText": "A little elbow before you lose your grip.\n\u002B2H", + "DescriptionText": "A little elbow before you lose your grip.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 107, + "Width": 146, + "Height": 30 + }, + "SourceImagePath": "grapple/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 428, + "BoundsWidth": 584, + "BoundsHeight": 120, + "CropLeft": 2280, + "CropTop": 396, + "CropWidth": 680, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "You grip strand of foe\u0027s hair. It breaks.", + "\u002B3H" + ], + "BaseLines": [ + "You grip strand of foe\u0027s hair. It breaks.", + "\u002B3H" + ], + "RawCellText": "You grip strand of foe\u0027s hair. It breaks.\n\u002B3H", + "DescriptionText": "You grip strand of foe\u0027s hair. It breaks.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 107, + "Width": 150, + "Height": 30 + }, + "SourceImagePath": "grapple/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 428, + "BoundsWidth": 600, + "BoundsHeight": 120, + "CropLeft": 2896, + "CropTop": 396, + "CropWidth": 696, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Grab foe\u0027s arm. Oops. Try again.", + "\u002B0H" + ], + "BaseLines": [ + "Grab foe\u0027s arm. Oops. Try again.", + "\u002B0H" + ], + "RawCellText": "Grab foe\u0027s arm. Oops. Try again.\n\u002B0H", + "DescriptionText": "Grab foe\u0027s arm. Oops. Try again.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 144, + "Width": 130, + "Height": 29 + }, + "SourceImagePath": "grapple/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 576, + "BoundsWidth": 520, + "BoundsHeight": 116, + "CropLeft": 508, + "CropTop": 544, + "CropWidth": 616, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Your grip fails.", + "\u002B2H" + ], + "BaseLines": [ + "Your grip fails.", + "\u002B2H" + ], + "RawCellText": "Your grip fails.\n\u002B2H", + "DescriptionText": "Your grip fails.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 144, + "Width": 147, + "Height": 29 + }, + "SourceImagePath": "grapple/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 576, + "BoundsWidth": 588, + "BoundsHeight": 116, + "CropLeft": 1052, + "CropTop": 544, + "CropWidth": 684, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Foe grabs, misses. You have initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Foe grabs, misses. You have initiative.", + "\u002B3H" + ], + "RawCellText": "Foe grabs, misses. You have initiative.\n\u002B3H", + "DescriptionText": "Foe grabs, misses. You have initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 144, + "Width": 146, + "Height": 29 + }, + "SourceImagePath": "grapple/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 576, + "BoundsWidth": 584, + "BoundsHeight": 116, + "CropLeft": 1664, + "CropTop": 544, + "CropWidth": 680, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "This was not a special moment.", + "\u002B4H" + ], + "BaseLines": [ + "This was not a special moment.", + "\u002B4H" + ], + "RawCellText": "This was not a special moment.\n\u002B4H", + "DescriptionText": "This was not a special moment.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 144, + "Width": 146, + "Height": 29 + }, + "SourceImagePath": "grapple/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 576, + "BoundsWidth": 584, + "BoundsHeight": 116, + "CropLeft": 2280, + "CropTop": 544, + "CropWidth": 680, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "You have initiative next round.", + "\u002B5H" + ], + "BaseLines": [ + "You have initiative next round.", + "\u002B5H" + ], + "RawCellText": "You have initiative next round.\n\u002B5H", + "DescriptionText": "You have initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 144, + "Width": 151, + "Height": 29 + }, + "SourceImagePath": "grapple/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 576, + "BoundsWidth": 604, + "BoundsHeight": 116, + "CropLeft": 2892, + "CropTop": 544, + "CropWidth": 700, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "You impede foe\u0027s combat stance.", + "You have the initiative.", + "\u002B0H" + ], + "BaseLines": [ + "You impede foe\u0027s combat stance.", + "You have the initiative.", + "\u002B0H" + ], + "RawCellText": "You impede foe\u0027s combat stance.\nYou have the initiative.\n\u002B0H", + "DescriptionText": "You impede foe\u0027s combat stance. You have the initiative.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 180, + "Width": 130, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 720, + "BoundsWidth": 520, + "BoundsHeight": 160, + "CropLeft": 508, + "CropTop": 688, + "CropWidth": 616, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe collides with your attack before you", + "get a grip. Small bruise.", + "\u002B2H" + ], + "BaseLines": [ + "Foe collides with your attack before you", + "get a grip. Small bruise.", + "\u002B2H" + ], + "RawCellText": "Foe collides with your attack before you\nget a grip. Small bruise.\n\u002B2H", + "DescriptionText": "Foe collides with your attack before you get a grip. Small bruise.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 180, + "Width": 147, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 720, + "BoundsWidth": 588, + "BoundsHeight": 160, + "CropLeft": 1052, + "CropTop": 688, + "CropWidth": 684, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "You cannot get a good grip, foe hurts", + "himself evading. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "You cannot get a good grip, foe hurts", + "himself evading. You have initiative.", + "\u002B4H" + ], + "RawCellText": "You cannot get a good grip, foe hurts\nhimself evading. You have initiative.\n\u002B4H", + "DescriptionText": "You cannot get a good grip, foe hurts himself evading. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 180, + "Width": 146, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 720, + "BoundsWidth": 584, + "BoundsHeight": 160, + "CropLeft": 1664, + "CropTop": 688, + "CropWidth": 680, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Grab foe\u0027s head. If foe has helm, you", + "twist it. Otherwise, you gain initiative.", + "with helm: \u2211" + ], + "BaseLines": [ + "Grab foe\u0027s head. If foe has helm, you", + "twist it. Otherwise, you gain initiative." + ], + "RawCellText": "Grab foe\u0027s head. If foe has helm, you\ntwist it. Otherwise, you gain initiative.", + "DescriptionText": "Grab foe\u0027s head. If foe has helm, you twist it. Otherwise, you gain initiative.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helm", + "ConditionText": "with helm", + "RawText": "with helm: \u2211", + "DescriptionText": "", + "RawAffixText": "\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 180, + "Width": 147, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 720, + "BoundsWidth": 588, + "BoundsHeight": 160, + "CropLeft": 2280, + "CropTop": 688, + "CropWidth": 684, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Lame attack, but foe is concerned. He", + "moves back.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Lame attack, but foe is concerned. He", + "moves back.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Lame attack, but foe is concerned. He\nmoves back.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Lame attack, but foe is concerned. He moves back.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 180, + "Width": 149, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 720, + "BoundsWidth": 596, + "BoundsHeight": 160, + "CropLeft": 2896, + "CropTop": 688, + "CropWidth": 692, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe breaks free of a weak grip.", + "You have the initiative next round.", + "\u002B0H" + ], + "BaseLines": [ + "Foe breaks free of a weak grip.", + "You have the initiative next round.", + "\u002B0H" + ], + "RawCellText": "Foe breaks free of a weak grip.\nYou have the initiative next round.\n\u002B0H", + "DescriptionText": "Foe breaks free of a weak grip. You have the initiative next round.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 226, + "Width": 130, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 904, + "BoundsWidth": 520, + "BoundsHeight": 160, + "CropLeft": 508, + "CropTop": 872, + "CropWidth": 616, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Grab foe and give him a weak punch. He", + "thinks you are dangerous.", + "\u03C0" + ], + "BaseLines": [ + "Grab foe and give him a weak punch. He", + "thinks you are dangerous.", + "\u03C0" + ], + "RawCellText": "Grab foe and give him a weak punch. He\nthinks you are dangerous.\n\u03C0", + "DescriptionText": "Grab foe and give him a weak punch. He thinks you are dangerous.", + "RawAffixText": "\u03C0", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 226, + "Width": 149, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 904, + "BoundsWidth": 596, + "BoundsHeight": 160, + "CropLeft": 1052, + "CropTop": 872, + "CropWidth": 692, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Foe recovers, continues his defense", + "by sweeping his weapon at your feet.", + "\u03C0" + ], + "BaseLines": [ + "Foe recovers, continues his defense", + "by sweeping his weapon at your feet.", + "\u03C0" + ], + "RawCellText": "Foe recovers, continues his defense\nby sweeping his weapon at your feet.\n\u03C0", + "DescriptionText": "Foe recovers, continues his defense by sweeping his weapon at your feet.", + "RawAffixText": "\u03C0", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 226, + "Width": 146, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 904, + "BoundsWidth": 584, + "BoundsHeight": 160, + "CropLeft": 1664, + "CropTop": 872, + "CropWidth": 680, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Push foe, unbalancing him. You have", + "initiative for 2 rounds.", + "\u2014" + ], + "BaseLines": [ + "Push foe, unbalancing him. You have", + "initiative for 2 rounds.", + "\u2014" + ], + "RawCellText": "Push foe, unbalancing him. You have\ninitiative for 2 rounds.\n\u2014", + "DescriptionText": "Push foe, unbalancing him. You have initiative for 2 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 226, + "Width": 144, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 904, + "BoundsWidth": 576, + "BoundsHeight": 160, + "CropLeft": 2280, + "CropTop": 872, + "CropWidth": 672, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Strong passing blow near foe\u0027s head.", + "His violent evasion is not productive.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Strong passing blow near foe\u0027s head.", + "His violent evasion is not productive.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Strong passing blow near foe\u0027s head.\nHis violent evasion is not productive.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Strong passing blow near foe\u0027s head. His violent evasion is not productive.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 226, + "Width": 150, + "Height": 40 + }, + "SourceImagePath": "grapple/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 904, + "BoundsWidth": 600, + "BoundsHeight": 160, + "CropLeft": 2896, + "CropTop": 872, + "CropWidth": 696, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Almost get a grip on foe\u0027s arm. He", + "avoids his mistake. You gain the", + "initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Almost get a grip on foe\u0027s arm. He", + "avoids his mistake. You gain the", + "initiative next round.", + "\u002B3H" + ], + "RawCellText": "Almost get a grip on foe\u0027s arm. He\navoids his mistake. You gain the\ninitiative next round.\n\u002B3H", + "DescriptionText": "Almost get a grip on foe\u0027s arm. He avoids his mistake. You gain the initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 273, + "Width": 130, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 1092, + "BoundsWidth": 520, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 1060, + "CropWidth": 616, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "You grip foe\u0027s shield arm. Foe\u0027s strike", + "toward your head makes you let go of", + "him. He keeps a distance.", + "\u03C0(-20)" + ], + "BaseLines": [ + "You grip foe\u0027s shield arm. Foe\u0027s strike", + "toward your head makes you let go of", + "him. He keeps a distance.", + "\u03C0(-20)" + ], + "RawCellText": "You grip foe\u0027s shield arm. Foe\u0027s strike\ntoward your head makes you let go of\nhim. He keeps a distance.\n\u03C0(-20)", + "DescriptionText": "You grip foe\u0027s shield arm. Foe\u0027s strike toward your head makes you let go of him. He keeps a distance.", + "RawAffixText": "\u03C0(-20)", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 273, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 1092, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 1060, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Collide with foe. You push him away", + "and he stumbles back 5 feet. It went", + "better than you could have hoped.", + "\u002B2H \u2013 \u2211" + ], + "BaseLines": [ + "Collide with foe. You push him away", + "and he stumbles back 5 feet. It went", + "better than you could have hoped.", + "\u002B2H \u2013 \u2211" + ], + "RawCellText": "Collide with foe. You push him away\nand he stumbles back 5 feet. It went\nbetter than you could have hoped.\n\u002B2H \u2013 \u2211", + "DescriptionText": "Collide with foe. You push him away and he stumbles back 5 feet. It went better than you could have hoped.", + "RawAffixText": "\u002B2H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 273, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 1092, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 1060, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Hard, but poorly placed. Foe bounces", + "back out of your grip. He looks like he", + "does not recognize you.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Hard, but poorly placed. Foe bounces", + "back out of your grip. He looks like he", + "does not recognize you.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Hard, but poorly placed. Foe bounces\nback out of your grip. He looks like he\ndoes not recognize you.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Hard, but poorly placed. Foe bounces back out of your grip. He looks like he does not recognize you.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 273, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1092, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 1060, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Uncoordinated attack and a little luck,", + "allows foe to escape your grasp. You have", + "initiative for 2 rounds.", + "\u2211" + ], + "BaseLines": [ + "Uncoordinated attack and a little luck,", + "allows foe to escape your grasp. You have", + "initiative for 2 rounds.", + "\u2211" + ], + "RawCellText": "Uncoordinated attack and a little luck,\nallows foe to escape your grasp. You have\ninitiative for 2 rounds.\n\u2211", + "DescriptionText": "Uncoordinated attack and a little luck, allows foe to escape your grasp. You have initiative for 2 rounds.", + "RawAffixText": "\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 273, + "Width": 154, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1092, + "BoundsWidth": 616, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 1060, + "CropWidth": 712, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Grip to lower back. Foe wards off", + "your attack and prepares for your", + "next move.", + "\u03C0" + ], + "BaseLines": [ + "Grip to lower back. Foe wards off", + "your attack and prepares for your", + "next move.", + "\u03C0" + ], + "RawCellText": "Grip to lower back. Foe wards off\nyour attack and prepares for your\nnext move.\n\u03C0", + "DescriptionText": "Grip to lower back. Foe wards off your attack and prepares for your next move.", + "RawAffixText": "\u03C0", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 330, + "Width": 129, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 1320, + "BoundsWidth": 516, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 1288, + "CropWidth": 612, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Grip fails, but bash does not. You", + "unbalance your foe. You have the", + "initiative.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Grip fails, but bash does not. You", + "unbalance your foe. You have the", + "initiative.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Grip fails, but bash does not. You\nunbalance your foe. You have the\ninitiative.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Grip fails, but bash does not. You unbalance your foe. You have the initiative.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 330, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 1320, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 1288, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Your attack is almost comical as you", + "seek any little grip you can get. All the", + "tiny tugs finally have an effect on foe.", + "\u2211\u03C0" + ], + "BaseLines": [ + "Your attack is almost comical as you", + "seek any little grip you can get. All the", + "tiny tugs finally have an effect on foe.", + "\u2211\u03C0" + ], + "RawCellText": "Your attack is almost comical as you\nseek any little grip you can get. All the\ntiny tugs finally have an effect on foe.\n\u2211\u03C0", + "DescriptionText": "Your attack is almost comical as you seek any little grip you can get. All the tiny tugs finally have an effect on foe.", + "RawAffixText": "\u2211\u03C0", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 330, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 1320, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 1288, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s shield arm. If foe has no", + "shield, you immobilize arm for 6", + "rounds.", + "with shield: \u002B3H" + ], + "BaseLines": [ + "Strike to foe\u0027s shield arm. If foe has no", + "shield, you immobilize arm for 6", + "rounds." + ], + "RawCellText": "Strike to foe\u0027s shield arm. If foe has no\nshield, you immobilize arm for 6\nrounds.", + "DescriptionText": "Strike to foe\u0027s shield arm. If foe has no shield, you immobilize arm for 6 rounds.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B3H", + "DescriptionText": "", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 330, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1320, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 1288, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Attack to upper leg. Foe spins to break", + "free. He is disoriented badly. It takes a", + "moment for him to see you.", + "\u2211\u220F" + ], + "BaseLines": [ + "Attack to upper leg. Foe spins to break", + "free. He is disoriented badly. It takes a", + "moment for him to see you.", + "\u2211\u220F" + ], + "RawCellText": "Attack to upper leg. Foe spins to break\nfree. He is disoriented badly. It takes a\nmoment for him to see you.\n\u2211\u220F", + "DescriptionText": "Attack to upper leg. Foe spins to break free. He is disoriented badly. It takes a moment for him to see you.", + "RawAffixText": "\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 330, + "Width": 149, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1320, + "BoundsWidth": 596, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 1288, + "CropWidth": 692, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Hinder foe\u0027s weapon arm. Foe", + "violently frees himself and takes a", + "defensive stance.", + "\u03C0" + ], + "BaseLines": [ + "Hinder foe\u0027s weapon arm. Foe", + "violently frees himself and takes a", + "defensive stance.", + "\u03C0" + ], + "RawCellText": "Hinder foe\u0027s weapon arm. Foe\nviolently frees himself and takes a\ndefensive stance.\n\u03C0", + "DescriptionText": "Hinder foe\u0027s weapon arm. Foe violently frees himself and takes a defensive stance.", + "RawAffixText": "\u03C0", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 387, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 1548, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 508, + "CropTop": 1516, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Pull foe over, he breaks free. He is", + "having trouble recovering. Your heart is", + "broken.", + "5H \u2013 \u2211" + ], + "BaseLines": [ + "Pull foe over, he breaks free. He is", + "having trouble recovering. Your heart is", + "broken.", + "5H \u2013 \u2211" + ], + "RawCellText": "Pull foe over, he breaks free. He is\nhaving trouble recovering. Your heart is\nbroken.\n5H \u2013 \u2211", + "DescriptionText": "Pull foe over, he breaks free. He is having trouble recovering. Your heart is broken.", + "RawAffixText": "5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 387, + "Width": 146, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 1548, + "BoundsWidth": 584, + "BoundsHeight": 200, + "CropLeft": 1052, + "CropTop": 1516, + "CropWidth": 680, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Grab foe\u0027s waist. Your grip appeared to", + "be strong, but now it is losing its", + "advantage. Your foe is working free.", + "3(-25)" + ], + "BaseLines": [ + "Grab foe\u0027s waist. Your grip appeared to", + "be strong, but now it is losing its", + "advantage. Your foe is working free.", + "3(-25)" + ], + "RawCellText": "Grab foe\u0027s waist. Your grip appeared to\nbe strong, but now it is losing its\nadvantage. Your foe is working free.\n3(-25)", + "DescriptionText": "Grab foe\u0027s waist. Your grip appeared to be strong, but now it is losing its advantage. Your foe is working free.", + "RawAffixText": "3(-25)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 387, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 1548, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1664, + "CropTop": 1516, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Painful grip on foe\u0027s hand. You do not", + "break anything, but he thinks so. You", + "have initiative for 4 rounds.", + "3(-30)" + ], + "BaseLines": [ + "Painful grip on foe\u0027s hand. You do not", + "break anything, but he thinks so. You", + "have initiative for 4 rounds.", + "3(-30)" + ], + "RawCellText": "Painful grip on foe\u0027s hand. You do not\nbreak anything, but he thinks so. You\nhave initiative for 4 rounds.\n3(-30)", + "DescriptionText": "Painful grip on foe\u0027s hand. You do not break anything, but he thinks so. You have initiative for 4 rounds.", + "RawAffixText": "3(-30)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 387, + "Width": 146, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1548, + "BoundsWidth": 584, + "BoundsHeight": 200, + "CropLeft": 2280, + "CropTop": 1516, + "CropWidth": 680, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "You and foe collide. He breaks your grip", + "and stumbles away. You bounce back and", + "miss a good opportunity.", + "2\u2211\u220F" + ], + "BaseLines": [ + "You and foe collide. He breaks your grip", + "and stumbles away. You bounce back and", + "miss a good opportunity.", + "2\u2211\u220F" + ], + "RawCellText": "You and foe collide. He breaks your grip\nand stumbles away. You bounce back and\nmiss a good opportunity.\n2\u2211\u220F", + "DescriptionText": "You and foe collide. He breaks your grip and stumbles away. You bounce back and miss a good opportunity.", + "RawAffixText": "2\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 387, + "Width": 153, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1548, + "BoundsWidth": 612, + "BoundsHeight": 200, + "CropLeft": 2896, + "CropTop": 1516, + "CropWidth": 708, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "You get in close and grab at foe\u0027s", + "hair. He is daunted and steps back", + "to escape your reach.", + "\u03C0(-20)" + ], + "BaseLines": [ + "You get in close and grab at foe\u0027s", + "hair. He is daunted and steps back", + "to escape your reach.", + "\u03C0(-20)" + ], + "RawCellText": "You get in close and grab at foe\u0027s\nhair. He is daunted and steps back\nto escape your reach.\n\u03C0(-20)", + "DescriptionText": "You get in close and grab at foe\u0027s hair. He is daunted and steps back to escape your reach.", + "RawAffixText": "\u03C0(-20)", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 444, + "Width": 129, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 1776, + "BoundsWidth": 516, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 1744, + "CropWidth": 612, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Grip to foe\u0027s garments. They rip and you", + "lose a hopeful hold. Foe is carried back", + "by his break-away.", + "\u002B7H \u2013 \u2211" + ], + "BaseLines": [ + "Grip to foe\u0027s garments. They rip and you", + "lose a hopeful hold. Foe is carried back", + "by his break-away.", + "\u002B7H \u2013 \u2211" + ], + "RawCellText": "Grip to foe\u0027s garments. They rip and you\nlose a hopeful hold. Foe is carried back\nby his break-away.\n\u002B7H \u2013 \u2211", + "DescriptionText": "Grip to foe\u0027s garments. They rip and you lose a hopeful hold. Foe is carried back by his break-away.", + "RawAffixText": "\u002B7H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 444, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 1776, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 1744, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Grapple foe\u0027s leg and try to lift it up off", + "the ground. Foe slips away, but is off", + "balance while recovering.", + "\u2211\u220F" + ], + "BaseLines": [ + "Grapple foe\u0027s leg and try to lift it up off", + "the ground. Foe slips away, but is off", + "balance while recovering.", + "\u2211\u220F" + ], + "RawCellText": "Grapple foe\u0027s leg and try to lift it up off\nthe ground. Foe slips away, but is off\nbalance while recovering.\n\u2211\u220F", + "DescriptionText": "Grapple foe\u0027s leg and try to lift it up off the ground. Foe slips away, but is off balance while recovering.", + "RawAffixText": "\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 444, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 1776, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 1744, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Catch foe\u0027s waist garments and pull him", + "in. He is in trouble. He seeks to strike", + "your hand and break your hold.", + "3(-50)" + ], + "BaseLines": [ + "Catch foe\u0027s waist garments and pull him", + "in. He is in trouble. He seeks to strike", + "your hand and break your hold.", + "3(-50)" + ], + "RawCellText": "Catch foe\u0027s waist garments and pull him\nin. He is in trouble. He seeks to strike\nyour hand and break your hold.\n3(-50)", + "DescriptionText": "Catch foe\u0027s waist garments and pull him in. He is in trouble. He seeks to strike your hand and break your hold.", + "RawAffixText": "3(-50)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 444, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1776, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 1744, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Grip to shield arm. Foe drops his shield", + "as he wails in pain. You try to stay", + "serious.", + "\u002B5H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Grip to shield arm. Foe drops his shield", + "as he wails in pain. You try to stay", + "serious.", + "\u002B5H \u2013 2\u2211\u220F" + ], + "RawCellText": "Grip to shield arm. Foe drops his shield\nas he wails in pain. You try to stay\nserious.\n\u002B5H \u2013 2\u2211\u220F", + "DescriptionText": "Grip to shield arm. Foe drops his shield as he wails in pain. You try to stay serious.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 444, + "Width": 149, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1776, + "BoundsWidth": 596, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 1744, + "CropWidth": 692, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Foe spins away and comes back to", + "face you. He is unbalanced.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Foe spins away and comes back to", + "face you. He is unbalanced.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Foe spins away and comes back to\nface you. He is unbalanced.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Foe spins away and comes back to face you. He is unbalanced.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 500, + "Width": 129, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 2000, + "BoundsWidth": 516, + "BoundsHeight": 164, + "CropLeft": 508, + "CropTop": 1968, + "CropWidth": 612, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Foe spins out of your grasp. However,", + "spin nullifies his conterattack.", + "\u2211\u03C0" + ], + "BaseLines": [ + "Foe spins out of your grasp. However,", + "spin nullifies his conterattack.", + "\u2211\u03C0" + ], + "RawCellText": "Foe spins out of your grasp. However,\nspin nullifies his conterattack.\n\u2211\u03C0", + "DescriptionText": "Foe spins out of your grasp. However, spin nullifies his conterattack.", + "RawAffixText": "\u2211\u03C0", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 500, + "Width": 147, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 2000, + "BoundsWidth": 588, + "BoundsHeight": 164, + "CropLeft": 1052, + "CropTop": 1968, + "CropWidth": 684, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Short fingers render thigh hold", + "ineffectual. Try lower next time.", + "\u002B3H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Short fingers render thigh hold", + "ineffectual. Try lower next time.", + "\u002B3H \u2013 \u2211\u220F" + ], + "RawCellText": "Short fingers render thigh hold\nineffectual. Try lower next time.\n\u002B3H \u2013 \u2211\u220F", + "DescriptionText": "Short fingers render thigh hold ineffectual. Try lower next time.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 500, + "Width": 147, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 2000, + "BoundsWidth": 588, + "BoundsHeight": 164, + "CropLeft": 1664, + "CropTop": 1968, + "CropWidth": 684, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Grip foe\u0027s side and shake him like a", + "rattle. He is disoriented, but gets free.", + "\u002B6H \u2013 3\u2211" + ], + "BaseLines": [ + "Grip foe\u0027s side and shake him like a", + "rattle. He is disoriented, but gets free.", + "\u002B6H \u2013 3\u2211" + ], + "RawCellText": "Grip foe\u0027s side and shake him like a\nrattle. He is disoriented, but gets free.\n\u002B6H \u2013 3\u2211", + "DescriptionText": "Grip foe\u0027s side and shake him like a rattle. He is disoriented, but gets free.", + "RawAffixText": "\u002B6H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 500, + "Width": 145, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2000, + "BoundsWidth": 580, + "BoundsHeight": 164, + "CropLeft": 2280, + "CropTop": 1968, + "CropWidth": 676, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Grasp around foe\u0027s leg proves effective.", + "Foe is unbalanced for a moment.", + "\u2211\u220F \u2013 3(-25)" + ], + "BaseLines": [ + "Grasp around foe\u0027s leg proves effective.", + "Foe is unbalanced for a moment.", + "\u2211\u220F \u2013 3(-25)" + ], + "RawCellText": "Grasp around foe\u0027s leg proves effective.\nFoe is unbalanced for a moment.\n\u2211\u220F \u2013 3(-25)", + "DescriptionText": "Grasp around foe\u0027s leg proves effective. Foe is unbalanced for a moment.", + "RawAffixText": "\u2211\u220F \u2013 3(-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 500, + "Width": 149, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2000, + "BoundsWidth": 596, + "BoundsHeight": 164, + "CropLeft": 2896, + "CropTop": 1968, + "CropWidth": 692, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Grip to arm gives foe a bruised", + "bicep. Foe shakes free and", + "prepares for your assault.", + "\u002B3H \u2013 \u03C0(-20" + ], + "BaseLines": [ + "Grip to arm gives foe a bruised", + "bicep. Foe shakes free and", + "prepares for your assault.", + "\u002B3H \u2013 \u03C0(-20" + ], + "RawCellText": "Grip to arm gives foe a bruised\nbicep. Foe shakes free and\nprepares for your assault.\n\u002B3H \u2013 \u03C0(-20", + "DescriptionText": "Grip to arm gives foe a bruised bicep. Foe shakes free and prepares for your assault.", + "RawAffixText": "\u002B3H \u2013 \u03C0(-20", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 547, + "Width": 129, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 2188, + "BoundsWidth": 516, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 2156, + "CropWidth": 612, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Slipping grasp around foe\u0027s waist is", + "weak. He breaks your grip and stumbles", + "out of your way.", + "2\u2211" + ], + "BaseLines": [ + "Slipping grasp around foe\u0027s waist is", + "weak. He breaks your grip and stumbles", + "out of your way.", + "2\u2211" + ], + "RawCellText": "Slipping grasp around foe\u0027s waist is\nweak. He breaks your grip and stumbles\nout of your way.\n2\u2211", + "DescriptionText": "Slipping grasp around foe\u0027s waist is weak. He breaks your grip and stumbles out of your way.", + "RawAffixText": "2\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 547, + "Width": 149, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 2188, + "BoundsWidth": 596, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 2156, + "CropWidth": 692, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Grab foe around waist. Just when you", + "think your grip is iron, he begins to", + "break free. You might still prevail.", + "\u002B3H \u2013 3(-50)" + ], + "BaseLines": [ + "Grab foe around waist. Just when you", + "think your grip is iron, he begins to", + "break free. You might still prevail.", + "\u002B3H \u2013 3(-50)" + ], + "RawCellText": "Grab foe around waist. Just when you\nthink your grip is iron, he begins to\nbreak free. You might still prevail.\n\u002B3H \u2013 3(-50)", + "DescriptionText": "Grab foe around waist. Just when you think your grip is iron, he begins to break free. You might still prevail.", + "RawAffixText": "\u002B3H \u2013 3(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 547, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 2188, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 2156, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Clumsy bear hug around foe. Foe can do", + "little to escape for the moment. Both his", + "arms are pinned.", + "2\u220F \u2013 \u03C0(-20)" + ], + "BaseLines": [ + "Clumsy bear hug around foe. Foe can do", + "little to escape for the moment. Both his", + "arms are pinned.", + "2\u220F \u2013 \u03C0(-20)" + ], + "RawCellText": "Clumsy bear hug around foe. Foe can do\nlittle to escape for the moment. Both his\narms are pinned.\n2\u220F \u2013 \u03C0(-20)", + "DescriptionText": "Clumsy bear hug around foe. Foe can do little to escape for the moment. Both his arms are pinned.", + "RawAffixText": "2\u220F \u2013 \u03C0(-20)", + "Effects": [ + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 547, + "Width": 148, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2188, + "BoundsWidth": 592, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 2156, + "CropWidth": 688, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "You find yourself on foe\u0027s shield side.", + "If he has a shield, you are stymied.", + "w/o shield: \u002B7H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "You find yourself on foe\u0027s shield side.", + "If he has a shield, you are stymied." + ], + "RawCellText": "You find yourself on foe\u0027s shield side.\nIf he has a shield, you are stymied.", + "DescriptionText": "You find yourself on foe\u0027s shield side. If he has a shield, you are stymied.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B7H \u2013 3\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 547, + "Width": 148, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2188, + "BoundsWidth": 592, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 2156, + "CropWidth": 688, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Strike foe\u0027s weapon, disarming", + "him. Foe fails to recover weapon.", + "He has put himself in a bad spot.", + "\u002B3H \u2013 2\u2211" + ], + "BaseLines": [ + "Strike foe\u0027s weapon, disarming", + "him. Foe fails to recover weapon.", + "He has put himself in a bad spot.", + "\u002B3H \u2013 2\u2211" + ], + "RawCellText": "Strike foe\u0027s weapon, disarming\nhim. Foe fails to recover weapon.\nHe has put himself in a bad spot.\n\u002B3H \u2013 2\u2211", + "DescriptionText": "Strike foe\u0027s weapon, disarming him. Foe fails to recover weapon. He has put himself in a bad spot.", + "RawAffixText": "\u002B3H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 605, + "Width": 129, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 2420, + "BoundsWidth": 516, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 2388, + "CropWidth": 612, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "You grab foe\u0027s weapon arm and make", + "him drop it with a violent shake. Foe", + "strains wrist trying to break free.", + "2\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "You grab foe\u0027s weapon arm and make", + "him drop it with a violent shake. Foe", + "strains wrist trying to break free.", + "2\u2211 \u2013 (-25)" + ], + "RawCellText": "You grab foe\u0027s weapon arm and make\nhim drop it with a violent shake. Foe\nstrains wrist trying to break free.\n2\u2211 \u2013 (-25)", + "DescriptionText": "You grab foe\u0027s weapon arm and make him drop it with a violent shake. Foe strains wrist trying to break free.", + "RawAffixText": "2\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 605, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 2420, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 2388, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Grab foe, he falls down and you follow.", + "You knock him prone to stand back up.", + "He is down for 1 round.", + "\u002B5H" + ], + "BaseLines": [ + "Grab foe, he falls down and you follow.", + "You knock him prone to stand back up.", + "He is down for 1 round.", + "\u002B5H" + ], + "RawCellText": "Grab foe, he falls down and you follow.\nYou knock him prone to stand back up.\nHe is down for 1 round.\n\u002B5H", + "DescriptionText": "Grab foe, he falls down and you follow. You knock him prone to stand back up. He is down for 1 round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 605, + "Width": 148, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 2420, + "BoundsWidth": 592, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 2388, + "CropWidth": 688, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Grab leg and flip foe to ground, pinning", + "him. Prone and immobile for 2 rounds,", + "he might surrender.", + "\u002B6H" + ], + "BaseLines": [ + "Grab leg and flip foe to ground, pinning", + "him. Prone and immobile for 2 rounds,", + "he might surrender.", + "\u002B6H" + ], + "RawCellText": "Grab leg and flip foe to ground, pinning\nhim. Prone and immobile for 2 rounds,\nhe might surrender.\n\u002B6H", + "DescriptionText": "Grab leg and flip foe to ground, pinning him. Prone and immobile for 2 rounds, he might surrender.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 605, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2420, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 2388, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Grasp foe around neck and bring him to", + "ground. Muscles and tendons tear. Foe is", + "prone and immobilized for 3 rounds.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Grasp foe around neck and bring him to", + "ground. Muscles and tendons tear. Foe is", + "prone and immobilized for 3 rounds.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Grasp foe around neck and bring him to\nground. Muscles and tendons tear. Foe is\nprone and immobilized for 3 rounds.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Grasp foe around neck and bring him to ground. Muscles and tendons tear. Foe is prone and immobilized for 3 rounds.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 605, + "Width": 151, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2420, + "BoundsWidth": 604, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 2388, + "CropWidth": 700, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Passing chest strike. Foe eludes", + "grapple, keeps defensive stance.", + "2\u03C0(-20)" + ], + "BaseLines": [ + "Passing chest strike. Foe eludes", + "grapple, keeps defensive stance.", + "2\u03C0(-20)" + ], + "RawCellText": "Passing chest strike. Foe eludes\ngrapple, keeps defensive stance.\n2\u03C0(-20)", + "DescriptionText": "Passing chest strike. Foe eludes grapple, keeps defensive stance.", + "RawAffixText": "2\u03C0(-20)", + "Effects": [ + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 661, + "Width": 129, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 2644, + "BoundsWidth": 516, + "BoundsHeight": 164, + "CropLeft": 508, + "CropTop": 2612, + "CropWidth": 612, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Grip foe\u0027s neck. Push foe\u0027s chin back", + "steadily. He should act soon, or...", + "1(-10) \u2013 1(-20) \u2013 1(-30)" + ], + "BaseLines": [ + "Grip foe\u0027s neck. Push foe\u0027s chin back", + "steadily. He should act soon, or...", + "1(-10) \u2013 1(-20) \u2013 1(-30)" + ], + "RawCellText": "Grip foe\u0027s neck. Push foe\u0027s chin back\nsteadily. He should act soon, or...\n1(-10) \u2013 1(-20) \u2013 1(-30)", + "DescriptionText": "Grip foe\u0027s neck. Push foe\u0027s chin back steadily. He should act soon, or...", + "RawAffixText": "1(-10) \u2013 1(-20) \u2013 1(-30)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 661, + "Width": 148, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 2644, + "BoundsWidth": 592, + "BoundsHeight": 164, + "CropLeft": 1052, + "CropTop": 2612, + "CropWidth": 688, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Grab foe\u0027s shield arm. If foe has shield", + "you grapple it. Until dropped: (-50)", + "w/o shield: 3(-40)" + ], + "BaseLines": [ + "Grab foe\u0027s shield arm. If foe has shield", + "you grapple it. Until dropped: (-50)" + ], + "RawCellText": "Grab foe\u0027s shield arm. If foe has shield\nyou grapple it. Until dropped: (-50)", + "DescriptionText": "Grab foe\u0027s shield arm. If foe has shield you grapple it. Until dropped: (-50)", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: 3(-40)", + "DescriptionText": "", + "RawAffixText": "3(-40)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 661, + "Width": 145, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 2644, + "BoundsWidth": 580, + "BoundsHeight": 164, + "CropLeft": 1664, + "CropTop": 2612, + "CropWidth": 676, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Foe barely escapes immobilization, but", + "must recover from the ordeal.", + "\u002B7H \u2013 2\u220F" + ], + "BaseLines": [ + "Foe barely escapes immobilization, but", + "must recover from the ordeal.", + "\u002B7H \u2013 2\u220F" + ], + "RawCellText": "Foe barely escapes immobilization, but\nmust recover from the ordeal.\n\u002B7H \u2013 2\u220F", + "DescriptionText": "Foe barely escapes immobilization, but must recover from the ordeal.", + "RawAffixText": "\u002B7H \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 661, + "Width": 145, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2644, + "BoundsWidth": 580, + "BoundsHeight": 164, + "CropLeft": 2280, + "CropTop": 2612, + "CropWidth": 676, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "You almost disarm foe and trip him. He", + "uses weapon arm to prevent his fall.", + "2\u2211\u220F \u2013 1(-75)" + ], + "BaseLines": [ + "You almost disarm foe and trip him. He", + "uses weapon arm to prevent his fall.", + "2\u2211\u220F \u2013 1(-75)" + ], + "RawCellText": "You almost disarm foe and trip him. He\nuses weapon arm to prevent his fall.\n2\u2211\u220F \u2013 1(-75)", + "DescriptionText": "You almost disarm foe and trip him. He uses weapon arm to prevent his fall.", + "RawAffixText": "2\u2211\u220F \u2013 1(-75)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 661, + "Width": 150, + "Height": 41 + }, + "SourceImagePath": "grapple/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2644, + "BoundsWidth": 600, + "BoundsHeight": 164, + "CropLeft": 2896, + "CropTop": 2612, + "CropWidth": 696, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Grab an exposed garment. Uneasy", + "grip impedes foe\u0027s actions.", + "\u002B5H \u2013 2(-50)" + ], + "BaseLines": [ + "Grab an exposed garment. Uneasy", + "grip impedes foe\u0027s actions.", + "\u002B5H \u2013 2(-50)" + ], + "RawCellText": "Grab an exposed garment. Uneasy\ngrip impedes foe\u0027s actions.\n\u002B5H \u2013 2(-50)", + "DescriptionText": "Grab an exposed garment. Uneasy grip impedes foe\u0027s actions.", + "RawAffixText": "\u002B5H \u2013 2(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 708, + "Width": 130, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 2832, + "BoundsWidth": 520, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 2800, + "CropWidth": 616, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Weak hold around foe\u0027s waist. He brings", + "his knee up and you lose your grip. Foe", + "does not recover quickly.", + "\u002B4H \u2013 3(-50)" + ], + "BaseLines": [ + "Weak hold around foe\u0027s waist. He brings", + "his knee up and you lose your grip. Foe", + "does not recover quickly.", + "\u002B4H \u2013 3(-50)" + ], + "RawCellText": "Weak hold around foe\u0027s waist. He brings\nhis knee up and you lose your grip. Foe\ndoes not recover quickly.\n\u002B4H \u2013 3(-50)", + "DescriptionText": "Weak hold around foe\u0027s waist. He brings his knee up and you lose your grip. Foe does not recover quickly.", + "RawAffixText": "\u002B4H \u2013 3(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 708, + "Width": 148, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 2832, + "BoundsWidth": 592, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 2800, + "CropWidth": 688, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Very strong grip around foe\u0027s waist.", + "Foe is held at a great disadvanatge.", + "He might get free.", + "2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Very strong grip around foe\u0027s waist.", + "Foe is held at a great disadvanatge.", + "He might get free.", + "2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Very strong grip around foe\u0027s waist.\nFoe is held at a great disadvanatge.\nHe might get free.\n2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Very strong grip around foe\u0027s waist. Foe is held at a great disadvanatge. He might get free.", + "RawAffixText": "2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 708, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 2832, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 2800, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "You grapple foe in a brutal way.", + "Hold proves to be excellent. You have", + "him. What next?", + "\u2211\u220F \u2013 3(-70)" + ], + "BaseLines": [ + "You grapple foe in a brutal way.", + "Hold proves to be excellent. You have", + "him. What next?", + "\u2211\u220F \u2013 3(-70)" + ], + "RawCellText": "You grapple foe in a brutal way.\nHold proves to be excellent. You have\nhim. What next?\n\u2211\u220F \u2013 3(-70)", + "DescriptionText": "You grapple foe in a brutal way. Hold proves to be excellent. You have him. What next?", + "RawAffixText": "\u2211\u220F \u2013 3(-70)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 708, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2832, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 2800, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Foe evades your grasp by falling to the", + "ground. A clever ploy. Smile at your good", + "fortune.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Foe evades your grasp by falling to the", + "ground. A clever ploy. Smile at your good", + "fortune.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "RawCellText": "Foe evades your grasp by falling to the\nground. A clever ploy. Smile at your good\nfortune.\n\u002B9H \u2013 2\u2211\u220F", + "DescriptionText": "Foe evades your grasp by falling to the ground. A clever ploy. Smile at your good fortune.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 708, + "Width": 151, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2832, + "BoundsWidth": 604, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 2800, + "CropWidth": 700, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Grapple foe\u0027s shield arm. If foe has", + "a shield, you pull it down. If foe has", + "no shield, you immobilize his arm.", + "\u002B2H \u2013 4(-50)" + ], + "BaseLines": [ + "Grapple foe\u0027s shield arm. If foe has", + "a shield, you pull it down. If foe has", + "no shield, you immobilize his arm.", + "\u002B2H \u2013 4(-50)" + ], + "RawCellText": "Grapple foe\u0027s shield arm. If foe has\na shield, you pull it down. If foe has\nno shield, you immobilize his arm.\n\u002B2H \u2013 4(-50)", + "DescriptionText": "Grapple foe\u0027s shield arm. If foe has a shield, you pull it down. If foe has no shield, you immobilize his arm.", + "RawAffixText": "\u002B2H \u2013 4(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 764, + "Width": 130, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 3056, + "BoundsWidth": 520, + "BoundsHeight": 248, + "CropLeft": 508, + "CropTop": 3024, + "CropWidth": 616, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Entangle foe\u0027s shield arm. If foe has", + "shield, your grip makes it impossible", + "to use. Until shield dropped: (-30)", + "If no shield his arm is entangled.", + "(-40)" + ], + "BaseLines": [ + "Entangle foe\u0027s shield arm. If foe has", + "shield, your grip makes it impossible", + "to use. Until shield dropped: (-30)", + "If no shield his arm is entangled.", + "(-40)" + ], + "RawCellText": "Entangle foe\u0027s shield arm. If foe has\nshield, your grip makes it impossible\nto use. Until shield dropped: (-30)\nIf no shield his arm is entangled.\n(-40)", + "DescriptionText": "Entangle foe\u0027s shield arm. If foe has shield, your grip makes it impossible to use. Until shield dropped: (-30) If no shield his arm is entangled.", + "RawAffixText": "(-40)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 764, + "Width": 147, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 3056, + "BoundsWidth": 588, + "BoundsHeight": 248, + "CropLeft": 1052, + "CropTop": 3024, + "CropWidth": 684, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Entangle foe\u0027s weapon arm. His weapon", + "is held immobile. He cannot use it, but he", + "will not drop it. He tries to knee you to", + "escape, this fails.", + "2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Entangle foe\u0027s weapon arm. His weapon", + "is held immobile. He cannot use it, but he", + "will not drop it. He tries to knee you to", + "escape, this fails.", + "2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Entangle foe\u0027s weapon arm. His weapon\nis held immobile. He cannot use it, but he\nwill not drop it. He tries to knee you to\nescape, this fails.\n2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Entangle foe\u0027s weapon arm. His weapon is held immobile. He cannot use it, but he will not drop it. He tries to knee you to escape, this fails.", + "RawAffixText": "2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 764, + "Width": 151, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 3056, + "BoundsWidth": 604, + "BoundsHeight": 248, + "CropLeft": 1664, + "CropTop": 3024, + "CropWidth": 700, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Entangle foe\u0027s weapon arm. Foe hangs", + "onto his weapon, but the arm is", + "immobilized. You try to make him strike", + "himself. It fails.", + "\u002B4H" + ], + "BaseLines": [ + "Entangle foe\u0027s weapon arm. Foe hangs", + "onto his weapon, but the arm is", + "immobilized. You try to make him strike", + "himself. It fails.", + "\u002B4H" + ], + "RawCellText": "Entangle foe\u0027s weapon arm. Foe hangs\nonto his weapon, but the arm is\nimmobilized. You try to make him strike\nhimself. It fails.\n\u002B4H", + "DescriptionText": "Entangle foe\u0027s weapon arm. Foe hangs onto his weapon, but the arm is immobilized. You try to make him strike himself. It fails.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 764, + "Width": 148, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3056, + "BoundsWidth": 592, + "BoundsHeight": 248, + "CropLeft": 2280, + "CropTop": 3024, + "CropWidth": 688, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Grab foe\u0027s weapon arm and beat on it,", + "without concern foe the rest of foe. Foe is", + "disarmed. You tear ligaments and pull", + "muscles.", + "3\u2211 \u2013 (-40)" + ], + "BaseLines": [ + "Grab foe\u0027s weapon arm and beat on it,", + "without concern foe the rest of foe. Foe is", + "disarmed. You tear ligaments and pull", + "muscles.", + "3\u2211 \u2013 (-40)" + ], + "RawCellText": "Grab foe\u0027s weapon arm and beat on it,\nwithout concern foe the rest of foe. Foe is\ndisarmed. You tear ligaments and pull\nmuscles.\n3\u2211 \u2013 (-40)", + "DescriptionText": "Grab foe\u0027s weapon arm and beat on it, without concern foe the rest of foe. Foe is disarmed. You tear ligaments and pull muscles.", + "RawAffixText": "3\u2211 \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 764, + "Width": 154, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3056, + "BoundsWidth": 616, + "BoundsHeight": 248, + "CropLeft": 2896, + "CropTop": 3024, + "CropWidth": 712, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Useful grip on foe\u0027s neck. Foe\u0027s", + "face turns red. He cannot breath", + "easily. Slowly he breaks your grip.", + "\u002B5H \u2013 2\u2211 \u2013 2(-25)" + ], + "BaseLines": [ + "Useful grip on foe\u0027s neck. Foe\u0027s", + "face turns red. He cannot breath", + "easily. Slowly he breaks your grip.", + "\u002B5H \u2013 2\u2211 \u2013 2(-25)" + ], + "RawCellText": "Useful grip on foe\u0027s neck. Foe\u0027s\nface turns red. He cannot breath\neasily. Slowly he breaks your grip.\n\u002B5H \u2013 2\u2211 \u2013 2(-25)", + "DescriptionText": "Useful grip on foe\u0027s neck. Foe\u0027s face turns red. He cannot breath easily. Slowly he breaks your grip.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 2(-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 833, + "Width": 131, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 3332, + "BoundsWidth": 524, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 3300, + "CropWidth": 620, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Grip around foe\u0027s waist unbalances him.", + "You have the initiative. Foe shares much", + "profanity with you.", + "6(-50)" + ], + "BaseLines": [ + "Grip around foe\u0027s waist unbalances him.", + "You have the initiative. Foe shares much", + "profanity with you.", + "6(-50)" + ], + "RawCellText": "Grip around foe\u0027s waist unbalances him.\nYou have the initiative. Foe shares much\nprofanity with you.\n6(-50)", + "DescriptionText": "Grip around foe\u0027s waist unbalances him. You have the initiative. Foe shares much profanity with you.", + "RawAffixText": "6(-50)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 833, + "Width": 149, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 3332, + "BoundsWidth": 596, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 3300, + "CropWidth": 692, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Brutal grip around foe\u0027s chest, leaves", + "bruises all over him. Your assault has", + "created much confusion.", + "\u002B3H \u2013 3\u2211\u220F \u2013 (-5)" + ], + "BaseLines": [ + "Brutal grip around foe\u0027s chest, leaves", + "bruises all over him. Your assault has", + "created much confusion.", + "\u002B3H \u2013 3\u2211\u220F \u2013 (-5)" + ], + "RawCellText": "Brutal grip around foe\u0027s chest, leaves\nbruises all over him. Your assault has\ncreated much confusion.\n\u002B3H \u2013 3\u2211\u220F \u2013 (-5)", + "DescriptionText": "Brutal grip around foe\u0027s chest, leaves bruises all over him. Your assault has created much confusion.", + "RawAffixText": "\u002B3H \u2013 3\u2211\u220F \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 833, + "Width": 146, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 3332, + "BoundsWidth": 584, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 3300, + "CropWidth": 680, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Grab knee and send foe down. He", + "breaks his fall by breaking his shield", + "arm. He is disarmed and prone.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Grab knee and send foe down. He", + "breaks his fall by breaking his shield", + "arm. He is disarmed and prone.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Grab knee and send foe down. He\nbreaks his fall by breaking his shield\narm. He is disarmed and prone.\n\u002B5H \u2013 2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Grab knee and send foe down. He breaks his fall by breaking his shield arm. He is disarmed and prone.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 833, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3332, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 3300, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Entangle both of foe\u0027s arms and pin them", + "to his body. Foe cannot move his", + "arms and he looks ready to surrender.", + "10(-75)" + ], + "BaseLines": [ + "Entangle both of foe\u0027s arms and pin them", + "to his body. Foe cannot move his", + "arms and he looks ready to surrender.", + "10(-75)" + ], + "RawCellText": "Entangle both of foe\u0027s arms and pin them\nto his body. Foe cannot move his\narms and he looks ready to surrender.\n10(-75)", + "DescriptionText": "Entangle both of foe\u0027s arms and pin them to his body. Foe cannot move his arms and he looks ready to surrender.", + "RawAffixText": "10(-75)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 833, + "Width": 151, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3332, + "BoundsWidth": 604, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 3300, + "CropWidth": 700, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Grasp foe\u0027s leg, lifting it off the", + "ground for a moment. You have", + "the initiative for 6 rounds.", + "\u002B3H \u2013 3\u2211" + ], + "BaseLines": [ + "Grasp foe\u0027s leg, lifting it off the", + "ground for a moment. You have", + "the initiative for 6 rounds.", + "\u002B3H \u2013 3\u2211" + ], + "RawCellText": "Grasp foe\u0027s leg, lifting it off the\nground for a moment. You have\nthe initiative for 6 rounds.\n\u002B3H \u2013 3\u2211", + "DescriptionText": "Grasp foe\u0027s leg, lifting it off the ground for a moment. You have the initiative for 6 rounds.", + "RawAffixText": "\u002B3H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 890, + "Width": 129, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 3560, + "BoundsWidth": 516, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 3528, + "CropWidth": 612, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Entangle foe\u0027s leg and send him down.", + "He does not hit hard. He pulls a", + "muscle in his leg struggling.", + "2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Entangle foe\u0027s leg and send him down.", + "He does not hit hard. He pulls a", + "muscle in his leg struggling.", + "2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Entangle foe\u0027s leg and send him down.\nHe does not hit hard. He pulls a\nmuscle in his leg struggling.\n2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Entangle foe\u0027s leg and send him down. He does not hit hard. He pulls a muscle in his leg struggling.", + "RawAffixText": "2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 890, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 3560, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 3528, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Your assault is strong and lucky. As you", + "grapple foe, you stomp his foot. He falls", + "hard, breaking his shoulder.", + "\u002B10H \u2013 6\u2211 \u2013 (-40)" + ], + "BaseLines": [ + "Your assault is strong and lucky. As you", + "grapple foe, you stomp his foot. He falls", + "hard, breaking his shoulder.", + "\u002B10H \u2013 6\u2211 \u2013 (-40)" + ], + "RawCellText": "Your assault is strong and lucky. As you\ngrapple foe, you stomp his foot. He falls\nhard, breaking his shoulder.\n\u002B10H \u2013 6\u2211 \u2013 (-40)", + "DescriptionText": "Your assault is strong and lucky. As you grapple foe, you stomp his foot. He falls hard, breaking his shoulder.", + "RawAffixText": "\u002B10H \u2013 6\u2211 \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 890, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 3560, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 3528, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Tie up both of foe\u0027s arms. He is", + "immobile and cannot fight back", + "effectively. You have him now.", + "\u002B10H \u2013 9\u2211\u220F" + ], + "BaseLines": [ + "Tie up both of foe\u0027s arms. He is", + "immobile and cannot fight back", + "effectively. You have him now.", + "\u002B10H \u2013 9\u2211\u220F" + ], + "RawCellText": "Tie up both of foe\u0027s arms. He is\nimmobile and cannot fight back\neffectively. You have him now.\n\u002B10H \u2013 9\u2211\u220F", + "DescriptionText": "Tie up both of foe\u0027s arms. He is immobile and cannot fight back effectively. You have him now.", + "RawAffixText": "\u002B10H \u2013 9\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 890, + "Width": 145, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3560, + "BoundsWidth": 580, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 3528, + "CropWidth": 676, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Foe stumbles, with your assistance, and", + "falls. His weapon breaks on impact. If foe", + "has no chest armor, he takes a\u0022D\u0022 Krush.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Foe stumbles, with your assistance, and", + "falls. His weapon breaks on impact. If foe", + "has no chest armor, he takes a\u0022D\u0022 Krush.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Foe stumbles, with your assistance, and\nfalls. His weapon breaks on impact. If foe\nhas no chest armor, he takes a\u0022D\u0022 Krush.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Foe stumbles, with your assistance, and falls. His weapon breaks on impact. If foe has no chest armor, he takes a\u0022D\u0022 Krush.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 890, + "Width": 150, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3560, + "BoundsWidth": 600, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 3528, + "CropWidth": 696, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Entangle foe\u0027s leg. Foe is knocked", + "down. Foe lands on his weapon", + "arm. He kicks and breaks free.", + "\u002B4H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Entangle foe\u0027s leg. Foe is knocked", + "down. Foe lands on his weapon", + "arm. He kicks and breaks free.", + "\u002B4H \u2013 2\u2211\u220F" + ], + "RawCellText": "Entangle foe\u0027s leg. Foe is knocked\ndown. Foe lands on his weapon\narm. He kicks and breaks free.\n\u002B4H \u2013 2\u2211\u220F", + "DescriptionText": "Entangle foe\u0027s leg. Foe is knocked down. Foe lands on his weapon arm. He kicks and breaks free.", + "RawAffixText": "\u002B4H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 947, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 3788, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 508, + "CropTop": 3756, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Pull foe\u0027s legs together. He goes down,", + "hitting hard and dropping his weapon.", + "He feebly attempts to crawl for it.", + "2\u2211\u220F \u2013 4(-25)" + ], + "BaseLines": [ + "Pull foe\u0027s legs together. He goes down,", + "hitting hard and dropping his weapon.", + "He feebly attempts to crawl for it.", + "2\u2211\u220F \u2013 4(-25)" + ], + "RawCellText": "Pull foe\u0027s legs together. He goes down,\nhitting hard and dropping his weapon.\nHe feebly attempts to crawl for it.\n2\u2211\u220F \u2013 4(-25)", + "DescriptionText": "Pull foe\u0027s legs together. He goes down, hitting hard and dropping his weapon. He feebly attempts to crawl for it.", + "RawAffixText": "2\u2211\u220F \u2013 4(-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 947, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 3788, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1052, + "CropTop": 3756, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Painfully immobilize weapon arm. Foe", + "cannot surrender quickly enough to", + "avoid the damage and pain.", + "\u002B15H \u2013 4\u2211\u220F \u2013 8(-95)" + ], + "BaseLines": [ + "Painfully immobilize weapon arm. Foe", + "cannot surrender quickly enough to", + "avoid the damage and pain.", + "\u002B15H \u2013 4\u2211\u220F \u2013 8(-95)" + ], + "RawCellText": "Painfully immobilize weapon arm. Foe\ncannot surrender quickly enough to\navoid the damage and pain.\n\u002B15H \u2013 4\u2211\u220F \u2013 8(-95)", + "DescriptionText": "Painfully immobilize weapon arm. Foe cannot surrender quickly enough to avoid the damage and pain.", + "RawAffixText": "\u002B15H \u2013 4\u2211\u220F \u2013 8(-95)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 947, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 3788, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1664, + "CropTop": 3756, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Grapple foe\u0027s legs and send him over.", + "He hits his head in the fall. You get little", + "resistance after that.", + "\u002B10H \u2013 30\u2211\u220F" + ], + "BaseLines": [ + "Grapple foe\u0027s legs and send him over.", + "He hits his head in the fall. You get little", + "resistance after that.", + "\u002B10H \u2013 30\u2211\u220F" + ], + "RawCellText": "Grapple foe\u0027s legs and send him over.\nHe hits his head in the fall. You get little\nresistance after that.\n\u002B10H \u2013 30\u2211\u220F", + "DescriptionText": "Grapple foe\u0027s legs and send him over. He hits his head in the fall. You get little resistance after that.", + "RawAffixText": "\u002B10H \u2013 30\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 947, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3788, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2280, + "CropTop": 3756, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Wrap up foe\u0027s legs. Foe tumbles to the", + "ground like a ragdoll breaking both arms", + "and an ankle. Foe is knocked out.", + "\u002B20H \u2013 (-95)" + ], + "BaseLines": [ + "Wrap up foe\u0027s legs. Foe tumbles to the", + "ground like a ragdoll breaking both arms", + "and an ankle. Foe is knocked out.", + "\u002B20H \u2013 (-95)" + ], + "RawCellText": "Wrap up foe\u0027s legs. Foe tumbles to the\nground like a ragdoll breaking both arms\nand an ankle. Foe is knocked out.\n\u002B20H \u2013 (-95)", + "DescriptionText": "Wrap up foe\u0027s legs. Foe tumbles to the ground like a ragdoll breaking both arms and an ankle. Foe is knocked out.", + "RawAffixText": "\u002B20H \u2013 (-95)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 947, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "grapple/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3788, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2896, + "CropTop": 3756, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Ride foe down and immobilize him.", + "He can do nothing for 12 rounds.", + "You are prone also, while holding", + "him down." + ], + "BaseLines": [ + "Ride foe down and immobilize him.", + "He can do nothing for 12 rounds.", + "You are prone also, while holding", + "him down." + ], + "RawCellText": "Ride foe down and immobilize him.\nHe can do nothing for 12 rounds.\nYou are prone also, while holding\nhim down.", + "DescriptionText": "Ride foe down and immobilize him. He can do nothing for 12 rounds. You are prone also, while holding him down.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 1004, + "Width": 129, + "Height": 42 + }, + "SourceImagePath": "grapple/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 4016, + "BoundsWidth": 516, + "BoundsHeight": 168, + "CropLeft": 508, + "CropTop": 3984, + "CropWidth": 612, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Entangle foe\u0027s arm and flip him to", + "ground, fracturing his leg. You", + "immobilize him completely. He is prone,", + "face down and still conscious.", + "(-40)" + ], + "BaseLines": [ + "Entangle foe\u0027s arm and flip him to", + "ground, fracturing his leg. You", + "immobilize him completely. He is prone,", + "face down and still conscious.", + "(-40)" + ], + "RawCellText": "Entangle foe\u0027s arm and flip him to\nground, fracturing his leg. You\nimmobilize him completely. He is prone,\nface down and still conscious.\n(-40)", + "DescriptionText": "Entangle foe\u0027s arm and flip him to ground, fracturing his leg. You immobilize him completely. He is prone, face down and still conscious.", + "RawAffixText": "(-40)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 1004, + "Width": 147, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 4016, + "BoundsWidth": 588, + "BoundsHeight": 248, + "CropLeft": 1052, + "CropTop": 3984, + "CropWidth": 684, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Entangle foe\u0027s legs. Grapple weapon arm", + "and break it on an available surface. You", + "send foe to the ground. He falls very", + "hard and is knocked out.", + "\u002B20H \u2013 10\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Entangle foe\u0027s legs. Grapple weapon arm", + "and break it on an available surface. You", + "send foe to the ground. He falls very", + "hard and is knocked out.", + "\u002B20H \u2013 10\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Entangle foe\u0027s legs. Grapple weapon arm\nand break it on an available surface. You\nsend foe to the ground. He falls very\nhard and is knocked out.\n\u002B20H \u2013 10\u2211\u220F \u2013 (-30)", + "DescriptionText": "Entangle foe\u0027s legs. Grapple weapon arm and break it on an available surface. You send foe to the ground. He falls very hard and is knocked out.", + "RawAffixText": "\u002B20H \u2013 10\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 1004, + "Width": 149, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 4016, + "BoundsWidth": 596, + "BoundsHeight": 248, + "CropLeft": 1664, + "CropTop": 3984, + "CropWidth": 692, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Crushing grip around foe\u0027s neck. If no", + "neck armor, foe dies in 6 rounds from", + "your mortal grip. Foe is disarmed.", + "with neck armor: 3\u2211\u220F" + ], + "BaseLines": [ + "Crushing grip around foe\u0027s neck. If no", + "neck armor, foe dies in 6 rounds from", + "your mortal grip. Foe is disarmed." + ], + "RawCellText": "Crushing grip around foe\u0027s neck. If no\nneck armor, foe dies in 6 rounds from\nyour mortal grip. Foe is disarmed.", + "DescriptionText": "Crushing grip around foe\u0027s neck. If no neck armor, foe dies in 6 rounds from your mortal grip. Foe is disarmed.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_neck_armor", + "ConditionText": "with neck armor", + "RawText": "with neck armor: 3\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "3\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 1004, + "Width": 145, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 4016, + "BoundsWidth": 580, + "BoundsHeight": 248, + "CropLeft": 2280, + "CropTop": 3984, + "CropWidth": 676, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Attack results in strangling hold. Foe flails", + "legs in desperation. Foe is unable to break", + "free and dies after 9 rounds of helpless", + "struggling. Grim.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Attack results in strangling hold. Foe flails", + "legs in desperation. Foe is unable to break", + "free and dies after 9 rounds of helpless", + "struggling. Grim.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Attack results in strangling hold. Foe flails\nlegs in desperation. Foe is unable to break\nfree and dies after 9 rounds of helpless\nstruggling. Grim.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Attack results in strangling hold. Foe flails legs in desperation. Foe is unable to break free and dies after 9 rounds of helpless struggling. Grim.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 1004, + "Width": 153, + "Height": 62 + }, + "SourceImagePath": "grapple/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 4016, + "BoundsWidth": 612, + "BoundsHeight": 248, + "CropLeft": 2896, + "CropTop": 3984, + "CropWidth": 708, + "CropHeight": 312, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s legs are entangled long", + "enough to make him fall. He is", + "knocked out for 5 rounds.", + "\u002B9H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe\u0027s legs are entangled long", + "enough to make him fall. He is", + "knocked out for 5 rounds.", + "\u002B9H \u2013 (\u002B20)" + ], + "RawCellText": "Foe\u0027s legs are entangled long\nenough to make him fall. He is\nknocked out for 5 rounds.\n\u002B9H \u2013 (\u002B20)", + "DescriptionText": "Foe\u0027s legs are entangled long enough to make him fall. He is knocked out for 5 rounds.", + "RawAffixText": "\u002B9H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 139, + "Top": 1071, + "Width": 130, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 556, + "BoundsTop": 4284, + "BoundsWidth": 520, + "BoundsHeight": 204, + "CropLeft": 508, + "CropTop": 4252, + "CropWidth": 616, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Grip foe\u0027s neck in a vicious hold. If foe", + "cannot break your grip in 4 rounds, he", + "will begin to pass out from suffocation.", + "\u002B10H \u2013 \u2211 \u2013 (-40)" + ], + "BaseLines": [ + "Grip foe\u0027s neck in a vicious hold. If foe", + "cannot break your grip in 4 rounds, he", + "will begin to pass out from suffocation.", + "\u002B10H \u2013 \u2211 \u2013 (-40)" + ], + "RawCellText": "Grip foe\u0027s neck in a vicious hold. If foe\ncannot break your grip in 4 rounds, he\nwill begin to pass out from suffocation.\n\u002B10H \u2013 \u2211 \u2013 (-40)", + "DescriptionText": "Grip foe\u0027s neck in a vicious hold. If foe cannot break your grip in 4 rounds, he will begin to pass out from suffocation.", + "RawAffixText": "\u002B10H \u2013 \u2211 \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 275, + "Top": 1071, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1100, + "BoundsTop": 4284, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1052, + "CropTop": 4252, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Grip foe\u0027s head and jerk it around. If foe", + "has no neck armor, he dies.", + "no neck armor: \u002B5H \u2013 5\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Grip foe\u0027s head and jerk it around. If foe", + "has no neck armor, he dies.", + "no neck armor: \u002B5H \u2013 5\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Grip foe\u0027s head and jerk it around. If foe\nhas no neck armor, he dies.\nno neck armor: \u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "DescriptionText": "Grip foe\u0027s head and jerk it around. If foe has no neck armor, he dies.", + "RawAffixText": "no neck armor: \u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 428, + "Top": 1071, + "Width": 147, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1712, + "BoundsTop": 4284, + "BoundsWidth": 588, + "BoundsHeight": 204, + "CropLeft": 1664, + "CropTop": 4252, + "CropWidth": 684, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Grapple foe\u0027s head. His skull is fractured", + "during this assault. If he has no helm, he", + "is in a coma for 30 days.", + "with helmet: \u002B3H \u2013 9\u2211\u220F" + ], + "BaseLines": [ + "Grapple foe\u0027s head. His skull is fractured", + "during this assault. If he has no helm, he", + "is in a coma for 30 days." + ], + "RawCellText": "Grapple foe\u0027s head. His skull is fractured\nduring this assault. If he has no helm, he\nis in a coma for 30 days.", + "DescriptionText": "Grapple foe\u0027s head. His skull is fractured during this assault. If he has no helm, he is in a coma for 30 days.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B3H \u2013 9\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 9\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 1071, + "Width": 149, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 4284, + "BoundsWidth": 596, + "BoundsHeight": 204, + "CropLeft": 2280, + "CropTop": 4252, + "CropWidth": 692, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Crush foe\u0027s windpipe and pull the head", + "from his body. You are mighty.", + "1(\u002B25)" + ], + "BaseLines": [ + "Crush foe\u0027s windpipe and pull the head", + "from his body. You are mighty.", + "1(\u002B25)" + ], + "RawCellText": "Crush foe\u0027s windpipe and pull the head\nfrom his body. You are mighty.\n1(\u002B25)", + "DescriptionText": "Crush foe\u0027s windpipe and pull the head from his body. You are mighty.", + "RawAffixText": "1(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 1071, + "Width": 150, + "Height": 51 + }, + "SourceImagePath": "grapple/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 4284, + "BoundsWidth": 600, + "BoundsHeight": 204, + "CropLeft": 2896, + "CropTop": 4252, + "CropWidth": 696, + "CropHeight": 268, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/source.xml b/src/RolemasterDb.App/import-artifacts/critical/grapple/source.xml new file mode 100644 index 0000000..3a4fa00 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/grapple/source.xml @@ -0,0 +1,399 @@ + + + + + + + + + + + + + +95 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +Foe escapes like the wind. +Your attack falls short. +Your fingernails deal a vicious wound. +A little elbow before you lose your grip. +You grip strand of foe’s hair. It breaks. ++0H ++0H ++1H ++2H ++3H +06-10 +Grab foe’s arm. Oops. Try again. +Your grip fails. +Foe grabs, misses. You have initiative. +This was not a special moment. +You have initiative next round. ++0H ++2H ++3H ++4H ++5H +11-15 +You impede foe’s combat stance. +You have the initiative. +Foe collides with your attack before you +get a grip. Small bruise. +You cannot get a good grip, foe hurts +himself evading. You have initiative. +Grab foe's head. If foe has helm, you +twist it. Otherwise, you gain initiative. +Lame attack, but foe is concerned. He +moves back. ++0H ++2H ++4H +with helm: ∑ ++6H – π +16-20 +Foe breaks free of a weak grip. +You have the initiative next round. +Grab foe and give him a weak punch. He +thinks you are dangerous. +Foe recovers, continues his defense +by sweeping his weapon at your feet. +Push foe, unbalancing him. You have +initiative for 2 rounds. +Strong passing blow near foe's head. +His violent evasion is not productive. ++0H +π +π + ++3H – ∑ +21-35 +Almost get a grip on foe's arm. He +avoids his mistake. You gain the +initiative next round. +You grip foe's shield arm. Foe's strike +toward your head makes you let go of +him. He keeps a distance. +Collide with foe. You push him away +and he stumbles back 5 feet. It went +better than you could have hoped. +Hard, but poorly placed. Foe bounces +back out of your grip. He looks like he +does not recognize you. +Uncoordinated attack and a little luck, +allows foe to escape your grasp. You have +initiative for 2 rounds. ++3H +π(-20) ++2H – ∑ ++3H – ∑ + +36-45 +Grip to lower back. Foe wards off +your attack and prepares for your +next move. +Grip fails, but bash does not. You +unbalance your foe. You have the +initiative. +Your attack is almost comical as you +seek any little grip you can get. All the +tiny tugs finally have an effect on foe. +Strike to foe's shield arm. If foe has no +shield, you immobilize arm for 6 +rounds. +Attack to upper leg. Foe spins to break +free. He is disoriented badly. It takes a +moment for him to see you. +π ++4H – π +∑π +with shield: +3H +∑∏ +46-50 +Hinder foe’s weapon arm. Foe +violently frees himself and takes a +defensive stance. +Pull foe over, he breaks free. He is +having trouble recovering. Your heart is +broken. +Grab foe's waist. Your grip appeared to +be strong, but now it is losing its +advantage. Your foe is working free. +Painful grip on foe's hand. You do not +break anything, but he thinks so. You +have initiative for 4 rounds. +You and foe collide. He breaks your grip +and stumbles away. You bounce back and +miss a good opportunity. +π +5H – ∑ +3(-25) +3(-30) +2∑∏ +51-55 +You get in close and grab at foe's +hair. He is daunted and steps back +to escape your reach. +Grip to foe's garments. They rip and you +lose a hopeful hold. Foe is carried back +by his break-away. +Grapple foe's leg and try to lift it up off +the ground. Foe slips away, but is off +balance while recovering. +Catch foe's waist garments and pull him +in. He is in trouble. He seeks to strike +your hand and break your hold. +Grip to shield arm. Foe drops his shield +as he wails in pain. You try to stay +serious. +π(-20) ++7H – ∑ +∑∏ +3(-50) ++5H – 2∑∏ +56-60 +Foe spins away and comes back to +face you. He is unbalanced. +Foe spins out of your grasp. However, +spin nullifies his conterattack. +Short fingers render thigh hold +ineffectual. Try lower next time. +Grip foe's side and shake him like a +rattle. He is disoriented, but gets free. +Grasp around foe's leg proves effective. +Foe is unbalanced for a moment. ++3H – ∑ +∑π ++3H – ∑∏ ++6H – 3∑ +∑∏ – 3(-25) +61-65 +Grip to arm gives foe a bruised +bicep. Foe shakes free and +prepares for your assault. +Slipping grasp around foe’s waist is +weak. He breaks your grip and stumbles +out of your way. +Grab foe around waist. Just when you +think your grip is iron, he begins to +break free. You might still prevail. +Clumsy bear hug around foe. Foe can do +little to escape for the moment. Both his +arms are pinned. +You find yourself on foe’s shield side. +If he has a shield, you are stymied. ++3H – π(-20 +2∑ ++3H – 3(-50) +2∏ – π(-20) +w/o shield: +7H – 3∑∏ +66 +Strike foe’s weapon, disarming +him. Foe fails to recover weapon. +He has put himself in a bad spot. +You grab foe’s weapon arm and make +him drop it with a violent shake. Foe +strains wrist trying to break free. +Grab foe, he falls down and you follow. +You knock him prone to stand back up. +He is down for 1 round. +Grab leg and flip foe to ground, pinning +him. Prone and immobile for 2 rounds, +he might surrender. +Grasp foe around neck and bring him to +ground. Muscles and tendons tear. Foe is +prone and immobilized for 3 rounds. ++3H – 2∑ +2∑ – (-25) ++5H + +6H ++3H – ∑ +67-70 +Passing chest strike. Foe eludes +grapple, keeps defensive stance. +Grip foe's neck. Push foe's chin back +steadily. He should act soon, or... +Grab foe's shield arm. If foe has shield +you grapple it. Until dropped: (-50) +Foe barely escapes immobilization, but +must recover from the ordeal. +You almost disarm foe and trip him. He +uses weapon arm to prevent his fall. +2π(-20) +1(-10) – 1(-20) – 1(-30) + w/o shield: 3(-40) ++7H – 2∏ +2∑∏ – 1(-75) +71-75 +Grab an exposed garment. Uneasy +grip impedes foe's actions. +Weak hold around foe's waist. He brings +his knee up and you lose your grip. Foe +does not recover quickly. +Very strong grip around foe's waist. +Foe is held at a great disadvanatge. +He might get free. +You grapple foe in a brutal way. +Hold proves to be excellent. You have +him. What next? +Foe evades your grasp by falling to the +ground. A clever ploy. Smile at your good +fortune. ++5H – 2(-50) ++4H – 3(-50) + 2∑∏ – (-50) +∑∏ – 3(-70) ++9H – 2∑∏ +76-80 +Grapple foe's shield arm. If foe has +a shield, you pull it down. If foe has +no shield, you immobilize his arm. +Entangle foe's shield arm. If foe has +shield, your grip makes it impossible +to use. Until shield dropped: (-30) +If no shield his arm is entangled. +Entangle foe's weapon arm. His weapon +is held immobile. He cannot use it, but he +will not drop it. He tries to knee you to +escape, this fails. +Entangle foe's weapon arm. Foe hangs +onto his weapon, but the arm is +immobilized. You try to make him strike +himself. It fails. +Grab foe's weapon arm and beat on it, +without concern foe the rest of foe. Foe is +disarmed. You tear ligaments and pull +muscles. ++2H – 4(-50) +(-40) + 2∑∏ – (-50) ++4H + 3∑ – (-40) +81-85 +Useful grip on foe's neck. Foe's +face turns red. He cannot breath +easily. Slowly he breaks your grip. +Grip around foe's waist unbalances him. +You have the initiative. Foe shares much +profanity with you. +Brutal grip around foe's chest, leaves +bruises all over him. Your assault has +created much confusion. +Grab knee and send foe down. He +breaks his fall by breaking his shield +arm. He is disarmed and prone. +Entangle both of foe's arms and pin them +to his body. Foe cannot move his +arms and he looks ready to surrender. ++5H – 2∑ – 2(-25) + 6(-50) ++3H – 3∑∏ – (-5) ++5H – 2∑∏ – (-10) +10(-75) +86-90 +Grasp foe's leg, lifting it off the +ground for a moment. You have +the initiative for 6 rounds. +Entangle foe's leg and send him down. +He does not hit hard. He pulls a +muscle in his leg struggling. +Your assault is strong and lucky. As you +grapple foe, you stomp his foot. He falls +hard, breaking his shoulder. +Tie up both of foe's arms. He is +immobile and cannot fight back +effectively. You have him now. +Foe stumbles, with your assistance, and +falls. His weapon breaks on impact. If foe +has no chest armor, he takes a"D" Krush. ++3H – 3∑ + 2∑∏ – (-10) ++10H – 6∑ – (-40) ++10H – 9∑∏ ++3H – ∑ +91-95 +Entangle foe’s leg. Foe is knocked +down. Foe lands on his weapon +arm. He kicks and breaks free. +Pull foe’s legs together. He goes down, +hitting hard and dropping his weapon. +He feebly attempts to crawl for it. +Painfully immobilize weapon arm. Foe +cannot surrender quickly enough to +avoid the damage and pain. +Grapple foe’s legs and send him over. +He hits his head in the fall. You get little +resistance after that. +Wrap up foe’s legs. Foe tumbles to the +ground like a ragdoll breaking both arms +and an ankle. Foe is knocked out. ++4H – 2∑∏ +2∑∏ – 4(-25) + +15H – 4∑∏ – 8(-95) ++10H – 30∑∏ ++20H – (-95) +96-99 +Ride foe down and immobilize him. +He can do nothing for 12 rounds. +You are prone also, while holding +him down. +Entangle foe’s arm and flip him to +ground, fracturing his leg. You +immobilize him completely. He is prone, +face down and still conscious. +Entangle foe's legs. Grapple weapon arm +and break it on an available surface. You +send foe to the ground. He falls very +hard and is knocked out. +Crushing grip around foe's neck. If no +neck armor, foe dies in 6 rounds from +your mortal grip. Foe is disarmed. +Attack results in strangling hold. Foe flails +legs in desperation. Foe is unable to break +free and dies after 9 rounds of helpless +struggling. Grim. +(-40) ++20H – 10∑∏ – (-30) +with neck armor: 3∑∏ ++3H – ∑ +100 +Foe’s legs are entangled long +enough to make him fall. He is +knocked out for 5 rounds. +Grip foe’s neck in a vicious hold. If foe +cannot break your grip in 4 rounds, he +will begin to pass out from suffocation. + Grip foe’s head and jerk it around. If foe +has no neck armor, he dies. +Grapple foe's head. His skull is fractured +during this assault. If he has no helm, he +is in a coma for 30 days. +Crush foe's windpipe and pull the head +from his body. You are mighty. ++9H – (+20) ++10H – ∑ – (-40) +no neck armor: +5H – 5∑∏ – (-75) +with helmet: +3H – 9∑∏ +1(+25) +4.2 grapple critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/grapple/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/grapple/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/grapple/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__01-05.png new file mode 100644 index 0000000..6c38a67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__06-10.png new file mode 100644 index 0000000..6e5f5c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__100.png new file mode 100644 index 0000000..29dd105 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__11-15.png new file mode 100644 index 0000000..00597e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__16-20.png new file mode 100644 index 0000000..99821e7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__21-35.png new file mode 100644 index 0000000..11b2ad4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__36-45.png new file mode 100644 index 0000000..f912817 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__46-50.png new file mode 100644 index 0000000..2d26408 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__51-55.png new file mode 100644 index 0000000..ef8dd77 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__56-60.png new file mode 100644 index 0000000..3b1555f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__61-65.png new file mode 100644 index 0000000..b4f6baf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__66.png new file mode 100644 index 0000000..1aad889 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__67-70.png new file mode 100644 index 0000000..9f12d2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__71-75.png new file mode 100644 index 0000000..9496bd1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__76-80.png new file mode 100644 index 0000000..b294ad0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__81-85.png new file mode 100644 index 0000000..26cc59d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__86-90.png new file mode 100644 index 0000000..958089c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__91-95.png new file mode 100644 index 0000000..38c63e5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__96-99.png new file mode 100644 index 0000000..c425c3d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__01-05.png new file mode 100644 index 0000000..0fcea17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__06-10.png new file mode 100644 index 0000000..b881f03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__100.png new file mode 100644 index 0000000..64b35ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__11-15.png new file mode 100644 index 0000000..14308f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__16-20.png new file mode 100644 index 0000000..b8e8208 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__21-35.png new file mode 100644 index 0000000..7caa3c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__36-45.png new file mode 100644 index 0000000..8f4a0c2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__46-50.png new file mode 100644 index 0000000..cb80967 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__51-55.png new file mode 100644 index 0000000..875918f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__56-60.png new file mode 100644 index 0000000..42d82d9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__61-65.png new file mode 100644 index 0000000..6737c28 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__66.png new file mode 100644 index 0000000..90d3f1d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__67-70.png new file mode 100644 index 0000000..e1e3fe3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__71-75.png new file mode 100644 index 0000000..666e4ee Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__76-80.png new file mode 100644 index 0000000..41a4955 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__81-85.png new file mode 100644 index 0000000..a586171 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__86-90.png new file mode 100644 index 0000000..2abdaca Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__91-95.png new file mode 100644 index 0000000..83c087a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__96-99.png new file mode 100644 index 0000000..9a856b7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__01-05.png new file mode 100644 index 0000000..615e2fb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__06-10.png new file mode 100644 index 0000000..00597ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__100.png new file mode 100644 index 0000000..6e54522 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__11-15.png new file mode 100644 index 0000000..c0a66ac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__16-20.png new file mode 100644 index 0000000..7b488af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__21-35.png new file mode 100644 index 0000000..1f3a7cf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__36-45.png new file mode 100644 index 0000000..d4945d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__46-50.png new file mode 100644 index 0000000..ff141b5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__51-55.png new file mode 100644 index 0000000..8beefbe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__56-60.png new file mode 100644 index 0000000..d5a486b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__61-65.png new file mode 100644 index 0000000..fb02837 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__66.png new file mode 100644 index 0000000..b91e24d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__67-70.png new file mode 100644 index 0000000..9c7b4a7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__71-75.png new file mode 100644 index 0000000..0bbb374 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__76-80.png new file mode 100644 index 0000000..916b743 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__81-85.png new file mode 100644 index 0000000..56e5336 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__86-90.png new file mode 100644 index 0000000..264545b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__91-95.png new file mode 100644 index 0000000..b6c2b4e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__96-99.png new file mode 100644 index 0000000..47a29c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__01-05.png new file mode 100644 index 0000000..90d002a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__06-10.png new file mode 100644 index 0000000..3047e39 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__100.png new file mode 100644 index 0000000..8e24149 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__11-15.png new file mode 100644 index 0000000..f430101 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__16-20.png new file mode 100644 index 0000000..325e9ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__21-35.png new file mode 100644 index 0000000..01aec4a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__36-45.png new file mode 100644 index 0000000..f5fa596 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__46-50.png new file mode 100644 index 0000000..3dea75e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__51-55.png new file mode 100644 index 0000000..8a1be1c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__56-60.png new file mode 100644 index 0000000..7219c40 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__61-65.png new file mode 100644 index 0000000..0531db1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__66.png new file mode 100644 index 0000000..936c817 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__67-70.png new file mode 100644 index 0000000..b04bfdd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__71-75.png new file mode 100644 index 0000000..1cbcf2b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__76-80.png new file mode 100644 index 0000000..eb8a6f8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__81-85.png new file mode 100644 index 0000000..88b2720 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__86-90.png new file mode 100644 index 0000000..c7d012f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__91-95.png new file mode 100644 index 0000000..1b5f18d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__96-99.png new file mode 100644 index 0000000..00bd8c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__01-05.png new file mode 100644 index 0000000..3c3041c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__06-10.png new file mode 100644 index 0000000..42a535f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__100.png new file mode 100644 index 0000000..e88d9ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__11-15.png new file mode 100644 index 0000000..c4b7704 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__16-20.png new file mode 100644 index 0000000..9c597c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__21-35.png new file mode 100644 index 0000000..85b133e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__36-45.png new file mode 100644 index 0000000..7f11c0c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__46-50.png new file mode 100644 index 0000000..be74fad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__51-55.png new file mode 100644 index 0000000..dd17fc1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__56-60.png new file mode 100644 index 0000000..f6724b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__61-65.png new file mode 100644 index 0000000..6c5368e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__66.png new file mode 100644 index 0000000..59916ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__67-70.png new file mode 100644 index 0000000..9aecbb4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__71-75.png new file mode 100644 index 0000000..de8d891 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__76-80.png new file mode 100644 index 0000000..99d7e6b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__81-85.png new file mode 100644 index 0000000..0f42d2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__86-90.png new file mode 100644 index 0000000..8915c66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__91-95.png new file mode 100644 index 0000000..039cbc7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__96-99.png new file mode 100644 index 0000000..6abcccc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/heat/fragments.json new file mode 100644 index 0000000..8e26882 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/heat/fragments.json @@ -0,0 +1,4202 @@ +[ + { + "PageNumber": 1, + "Top": 1145, + "Left": 103, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 112 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 130, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 134, + "Width": 9, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 143, + "Width": 82, + "Height": 8, + "Text": "= must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 234, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 239, + "Width": 9, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 249, + "Width": 86, + "Height": 8, + "Text": "= no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 292 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 344, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 348, + "Width": 16, + "Height": 9, + "Text": "\u2211 =", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 364, + "Width": 79, + "Height": 8, + "Text": "stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 452, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 457, + "Width": 7, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 464, + "Width": 88, + "Height": 8, + "Text": "= bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 561, + "Width": 90, + "Height": 8, + "Text": "(-\u00DF) = foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 660, + "Width": 125, + "Height": 8, + "Text": "(\u002B\u00DF) = attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 1142, + "Left": 837, + "Width": 17, + "Height": 13, + "Text": "91", + "Confidence": null, + "CenterX": 845.5 + }, + { + "PageNumber": 1, + "Top": 99, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 156, + "Width": 116, + "Height": 8, + "Text": "The air around foe shimmers. Pfft.", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "Attack is wild and boils nearby water.", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 445, + "Width": 112, + "Height": 8, + "Text": "Hot smoke makes foe\u0027s eyes red.", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "Foe evades the embrace of the flames.", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 92, + "Left": 735, + "Width": 125, + "Height": 8, + "Text": "Foe avoids the blast but not the heat.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 279, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 424, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 431 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 568, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 713, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 858, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 865 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 156, + "Width": 121, + "Height": 8, + "Text": "Hot wind makes foe uncomfortable.", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 301, + "Width": 133, + "Height": 8, + "Text": "Singe foe\u0027s exposed skin. The heat dies", + "Confidence": null, + "CenterX": 367.5 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 301, + "Width": 95, + "Height": 8, + "Text": "quick. Foe is not impressed.", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 445, + "Width": 126, + "Height": 8, + "Text": "Sparks and smoke dance all over foe.", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 445, + "Width": 118, + "Height": 8, + "Text": "He waves them off with little effort.", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 590, + "Width": 132, + "Height": 8, + "Text": "Flames surround foe. He seems to step", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 590, + "Width": 78, + "Height": 8, + "Text": "out of them unharmed.", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 735, + "Width": 128, + "Height": 8, + "Text": "Sweltering heat reachs out for foe. He", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 137, + "Left": 735, + "Width": 91, + "Height": 8, + "Text": "evades. You have initiative.", + "Confidence": null, + "CenterX": 780.5 + }, + { + "PageNumber": 1, + "Top": 155, + "Left": 279, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 155, + "Left": 424, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 431 + }, + { + "PageNumber": 1, + "Top": 155, + "Left": 568, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 155, + "Left": 713, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 155, + "Left": 858, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 865 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 107, + "Width": 36, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 156, + "Width": 121, + "Height": 8, + "Text": "Foe covers his face and leaps aside.", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 156, + "Width": 64, + "Height": 8, + "Text": "You have initiative.", + "Confidence": null, + "CenterX": 188 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 301, + "Width": 112, + "Height": 8, + "Text": "Foe simmers in his clothes. He is", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 301, + "Width": 115, + "Height": 8, + "Text": "unfocused and you have initiative.", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 445, + "Width": 122, + "Height": 8, + "Text": "Foe suspects that he is on fire. He is", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 445, + "Width": 101, + "Height": 8, + "Text": "wrong. You gain the initiative.", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "Foe is enshrouded by smoke. The heat", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 590, + "Width": 121, + "Height": 8, + "Text": "harms him little. You have initiative.", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 735, + "Width": 133, + "Height": 8, + "Text": "Flash unbalances foe and sends him on", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 735, + "Width": 113, + "Height": 8, + "Text": "the defensive. You have initiative.", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 279, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 424, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 431 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 568, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 713, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 841, + "Width": 31, + "Height": 8, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 156, + "Width": 132, + "Height": 8, + "Text": "Blast stings foe\u0027s hands and arms. You", + "Confidence": null, + "CenterX": 222 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 156, + "Width": 61, + "Height": 8, + "Text": "have the initiative.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "Assault blinds foe for a moment. You", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 301, + "Width": 89, + "Height": 8, + "Text": "have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 445, + "Width": 123, + "Height": 8, + "Text": "Hair and bowstrings are singed. You", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 445, + "Width": 89, + "Height": 8, + "Text": "have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 489.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "Foe strikes out at the flames to protect", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 590, + "Width": 131, + "Height": 8, + "Text": "himself. It seems to work well enough.", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 735, + "Width": 121, + "Height": 8, + "Text": "Foe fails to avoid some of the attack", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 735, + "Width": 76, + "Height": 8, + "Text": "and almost falls down.", + "Confidence": null, + "CenterX": 773 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 279, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 432, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 568, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 696, + "Width": 31, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 842, + "Width": 29, + "Height": 8, + "Text": "\u002B7H \u2013 \u03C0", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 156, + "Width": 110, + "Height": 8, + "Text": "Foe\u0027s chest and side heat up and", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 156, + "Width": 133, + "Height": 8, + "Text": "garments smolder from assault. He will", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 156, + "Width": 120, + "Height": 8, + "Text": "be easily kindled if you strike again.", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 301, + "Width": 122, + "Height": 8, + "Text": "Fire laden blast forces foe back. Any", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 301, + "Width": 114, + "Height": 8, + "Text": "containers of water boil and burst", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "open. You have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 445, + "Width": 105, + "Height": 8, + "Text": "Disorient foe with a tricky shot.", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 445, + "Width": 120, + "Height": 8, + "Text": "Garments smolder suspiciously. He", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 445, + "Width": 132, + "Height": 8, + "Text": "checks them carefully; guard is still up.", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 590, + "Width": 121, + "Height": 8, + "Text": "With a burst of flame, you cover foe", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 590, + "Width": 116, + "Height": 8, + "Text": "with heated air. Foe jumps back to", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 590, + "Width": 98, + "Height": 8, + "Text": "avoid any additional wounds.", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 259, + "Left": 735, + "Width": 117, + "Height": 8, + "Text": "Blister foe\u0027s weapon arm. He gives", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 735, + "Width": 129, + "Height": 8, + "Text": "ground to escape the heat. His footing", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 735, + "Width": 99, + "Height": 8, + "Text": "is better than you had hoped.", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 262, + "Width": 31, + "Height": 8, + "Text": "\u002B4H \u2013 \u2211", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 424, + "Width": 14, + "Height": 8, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 431 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 540, + "Width": 42, + "Height": 8, + "Text": "\u002B7H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 680, + "Width": 46, + "Height": 8, + "Text": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 703 + }, + { + "PageNumber": 1, + "Top": 297, + "Left": 819, + "Width": 53, + "Height": 8, + "Text": "\u002B9H \u2013 2\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 845.5 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 156, + "Width": 127, + "Height": 8, + "Text": "Hot winds dance around foe parching", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 156, + "Width": 103, + "Height": 8, + "Text": "his exposed skin. He puts up a", + "Confidence": null, + "CenterX": 207.5 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 156, + "Width": 63, + "Height": 8, + "Text": "desperate defence.", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 301, + "Width": 129, + "Height": 8, + "Text": "Foe\u0027s shield side is swathed in fire. He", + "Confidence": null, + "CenterX": 365.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 301, + "Width": 123, + "Height": 8, + "Text": "may use a shield to avoid the attack,", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 301, + "Width": 129, + "Height": 8, + "Text": "but it combust. Shield hand is burned.", + "Confidence": null, + "CenterX": 365.5 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 445, + "Width": 127, + "Height": 8, + "Text": "Heat catchs foe in lower leg. You gain", + "Confidence": null, + "CenterX": 508.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 445, + "Width": 130, + "Height": 8, + "Text": "initiative while foe regains his balance.", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 445, + "Width": 82, + "Height": 8, + "Text": "The pain stays with him.", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 590, + "Width": 119, + "Height": 8, + "Text": "Cover foe with a flash fire. Exposed", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 590, + "Width": 124, + "Height": 8, + "Text": "skin burns. The flames bite deep and", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 590, + "Width": 56, + "Height": 8, + "Text": "the pain is great.", + "Confidence": null, + "CenterX": 618 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 735, + "Width": 116, + "Height": 8, + "Text": "Strike to side and back ignite foe\u0027s", + "Confidence": null, + "CenterX": 793 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 735, + "Width": 130, + "Height": 8, + "Text": "cloak and pack. Neck and shoulder are", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 735, + "Width": 49, + "Height": 8, + "Text": "lightly burned.", + "Confidence": null, + "CenterX": 759.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 262, + "Width": 31, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 350, + "Left": 364, + "Width": 74, + "Height": 8, + "Text": "with shield: \u002B3H \u2013 3\u03C0", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 356, + "Width": 81, + "Height": 8, + "Text": "w/o shield: \u002B7H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 396.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 534, + "Width": 49, + "Height": 8, + "Text": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 558.5 + }, + { + "PageNumber": 1, + "Top": 350, + "Left": 659, + "Width": 68, + "Height": 8, + "Text": "If not wet: \u002B9H \u2013 2\u222B", + "Confidence": null, + "CenterX": 693 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 670, + "Width": 56, + "Height": 8, + "Text": "If wet: \u002B6H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 698 + }, + { + "PageNumber": 1, + "Top": 350, + "Left": 795, + "Width": 77, + "Height": 8, + "Text": "with backpack: \u002B8H \u2013\u222B", + "Confidence": null, + "CenterX": 833.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 783, + "Width": 88, + "Height": 8, + "Text": "w/o backpack:: \u002B10H \u2013 3\u222B", + "Confidence": null, + "CenterX": 827 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 156, + "Width": 133, + "Height": 8, + "Text": "Clothes smoke, then burn. Foe flails his", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 156, + "Width": 129, + "Height": 8, + "Text": "arms trying to put them out. The pain", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 156, + "Width": 103, + "Height": 8, + "Text": "edures longer than the flames.", + "Confidence": null, + "CenterX": 207.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 301, + "Width": 124, + "Height": 8, + "Text": "Foe evades most of the damage with", + "Confidence": null, + "CenterX": 363 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 301, + "Width": 125, + "Height": 8, + "Text": "some grace. The remainder scorches", + "Confidence": null, + "CenterX": 363.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 301, + "Width": 51, + "Height": 8, + "Text": "his side lightly.", + "Confidence": null, + "CenterX": 326.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 445, + "Width": 131, + "Height": 8, + "Text": "Flame spreads up foe\u0027s side and snaps", + "Confidence": null, + "CenterX": 510.5 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 445, + "Width": 130, + "Height": 8, + "Text": "at his arm and face. Exposed areas are", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 445, + "Width": 49, + "Height": 8, + "Text": "lightly burned.", + "Confidence": null, + "CenterX": 469.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 590, + "Width": 132, + "Height": 8, + "Text": "Assault lands on foe\u0027s weapon arm. He", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 590, + "Width": 131, + "Height": 8, + "Text": "makes a supreme effort to pull his arm", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "away. Foe is unable to protect himself.", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 735, + "Width": 127, + "Height": 8, + "Text": "Foe blocks flames with his weapon. A", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 385, + "Left": 735, + "Width": 128, + "Height": 8, + "Text": "wooden weapon is destroyed. A metal", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 735, + "Width": 113, + "Height": 8, + "Text": "weapon becomes too hot to hold.", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 250, + "Width": 42, + "Height": 8, + "Text": "\u002B7H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 271 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 391, + "Width": 46, + "Height": 8, + "Text": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 534, + "Width": 49, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 558.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 674, + "Width": 53, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 700.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 815, + "Width": 57, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 843.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 429, + "Left": 156, + "Width": 127, + "Height": 8, + "Text": "Spark sets a piece of foe\u0027s equipment", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 156, + "Width": 116, + "Height": 8, + "Text": "on fire. Foe must remove the item.", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 429, + "Left": 301, + "Width": 131, + "Height": 8, + "Text": "Foe ducks; attack torches back and the", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 301, + "Width": 114, + "Height": 8, + "Text": "ground behind him. He is shaken.", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 429, + "Left": 445, + "Width": 118, + "Height": 8, + "Text": "Hard strike to side, armor does not", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 445, + "Width": 122, + "Height": 8, + "Text": "help. Blow leaves a blistering mark.", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 429, + "Left": 590, + "Width": 126, + "Height": 8, + "Text": "Foe is aflame and takes damage for 3", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 590, + "Width": 78, + "Height": 8, + "Text": "rounds while he burns.", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 429, + "Left": 735, + "Width": 126, + "Height": 8, + "Text": "Your flames reach out. Foe frantically", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 735, + "Width": 109, + "Height": 8, + "Text": "leaps back . His chest is burned.", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 246, + "Width": 46, + "Height": 8, + "Text": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 389, + "Width": 49, + "Height": 8, + "Text": "\u002B8H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 413.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 530, + "Width": 53, + "Height": 8, + "Text": "\u002B9H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 556.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 670, + "Width": 57, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 698.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 812, + "Width": 60, + "Height": 8, + "Text": "\u002B13H \u2013 \u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 842 + }, + { + "PageNumber": 1, + "Top": 490, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 156, + "Width": 126, + "Height": 8, + "Text": "Assault ignites foe\u0027s back. Equipment", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 156, + "Width": 117, + "Height": 8, + "Text": "crackles as it burns and falls clear.", + "Confidence": null, + "CenterX": 214.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 301, + "Width": 119, + "Height": 8, + "Text": "Engulf foe in flame and smoke. The", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 301, + "Width": 122, + "Height": 8, + "Text": "flames die down; foe escapes death.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 445, + "Width": 111, + "Height": 8, + "Text": "Strong blast hits foe in legs; they", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 445, + "Width": 123, + "Height": 8, + "Text": "nearly give with pain. He recoils 5 ft.", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 590, + "Width": 122, + "Height": 8, + "Text": "Flames dance around foe\u0027s head. He", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 590, + "Width": 117, + "Height": 8, + "Text": "seeks to get clear and almost falls.", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 735, + "Width": 119, + "Height": 8, + "Text": "Garments over foe\u0027s shoulders and", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 735, + "Width": 105, + "Height": 8, + "Text": "head are set afire. He is frantic.", + "Confidence": null, + "CenterX": 787.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 245, + "Width": 49, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 378, + "Width": 59, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 407.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 495, + "Width": 87, + "Height": 8, + "Text": "with leg armor: \u002B8H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 474, + "Width": 109, + "Height": 8, + "Text": "w/o leg armor: \u002B10H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 528.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 614, + "Width": 113, + "Height": 8, + "Text": "With helmet: \u002B3H \u2013 2\u2211 \u2013 2(-10)", + "Confidence": null, + "CenterX": 670.5 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 649, + "Width": 77, + "Height": 8, + "Text": "w/o helmet: \u002B12H \u2013 2\u222B", + "Confidence": null, + "CenterX": 687.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 759, + "Width": 112, + "Height": 8, + "Text": "with helm: \u002B8H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 815 + }, + { + "PageNumber": 1, + "Top": 511, + "Left": 747, + "Width": 123, + "Height": 8, + "Text": "w/o helm: \u002B15H \u2013 2\u2211\u220F \u2013 (-10) \u20133\u222B", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 527, + "Left": 156, + "Width": 119, + "Height": 8, + "Text": "Well placed. Strike slams into foe\u0027s", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 156, + "Width": 122, + "Height": 8, + "Text": "weapon arm. Garments are burned.", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 156, + "Width": 84, + "Height": 8, + "Text": "Foe\u0027s evasion is comical.", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 527, + "Left": 301, + "Width": 116, + "Height": 8, + "Text": "Concentrated strike burns through", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 301, + "Width": 121, + "Height": 8, + "Text": "foe\u0027s leg. The flames do not last but", + "Confidence": null, + "CenterX": 361.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 301, + "Width": 119, + "Height": 8, + "Text": "foe\u0027s skin is exposed. Skin blisters.", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 527, + "Left": 445, + "Width": 118, + "Height": 8, + "Text": "Flames burst against foe\u0027s side. He", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 445, + "Width": 127, + "Height": 8, + "Text": "stumbles but does not fall. He tries to", + "Confidence": null, + "CenterX": 508.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 445, + "Width": 119, + "Height": 8, + "Text": "smother the fire with his garments.", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 527, + "Left": 590, + "Width": 131, + "Height": 8, + "Text": "Foe\u0027s shield arm and shield are on fire.", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 590, + "Width": 128, + "Height": 8, + "Text": "Dropping the shield only helps a little.", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 590, + "Width": 116, + "Height": 8, + "Text": "The flames cling to his garements.", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 527, + "Left": 735, + "Width": 123, + "Height": 8, + "Text": "Searing strike to foe\u0027s legs. Exposed", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 537, + "Left": 735, + "Width": 123, + "Height": 8, + "Text": "skin and muscle is burned. Infection", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 735, + "Width": 122, + "Height": 8, + "Text": "will follow. Foe struggles to stay up.", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 564, + "Left": 200, + "Width": 92, + "Height": 8, + "Text": "with arm greaves: \u002B7H \u2013 \u222B", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 574, + "Left": 196, + "Width": 96, + "Height": 8, + "Text": "w/o arm greaves: \u002B10H \u2013 3\u222B", + "Confidence": null, + "CenterX": 244 + }, + { + "PageNumber": 1, + "Top": 574, + "Left": 361, + "Width": 77, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211\u220F \u2013 (-5) \u2013 2\u222B", + "Confidence": null, + "CenterX": 399.5 + }, + { + "PageNumber": 1, + "Top": 574, + "Left": 497, + "Width": 86, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-10) \u2013 3\u222B", + "Confidence": null, + "CenterX": 540 + }, + { + "PageNumber": 1, + "Top": 564, + "Left": 613, + "Width": 113, + "Height": 8, + "Text": "with shield: \u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 4\u222B", + "Confidence": null, + "CenterX": 669.5 + }, + { + "PageNumber": 1, + "Top": 574, + "Left": 616, + "Width": 112, + "Height": 8, + "Text": "w/o shield: \u002B13H \u2013 2\u2211 \u2013 \u220F \u2013 6\u222B", + "Confidence": null, + "CenterX": 672 + }, + { + "PageNumber": 1, + "Top": 574, + "Left": 779, + "Width": 92, + "Height": 8, + "Text": "\u002B15H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 825 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 117, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 156, + "Width": 129, + "Height": 8, + "Text": "Flame grapples foe\u0027s shield and chest.", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 156, + "Width": 126, + "Height": 8, + "Text": "The wound is grave and infection will", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 156, + "Width": 23, + "Height": 8, + "Text": "follow.", + "Confidence": null, + "CenterX": 167.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 301, + "Width": 119, + "Height": 8, + "Text": "Fire lands along side foe\u0027s face. His", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "hair, cheek, and ear are engulfed. Foe", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 301, + "Width": 100, + "Height": 8, + "Text": "throws himself to the ground.", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 445, + "Width": 128, + "Height": 8, + "Text": "Blaze consumes garments on weapon", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 445, + "Width": 130, + "Height": 8, + "Text": "arm. Any metal covering heats up. Foe", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 445, + "Width": 65, + "Height": 8, + "Text": "falls from the blast.", + "Confidence": null, + "CenterX": 477.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 590, + "Width": 108, + "Height": 8, + "Text": "Foe\u0027s face and weapon hand are", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "scalded. Foe is having trouble opening", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 590, + "Width": 30, + "Height": 8, + "Text": "his eyes.", + "Confidence": null, + "CenterX": 605 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 735, + "Width": 127, + "Height": 8, + "Text": "Foe\u0027s combustible garments turn him", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 735, + "Width": 128, + "Height": 8, + "Text": "into a torch. He runs a short distance,", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 735, + "Width": 93, + "Height": 8, + "Text": "drops and dies in 6 rounds.", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 223, + "Width": 70, + "Height": 8, + "Text": "\u002B9H \u2013 2\u2211\u220F \u2013 (-15)", + "Confidence": null, + "CenterX": 258 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 385, + "Width": 52, + "Height": 8, + "Text": "\u002B10 \u2013 2\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 547, + "Width": 36, + "Height": 8, + "Text": "\u002B12H \u2013 3\u222B", + "Confidence": null, + "CenterX": 565 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 662, + "Width": 65, + "Height": 8, + "Text": "\u002B10\u2211 \u2013 (-10) \u2013 6\u222B", + "Confidence": null, + "CenterX": 694.5 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 156, + "Width": 101, + "Height": 8, + "Text": "Toast foe\u0027s side and send him", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 156, + "Width": 129, + "Height": 8, + "Text": "stumbling back 5 feet away from you.", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 156, + "Width": 133, + "Height": 8, + "Text": "He blocks his face against any renewed", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 156, + "Width": 26, + "Height": 8, + "Text": "assault.", + "Confidence": null, + "CenterX": 169 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "Flames seek out foe with a predator\u0027s", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 301, + "Width": 100, + "Height": 8, + "Text": "lust. He throws garments and", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 301, + "Width": 122, + "Height": 8, + "Text": "equipment off franticly to satisfy the", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 301, + "Width": 106, + "Height": 8, + "Text": "blaze. Foe is busy staying alive.", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 445, + "Width": 128, + "Height": 8, + "Text": "Back blast. Foe drops to one knee and", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 445, + "Width": 124, + "Height": 8, + "Text": "then rises again with some difficulty.", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 445, + "Width": 132, + "Height": 8, + "Text": "Some of his garments still smoke from", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 445, + "Width": 117, + "Height": 8, + "Text": "the assault. Skin is blistered badly.", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 590, + "Width": 110, + "Height": 8, + "Text": "Foe leaps back from your deadly", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 590, + "Width": 127, + "Height": 8, + "Text": "inferno. He escapes death but falls on", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 590, + "Width": 113, + "Height": 8, + "Text": "his back. He is prone for 1 round.", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 590, + "Width": 59, + "Height": 8, + "Text": "Minor arm burns.", + "Confidence": null, + "CenterX": 619.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 735, + "Width": 127, + "Height": 8, + "Text": "Blast leaps onto foe\u0027s shield arm. Any", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 735, + "Width": 128, + "Height": 8, + "Text": "shield foe has and his arm are on fire.", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 735, + "Width": 118, + "Height": 8, + "Text": "The heat penetrates deep and foe\u0027s", + "Confidence": null, + "CenterX": 794 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 735, + "Width": 47, + "Height": 8, + "Text": "face shows it.", + "Confidence": null, + "CenterX": 758.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 219, + "Width": 74, + "Height": 8, + "Text": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 256 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 343, + "Width": 94, + "Height": 8, + "Text": "\u002B7H \u2013 2\u2211 \u2013 \u220F \u2013 (-10) \u2013 2\u222B", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 510, + "Width": 72, + "Height": 8, + "Text": "2\u2211 \u2013 \u220F \u2013 (-15) \u2013 2\u222B", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 674, + "Width": 53, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 700.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 839, + "Width": 33, + "Height": 8, + "Text": "5\u222B\u2013 (-15)", + "Confidence": null, + "CenterX": 855.5 + }, + { + "PageNumber": 1, + "Top": 724, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 156, + "Width": 115, + "Height": 8, + "Text": "Fire consumes garments and hair.", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 156, + "Width": 125, + "Height": 8, + "Text": "Blinding smoke keeps foe\u0027s defenses", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 156, + "Width": 50, + "Height": 8, + "Text": "poorly aligned.", + "Confidence": null, + "CenterX": 181 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 301, + "Width": 128, + "Height": 8, + "Text": "Chest and arm blast damages organic", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 301, + "Width": 122, + "Height": 8, + "Text": "armor and engulfs any wood on foe.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 301, + "Width": 105, + "Height": 8, + "Text": "Metal armor heats up painfully.", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 445, + "Width": 99, + "Height": 8, + "Text": "Chest blast. Organic armor is", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 445, + "Width": 114, + "Height": 8, + "Text": "destroyed. Metal armor should be", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 445, + "Width": 58, + "Height": 8, + "Text": "removed quickly.", + "Confidence": null, + "CenterX": 474 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 590, + "Width": 124, + "Height": 8, + "Text": "Foe\u0027s weapon arm is a conflagration.", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 590, + "Width": 120, + "Height": 8, + "Text": "Hand and arm are useless. Muscles", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 590, + "Width": 85, + "Height": 8, + "Text": "and nerves are damaged.", + "Confidence": null, + "CenterX": 632.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 735, + "Width": 115, + "Height": 8, + "Text": "Strike center of foe\u0027s chest. Flame", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 717, + "Left": 735, + "Width": 126, + "Height": 8, + "Text": "spills in all directions. Foe is knocked", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 735, + "Width": 110, + "Height": 8, + "Text": "down. Chest armor is destroyed.", + "Confidence": null, + "CenterX": 790 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 250, + "Width": 42, + "Height": 8, + "Text": "\u002B12H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 271 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 333, + "Width": 104, + "Height": 8, + "Text": "\u002B9H \u2013 2\u2211 \u2013 \u220F \u2013 (-15) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 385 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 525, + "Width": 56, + "Height": 8, + "Text": "3\u2211 \u2013 (-15) \u2013 6\u222B", + "Confidence": null, + "CenterX": 553 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 689, + "Width": 39, + "Height": 8, + "Text": "6\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 708.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 808, + "Width": 64, + "Height": 8, + "Text": "\u002B15H \u2013 6\u222B \u2013 (-60)", + "Confidence": null, + "CenterX": 840 + }, + { + "PageNumber": 1, + "Top": 778, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 156, + "Width": 119, + "Height": 8, + "Text": "Foe\u0027s shield side engulfed in flame.", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 156, + "Width": 116, + "Height": 8, + "Text": "Foe\u0027s shield but it will be kindled if", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 156, + "Width": 29, + "Height": 8, + "Text": "wooden.", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 301, + "Width": 117, + "Height": 8, + "Text": "Abdomen entangled in flames. The", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 301, + "Width": 127, + "Height": 8, + "Text": "flames will spread upward next turn if", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 301, + "Width": 130, + "Height": 8, + "Text": "not extinguished. Foe sees the danger.", + "Confidence": null, + "CenterX": 366 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 445, + "Width": 115, + "Height": 8, + "Text": "Strike engulfs foe\u0027s most exposed", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 445, + "Width": 132, + "Height": 8, + "Text": "hand and burns it without mercy. Hand", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 445, + "Width": 127, + "Height": 8, + "Text": "is useless. Arm clothing is destroyed.", + "Confidence": null, + "CenterX": 508.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 590, + "Width": 130, + "Height": 8, + "Text": "Foe\u0027s side is ignited by your strike and", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 590, + "Width": 131, + "Height": 8, + "Text": "the wounds are deep. He smothers the", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 590, + "Width": 94, + "Height": 8, + "Text": "fire but the damage is done.", + "Confidence": null, + "CenterX": 637 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 735, + "Width": 133, + "Height": 8, + "Text": "Blast lands on foe\u0027s side but spreads to", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 735, + "Width": 126, + "Height": 8, + "Text": "arms and legs. A shield prevents arm", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 735, + "Width": 127, + "Height": 8, + "Text": "damage but his hands are burned off.", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 217, + "Width": 75, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 254.5 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 409, + "Width": 28, + "Height": 8, + "Text": "20 \u2013 2\u222B", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 544, + "Width": 39, + "Height": 8, + "Text": "6\u2211 \u2013 (-40)", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 687, + "Width": 39, + "Height": 8, + "Text": "3\u2211\u220F \u2013 5\u222B", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 828, + "Width": 44, + "Height": 8, + "Text": "\u002B20H \u2013 12\u2211", + "Confidence": null, + "CenterX": 850 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 156, + "Width": 133, + "Height": 8, + "Text": "Foe exposes his back while evading the", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 156, + "Width": 132, + "Height": 8, + "Text": "strike. Blast scorches a small wound in", + "Confidence": null, + "CenterX": 222 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 156, + "Width": 64, + "Height": 8, + "Text": "his shoulder blade.", + "Confidence": null, + "CenterX": 188 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 301, + "Width": 122, + "Height": 8, + "Text": "Strike knocks foe down on his back.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 301, + "Width": 121, + "Height": 8, + "Text": "The flames do not endure but much", + "Confidence": null, + "CenterX": 361.5 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 301, + "Width": 110, + "Height": 8, + "Text": "equipment is burned or crushed.", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 445, + "Width": 131, + "Height": 8, + "Text": "Violent inferno destroys organic armor", + "Confidence": null, + "CenterX": 510.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 445, + "Width": 130, + "Height": 8, + "Text": "and ruins metal armor on leg. Much of", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 445, + "Width": 121, + "Height": 8, + "Text": "the blast tumbles clear after impact.", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 590, + "Width": 121, + "Height": 8, + "Text": "Foe\u0027s arms and chest embrace your", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 590, + "Width": 123, + "Height": 8, + "Text": "infernal strike. Arms are useless and", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 590, + "Width": 94, + "Height": 8, + "Text": "foe\u0027s skin is open to the air.", + "Confidence": null, + "CenterX": 637 + }, + { + "PageNumber": 1, + "Top": 815, + "Left": 735, + "Width": 130, + "Height": 8, + "Text": "Foe inhales flames scalding lungs and", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 735, + "Width": 126, + "Height": 8, + "Text": "throat Foe is active for 12 rnds (while", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 835, + "Left": 735, + "Width": 70, + "Height": 8, + "Text": "he burns), then dies.", + "Confidence": null, + "CenterX": 770 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 215, + "Width": 79, + "Height": 8, + "Text": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 254.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 411, + "Width": 26, + "Height": 8, + "Text": "\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 424 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 547, + "Width": 35, + "Height": 8, + "Text": "(-20) \u2013 2\u222B", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 687, + "Width": 40, + "Height": 8, + "Text": "\u002B15H \u2013 9\u2211", + "Confidence": null, + "CenterX": 707 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 891, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 156, + "Width": 122, + "Height": 8, + "Text": "Assault to foe\u0027s lower leg consumes", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 156, + "Width": 131, + "Height": 8, + "Text": "covering. Foe falls down. One leg is on", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 156, + "Width": 13, + "Height": 8, + "Text": "fire.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 301, + "Width": 118, + "Height": 8, + "Text": "Leg covering is set on fire by blast.", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 301, + "Width": 131, + "Height": 8, + "Text": "It spreads quickly and foe is in trouble.", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 301, + "Width": 118, + "Height": 8, + "Text": "The flames will grow if not put out.", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 445, + "Width": 110, + "Height": 8, + "Text": "Foe\u0027s shield side is devoured by", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 445, + "Width": 126, + "Height": 8, + "Text": "flames. Head, arm, side, and leg have", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 445, + "Width": 125, + "Height": 8, + "Text": "critical burns. If foe has a shield, it is", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 445, + "Width": 100, + "Height": 8, + "Text": "destroyed in place of his arm.", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 590, + "Width": 127, + "Height": 8, + "Text": "Blast engulfs lower half of foe\u0027s body.", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 590, + "Width": 112, + "Height": 8, + "Text": "If foe has abdominal armor, he is", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 590, + "Width": 111, + "Height": 8, + "Text": "knocked out. If not, he dies in 12", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 590, + "Width": 123, + "Height": 8, + "Text": "inactive rounds from organ damage.", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 735, + "Width": 114, + "Height": 8, + "Text": "Foe\u0027s lower body is badly burned.", + "Confidence": null, + "CenterX": 792 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 735, + "Width": 125, + "Height": 8, + "Text": "Nerves, organs and tissue destroyed.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 735, + "Width": 109, + "Height": 8, + "Text": "Foe is paralyzed and will die in 9", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 735, + "Width": 123, + "Height": 8, + "Text": "rounds from shock and dehydration.", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 245, + "Width": 48, + "Height": 8, + "Text": "\u002B10H \u2013 2(-10)", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 395, + "Width": 42, + "Height": 8, + "Text": "\u002B16H \u2013 3\u2211", + "Confidence": null, + "CenterX": 416 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 492, + "Width": 90, + "Height": 8, + "Text": "\u002B15H \u2013 6\u2211\u220F \u2013 (-85) \u2013 3\u222B", + "Confidence": null, + "CenterX": 537 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 637, + "Width": 90, + "Height": 8, + "Text": "with abdominal armor: 2\u222B", + "Confidence": null, + "CenterX": 682 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 156, + "Width": 127, + "Height": 8, + "Text": "Blow to foe\u0027s head. If he has helmet it", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 156, + "Width": 120, + "Height": 8, + "Text": "heats up like a furnace and must be", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 156, + "Width": 133, + "Height": 8, + "Text": "painfully removed. Foe ears and cheeks", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 156, + "Width": 39, + "Height": 8, + "Text": "are burned.", + "Confidence": null, + "CenterX": 175.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 301, + "Width": 119, + "Height": 8, + "Text": "Head strike. Force of blast removes", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 301, + "Width": 127, + "Height": 8, + "Text": "any helmet worn. Hair, scalp and skin", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 301, + "Width": 128, + "Height": 8, + "Text": "burn. Smoke and flame blind foe for 3", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 301, + "Width": 17, + "Height": 8, + "Text": "rnds.", + "Confidence": null, + "CenterX": 309.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 445, + "Width": 123, + "Height": 8, + "Text": "Trapped in the furnace of your blast,", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 445, + "Width": 126, + "Height": 8, + "Text": "foe is overcome and falls down. He is", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 445, + "Width": 98, + "Height": 8, + "Text": "unconsious and still burning.", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 590, + "Width": 132, + "Height": 8, + "Text": "Flames assault upper body. If foe has a", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 590, + "Width": 126, + "Height": 8, + "Text": "full helm, he is blinded and in a coma", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 590, + "Width": 125, + "Height": 8, + "Text": "for 2 days. If not, he dies in 6 rounds", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 590, + "Width": 108, + "Height": 8, + "Text": "due to shock and brain damage.", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 735, + "Width": 130, + "Height": 8, + "Text": "Foe is cremated before your very eyes.", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 735, + "Width": 128, + "Height": 8, + "Text": "He remains standing for 6 rounds and", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 735, + "Width": 110, + "Height": 8, + "Text": "then drops and dies. A small fire", + "Confidence": null, + "CenterX": 790 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 735, + "Width": 119, + "Height": 8, + "Text": "lingers over the remains. A horrible", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 735, + "Width": 15, + "Height": 8, + "Text": "end.", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 183, + "Width": 109, + "Height": 8, + "Text": "with helmet: \u002B15H \u2013 3\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 237.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 179, + "Width": 114, + "Height": 8, + "Text": "w/o helmet: \u002B12H \u2013 2\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 236 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 339, + "Width": 99, + "Height": 8, + "Text": "with helmet: \u002B10H \u2013 3\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 388.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 386, + "Width": 51, + "Height": 8, + "Text": "w/o helmet: 8\u222B", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 491, + "Width": 91, + "Height": 8, + "Text": "\u002B18H \u2013 6\u2211\u220F \u2013 (\u201390) \u2013 4\u222B", + "Confidence": null, + "CenterX": 536.5 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 722, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 724 + }, + { + "PageNumber": 1, + "Top": 1001, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 1039, + "Left": 107, + "Width": 37, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 125.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 156, + "Width": 119, + "Height": 8, + "Text": "Blast lands on the weapon arm and", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 156, + "Width": 126, + "Height": 8, + "Text": "climbs up to foe\u0027s neck. It burns all it", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 1037, + "Left": 156, + "Width": 122, + "Height": 8, + "Text": "touches. If foe has any organic neck", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 156, + "Width": 81, + "Height": 8, + "Text": "covering it is destroyed.", + "Confidence": null, + "CenterX": 196.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 301, + "Width": 114, + "Height": 8, + "Text": "Flames burn into foe\u0027s throat. The", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 301, + "Width": 114, + "Height": 8, + "Text": "damage is frightening. Foe\u0027s neck", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 1037, + "Left": 301, + "Width": 127, + "Height": 8, + "Text": "collapses in the flames. He drops and", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 301, + "Width": 128, + "Height": 8, + "Text": "dies in 9 inactive rnds. He smells bad.", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 445, + "Width": 118, + "Height": 8, + "Text": "Intense heat fuses metal, cloth and", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 445, + "Width": 131, + "Height": 8, + "Text": "skin. Foe is unrecognizable. If no chest", + "Confidence": null, + "CenterX": 510.5 + }, + { + "PageNumber": 1, + "Top": 1037, + "Left": 445, + "Width": 126, + "Height": 8, + "Text": "armor he is dead instantly. Otherwise", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 445, + "Width": 113, + "Height": 8, + "Text": "he dies after 9 rounds of burning.", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 590, + "Width": 127, + "Height": 8, + "Text": "Foe is trapped in the furnace made by", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 590, + "Width": 129, + "Height": 8, + "Text": "your attack. Organs are destroyed and", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 1037, + "Left": 590, + "Width": 122, + "Height": 8, + "Text": "foe\u0027s blood boils. He has no hope of", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 590, + "Width": 128, + "Height": 8, + "Text": "survival and dies in 6 inactive rounds.", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 1017, + "Left": 735, + "Width": 120, + "Height": 8, + "Text": "Your foe is devoured by a hellfire of", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 735, + "Width": 115, + "Height": 8, + "Text": "which even you are frightened. All", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 1037, + "Left": 735, + "Width": 127, + "Height": 8, + "Text": "combustibles within 10 ft ignite. Little", + "Confidence": null, + "CenterX": 798.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 735, + "Width": 101, + "Height": 8, + "Text": "will remain when the fire dies.", + "Confidence": null, + "CenterX": 785.5 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 258, + "Width": 35, + "Height": 8, + "Text": "4\u2211\u220F \u20138\u222B", + "Confidence": null, + "CenterX": 275.5 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 371, + "Width": 67, + "Height": 8, + "Text": "\u002B20H \u2013 12\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 404.5 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 577, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 579 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 709, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 853, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 113, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 156, + "Width": 131, + "Height": 8, + "Text": "Brutally scar the side of foe\u0027s face. Foe", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 156, + "Width": 124, + "Height": 8, + "Text": "is knocked out. He loses 50 from his", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 1100, + "Left": 156, + "Width": 131, + "Height": 8, + "Text": "Appearance and 25 from his Presence.", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 301, + "Width": 130, + "Height": 8, + "Text": "Assault consumes clothing and tissue.", + "Confidence": null, + "CenterX": 366 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 301, + "Width": 130, + "Height": 8, + "Text": "Foe\u0027s arms and chest are without skin.", + "Confidence": null, + "CenterX": 366 + }, + { + "PageNumber": 1, + "Top": 1100, + "Left": 301, + "Width": 126, + "Height": 8, + "Text": "Foe is paralyzed. Infection will follow.", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 445, + "Width": 132, + "Height": 8, + "Text": "Strike to foe\u0027s head. If he has a helmet,", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 445, + "Width": 117, + "Height": 8, + "Text": "his head is broiled and he dies in 2", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 1100, + "Left": 445, + "Width": 119, + "Height": 8, + "Text": "rnds. If no helmet he dies instantly.", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 590, + "Width": 131, + "Height": 8, + "Text": "Every part of foe is ablaze. He dies in 2", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 590, + "Width": 123, + "Height": 8, + "Text": "rounds, making terrifying noises. He", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 1100, + "Left": 590, + "Width": 110, + "Height": 8, + "Text": "continues to burn for 12 rounds.", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 735, + "Width": 118, + "Height": 8, + "Text": "Fire devours every part of foe in an", + "Confidence": null, + "CenterX": 794 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 735, + "Width": 125, + "Height": 8, + "Text": "instant. Bits of metal, teeth and a few", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 1100, + "Left": 735, + "Width": 98, + "Height": 8, + "Text": "bones shower to the ground.", + "Confidence": null, + "CenterX": 784 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 258, + "Width": 36, + "Height": 8, + "Text": "\u002B20H \u2013 5\u222B", + "Confidence": null, + "CenterX": 276 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 419, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 428 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 564, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 573.5 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 709, + "Width": 19, + "Height": 8, + "Text": "(\u002B15)", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 853, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 68, + "Left": 217, + "Width": 14, + "Height": 14, + "Text": "A", + "Confidence": null, + "CenterX": 224 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 362, + "Width": 13, + "Height": 14, + "Text": "B", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 505, + "Width": 16, + "Height": 14, + "Text": "C", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 68, + "Left": 649, + "Width": 19, + "Height": 14, + "Text": "D", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 796, + "Width": 13, + "Height": 14, + "Text": "E", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 333, + "Width": 366, + "Height": 18, + "Text": "HEAT CRITICAL STRIKE TABLE A-10.10.2", + "Confidence": null, + "CenterX": 516 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 446, + "Width": 122, + "Height": 8, + "Text": "the blast rumbles clear after impact.", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 156, + "Width": 126, + "Height": 8, + "Text": "Foe\u0027s shield side is engulfed in flame.", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 156, + "Width": 112, + "Height": 8, + "Text": "Foe\u0027s shield is kindled if wooden.", + "Confidence": null, + "CenterX": 212 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 301, + "Width": 129, + "Height": 8, + "Text": "Foe\u0027s shield side is swathed in fire. He", + "Confidence": null, + "CenterX": 365.5 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 301, + "Width": 123, + "Height": 8, + "Text": "may use a shield to avoid the attack,", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 301, + "Width": 133, + "Height": 8, + "Text": "but it combusts. Shield hand is burned.", + "Confidence": null, + "CenterX": 367.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 349, + "Width": 329, + "Height": 19, + "Text": "14.3 HEAT CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 513.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/heat/pages/page-001.png new file mode 100644 index 0000000..345f718 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/heat/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/heat/parsed-cells.json new file mode 100644 index 0000000..832d064 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/heat/parsed-cells.json @@ -0,0 +1,7761 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "The air around foe shimmers. Pfft.", + "\u002B0H" + ], + "BaseLines": [ + "The air around foe shimmers. Pfft.", + "\u002B0H" + ], + "RawCellText": "The air around foe shimmers. Pfft.\n\u002B0H", + "DescriptionText": "The air around foe shimmers. Pfft.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 92, + "Width": 137, + "Height": 27 + }, + "SourceImagePath": "heat/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 368, + "BoundsWidth": 548, + "BoundsHeight": 108, + "CropLeft": 576, + "CropTop": 336, + "CropWidth": 644, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Attack is wild and boils nearby water.", + "\u002B0H" + ], + "BaseLines": [ + "Attack is wild and boils nearby water.", + "\u002B0H" + ], + "RawCellText": "Attack is wild and boils nearby water.\n\u002B0H", + "DescriptionText": "Attack is wild and boils nearby water.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 92, + "Width": 137, + "Height": 27 + }, + "SourceImagePath": "heat/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 368, + "BoundsWidth": 548, + "BoundsHeight": 108, + "CropLeft": 1156, + "CropTop": 336, + "CropWidth": 644, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Hot smoke makes foe\u0027s eyes red.", + "\u002B1H" + ], + "BaseLines": [ + "Hot smoke makes foe\u0027s eyes red.", + "\u002B1H" + ], + "RawCellText": "Hot smoke makes foe\u0027s eyes red.\n\u002B1H", + "DescriptionText": "Hot smoke makes foe\u0027s eyes red.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 92, + "Width": 137, + "Height": 27 + }, + "SourceImagePath": "heat/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 368, + "BoundsWidth": 548, + "BoundsHeight": 108, + "CropLeft": 1732, + "CropTop": 336, + "CropWidth": 644, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Foe evades the embrace of the flames.", + "\u002B2H" + ], + "BaseLines": [ + "Foe evades the embrace of the flames.", + "\u002B2H" + ], + "RawCellText": "Foe evades the embrace of the flames.\n\u002B2H", + "DescriptionText": "Foe evades the embrace of the flames.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 92, + "Width": 137, + "Height": 27 + }, + "SourceImagePath": "heat/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 368, + "BoundsWidth": 548, + "BoundsHeight": 108, + "CropLeft": 2312, + "CropTop": 336, + "CropWidth": 644, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Foe avoids the blast but not the heat.", + "\u002B3H" + ], + "BaseLines": [ + "Foe avoids the blast but not the heat.", + "\u002B3H" + ], + "RawCellText": "Foe avoids the blast but not the heat.\n\u002B3H", + "DescriptionText": "Foe avoids the blast but not the heat.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 92, + "Width": 137, + "Height": 27 + }, + "SourceImagePath": "heat/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 368, + "BoundsWidth": 548, + "BoundsHeight": 108, + "CropLeft": 2892, + "CropTop": 336, + "CropWidth": 644, + "CropHeight": 172, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Hot wind makes foe uncomfortable.", + "\u002B1H" + ], + "BaseLines": [ + "Hot wind makes foe uncomfortable.", + "\u002B1H" + ], + "RawCellText": "Hot wind makes foe uncomfortable.\n\u002B1H", + "DescriptionText": "Hot wind makes foe uncomfortable.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 127, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 508, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 576, + "CropTop": 476, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Singe foe\u0027s exposed skin. The heat dies", + "quick. Foe is not impressed.", + "\u002B2H" + ], + "BaseLines": [ + "Singe foe\u0027s exposed skin. The heat dies", + "quick. Foe is not impressed.", + "\u002B2H" + ], + "RawCellText": "Singe foe\u0027s exposed skin. The heat dies\nquick. Foe is not impressed.\n\u002B2H", + "DescriptionText": "Singe foe\u0027s exposed skin. The heat dies quick. Foe is not impressed.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 127, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 508, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 1156, + "CropTop": 476, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Sparks and smoke dance all over foe.", + "He waves them off with little effort.", + "\u002B3H" + ], + "BaseLines": [ + "Sparks and smoke dance all over foe.", + "He waves them off with little effort.", + "\u002B3H" + ], + "RawCellText": "Sparks and smoke dance all over foe.\nHe waves them off with little effort.\n\u002B3H", + "DescriptionText": "Sparks and smoke dance all over foe. He waves them off with little effort.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 127, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 508, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 1732, + "CropTop": 476, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Flames surround foe. He seems to step", + "out of them unharmed.", + "\u002B4H" + ], + "BaseLines": [ + "Flames surround foe. He seems to step", + "out of them unharmed.", + "\u002B4H" + ], + "RawCellText": "Flames surround foe. He seems to step\nout of them unharmed.\n\u002B4H", + "DescriptionText": "Flames surround foe. He seems to step out of them unharmed.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 127, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 508, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 2312, + "CropTop": 476, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Sweltering heat reachs out for foe. He", + "evades. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Sweltering heat reachs out for foe. He", + "evades. You have initiative.", + "\u002B4H" + ], + "RawCellText": "Sweltering heat reachs out for foe. He\nevades. You have initiative.\n\u002B4H", + "DescriptionText": "Sweltering heat reachs out for foe. He evades. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 127, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 508, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 2892, + "CropTop": 476, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foe covers his face and leaps aside.", + "You have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "Foe covers his face and leaps aside.", + "You have initiative.", + "\u002B2H" + ], + "RawCellText": "Foe covers his face and leaps aside.\nYou have initiative.\n\u002B2H", + "DescriptionText": "Foe covers his face and leaps aside. You have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 170, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 576, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe simmers in his clothes. He is", + "unfocused and you have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "Foe simmers in his clothes. He is", + "unfocused and you have initiative.", + "\u002B2H" + ], + "RawCellText": "Foe simmers in his clothes. He is\nunfocused and you have initiative.\n\u002B2H", + "DescriptionText": "Foe simmers in his clothes. He is unfocused and you have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 170, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 1156, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Foe suspects that he is on fire. He is", + "wrong. You gain the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Foe suspects that he is on fire. He is", + "wrong. You gain the initiative.", + "\u002B3H" + ], + "RawCellText": "Foe suspects that he is on fire. He is\nwrong. You gain the initiative.\n\u002B3H", + "DescriptionText": "Foe suspects that he is on fire. He is wrong. You gain the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 170, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 1732, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe is enshrouded by smoke. The heat", + "harms him little. You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Foe is enshrouded by smoke. The heat", + "harms him little. You have initiative.", + "\u002B4H" + ], + "RawCellText": "Foe is enshrouded by smoke. The heat\nharms him little. You have initiative.\n\u002B4H", + "DescriptionText": "Foe is enshrouded by smoke. The heat harms him little. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 170, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 2312, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Flash unbalances foe and sends him on", + "the defensive. You have initiative.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Flash unbalances foe and sends him on", + "the defensive. You have initiative.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Flash unbalances foe and sends him on\nthe defensive. You have initiative.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Flash unbalances foe and sends him on the defensive. You have initiative.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 170, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "heat/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 680, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 2892, + "CropTop": 648, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Blast stings foe\u0027s hands and arms. You", + "have the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Blast stings foe\u0027s hands and arms. You", + "have the initiative.", + "\u002B3H" + ], + "RawCellText": "Blast stings foe\u0027s hands and arms. You\nhave the initiative.\n\u002B3H", + "DescriptionText": "Blast stings foe\u0027s hands and arms. You have the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 214, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 856, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 576, + "CropTop": 824, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Assault blinds foe for a moment. You", + "have 2 rounds of initiative.", + "\u2013" + ], + "BaseLines": [ + "Assault blinds foe for a moment. You", + "have 2 rounds of initiative.", + "\u2013" + ], + "RawCellText": "Assault blinds foe for a moment. You\nhave 2 rounds of initiative.\n\u2013", + "DescriptionText": "Assault blinds foe for a moment. You have 2 rounds of initiative.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 214, + "Width": 135, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 856, + "BoundsWidth": 540, + "BoundsHeight": 148, + "CropLeft": 1156, + "CropTop": 824, + "CropWidth": 636, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Hair and bowstrings are singed. You", + "have 2 rounds of initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Hair and bowstrings are singed. You", + "have 2 rounds of initiative.", + "\u002B5H" + ], + "RawCellText": "Hair and bowstrings are singed. You\nhave 2 rounds of initiative.\n\u002B5H", + "DescriptionText": "Hair and bowstrings are singed. You have 2 rounds of initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 214, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 856, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 1732, + "CropTop": 824, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe strikes out at the flames to protect", + "himself. It seems to work well enough.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe strikes out at the flames to protect", + "himself. It seems to work well enough.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Foe strikes out at the flames to protect\nhimself. It seems to work well enough.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Foe strikes out at the flames to protect himself. It seems to work well enough.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 214, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 856, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 824, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B7H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B7H \u2013 \u03C0" + ], + "RawCellText": "Foe fails to avoid some of the attack\nand almost falls down.\n\u002B7H \u2013 \u03C0", + "DescriptionText": "Foe fails to avoid some of the attack and almost falls down.", + "RawAffixText": "\u002B7H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 214, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 856, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 2892, + "CropTop": 824, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s chest and side heat up and", + "garments smolder from assault. He will", + "be easily kindled if you strike again.", + "\u002B4H \u2013 \u2211" + ], + "BaseLines": [ + "Foe\u0027s chest and side heat up and", + "garments smolder from assault. He will", + "be easily kindled if you strike again.", + "\u002B4H \u2013 \u2211" + ], + "RawCellText": "Foe\u0027s chest and side heat up and\ngarments smolder from assault. He will\nbe easily kindled if you strike again.\n\u002B4H \u2013 \u2211", + "DescriptionText": "Foe\u0027s chest and side heat up and garments smolder from assault. He will be easily kindled if you strike again.", + "RawAffixText": "\u002B4H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 259, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "heat/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 1036, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 576, + "CropTop": 1004, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Fire laden blast forces foe back. Any", + "containers of water boil and burst", + "open. You have 2 rounds of initiative.", + "\u002B6H" + ], + "BaseLines": [ + "Fire laden blast forces foe back. Any", + "containers of water boil and burst", + "open. You have 2 rounds of initiative.", + "\u002B6H" + ], + "RawCellText": "Fire laden blast forces foe back. Any\ncontainers of water boil and burst\nopen. You have 2 rounds of initiative.\n\u002B6H", + "DescriptionText": "Fire laden blast forces foe back. Any containers of water boil and burst open. You have 2 rounds of initiative.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 259, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "heat/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 1036, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 1156, + "CropTop": 1004, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Disorient foe with a tricky shot.", + "Garments smolder suspiciously. He", + "checks them carefully; guard is still up.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Disorient foe with a tricky shot.", + "Garments smolder suspiciously. He", + "checks them carefully; guard is still up.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B" + ], + "RawCellText": "Disorient foe with a tricky shot.\nGarments smolder suspiciously. He\nchecks them carefully; guard is still up.\n\u002B7H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "Disorient foe with a tricky shot. Garments smolder suspiciously. He checks them carefully; guard is still up.", + "RawAffixText": "\u002B7H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 259, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "heat/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 1036, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 1732, + "CropTop": 1004, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "With a burst of flame, you cover foe", + "with heated air. Foe jumps back to", + "avoid any additional wounds.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "With a burst of flame, you cover foe", + "with heated air. Foe jumps back to", + "avoid any additional wounds.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "With a burst of flame, you cover foe\nwith heated air. Foe jumps back to\navoid any additional wounds.\n\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "With a burst of flame, you cover foe with heated air. Foe jumps back to avoid any additional wounds.", + "RawAffixText": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 259, + "Width": 136, + "Height": 46 + }, + "SourceImagePath": "heat/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1036, + "BoundsWidth": 544, + "BoundsHeight": 184, + "CropLeft": 2312, + "CropTop": 1004, + "CropWidth": 640, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Blister foe\u0027s weapon arm. He gives", + "ground to escape the heat. His footing", + "is better than you had hoped.", + "\u002B9H \u2013 2\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Blister foe\u0027s weapon arm. He gives", + "ground to escape the heat. His footing", + "is better than you had hoped.", + "\u002B9H \u2013 2\u03C0 \u2013 2\u222B" + ], + "RawCellText": "Blister foe\u0027s weapon arm. He gives\nground to escape the heat. His footing\nis better than you had hoped.\n\u002B9H \u2013 2\u03C0 \u2013 2\u222B", + "DescriptionText": "Blister foe\u0027s weapon arm. He gives ground to escape the heat. His footing is better than you had hoped.", + "RawAffixText": "\u002B9H \u2013 2\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 259, + "Width": 137, + "Height": 46 + }, + "SourceImagePath": "heat/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1036, + "BoundsWidth": 548, + "BoundsHeight": 184, + "CropLeft": 2892, + "CropTop": 1004, + "CropWidth": 644, + "CropHeight": 248, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Hot winds dance around foe parching", + "his exposed skin. He puts up a", + "desperate defence.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Hot winds dance around foe parching", + "his exposed skin. He puts up a", + "desperate defence.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Hot winds dance around foe parching\nhis exposed skin. He puts up a\ndesperate defence.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Hot winds dance around foe parching his exposed skin. He puts up a desperate defence.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 312, + "Width": 137, + "Height": 56 + }, + "SourceImagePath": "heat/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 1248, + "BoundsWidth": 548, + "BoundsHeight": 224, + "CropLeft": 576, + "CropTop": 1216, + "CropWidth": 644, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s shield side is swathed in fire. He Foe\u0027s shield side is swathed in fire. He", + "may use a shield to avoid the attack, may use a shield to avoid the attack,", + "but it combust. Shield hand is burned. but it combusts. Shield hand is burned.", + "with shield: \u002B3H \u2013 3\u03C0", + "w/o shield: \u002B7H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Foe\u0027s shield side is swathed in fire. He Foe\u0027s shield side is swathed in fire. He", + "may use a shield to avoid the attack, may use a shield to avoid the attack,", + "but it combust. Shield hand is burned. but it combusts. Shield hand is burned." + ], + "RawCellText": "Foe\u0027s shield side is swathed in fire. He Foe\u0027s shield side is swathed in fire. He\nmay use a shield to avoid the attack, may use a shield to avoid the attack,\nbut it combust. Shield hand is burned. but it combusts. Shield hand is burned.", + "DescriptionText": "Foe\u0027s shield side is swathed in fire. He Foe\u0027s shield side is swathed in fire. He may use a shield to avoid the attack, may use a shield to avoid the attack, but it combust. Shield hand is burned. but it combusts. Shield hand is burned.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B3H \u2013 3\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 3\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B7H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 312, + "Width": 137, + "Height": 56 + }, + "SourceImagePath": "heat/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 1248, + "BoundsWidth": 548, + "BoundsHeight": 224, + "CropLeft": 1156, + "CropTop": 1216, + "CropWidth": 644, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Heat catchs foe in lower leg. You gain", + "initiative while foe regains his balance.", + "The pain stays with him.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Heat catchs foe in lower leg. You gain", + "initiative while foe regains his balance.", + "The pain stays with him.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "Heat catchs foe in lower leg. You gain\ninitiative while foe regains his balance.\nThe pain stays with him.\n\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "Heat catchs foe in lower leg. You gain initiative while foe regains his balance. The pain stays with him.", + "RawAffixText": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 312, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "heat/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 1248, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 1732, + "CropTop": 1216, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Cover foe with a flash fire. Exposed", + "skin burns. The flames bite deep and", + "the pain is great.", + "If not wet: \u002B9H \u2013 2\u222B", + "If wet: \u002B6H \u2013 2\u03C0" + ], + "BaseLines": [ + "Cover foe with a flash fire. Exposed", + "skin burns. The flames bite deep and", + "the pain is great." + ], + "RawCellText": "Cover foe with a flash fire. Exposed\nskin burns. The flames bite deep and\nthe pain is great.", + "DescriptionText": "Cover foe with a flash fire. Exposed skin burns. The flames bite deep and the pain is great.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "if_not_wet", + "ConditionText": "If not wet", + "RawText": "If not wet: \u002B9H \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "if_wet", + "ConditionText": "If wet", + "RawText": "If wet: \u002B6H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 312, + "Width": 137, + "Height": 56 + }, + "SourceImagePath": "heat/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1248, + "BoundsWidth": 548, + "BoundsHeight": 224, + "CropLeft": 2312, + "CropTop": 1216, + "CropWidth": 644, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Strike to side and back ignite foe\u0027s", + "cloak and pack. Neck and shoulder are", + "lightly burned.", + "with backpack: \u002B8H \u2013\u222B", + "w/o backpack:: \u002B10H \u2013 3\u222B" + ], + "BaseLines": [ + "Strike to side and back ignite foe\u0027s", + "cloak and pack. Neck and shoulder are", + "lightly burned." + ], + "RawCellText": "Strike to side and back ignite foe\u0027s\ncloak and pack. Neck and shoulder are\nlightly burned.", + "DescriptionText": "Strike to side and back ignite foe\u0027s cloak and pack. Neck and shoulder are lightly burned.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_backpack", + "ConditionText": "with backpack", + "RawText": "with backpack: \u002B8H \u2013\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_backpack", + "ConditionText": "w/o backpack", + "RawText": "w/o backpack:: \u002B10H \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": ": \u002B10H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 312, + "Width": 137, + "Height": 56 + }, + "SourceImagePath": "heat/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1248, + "BoundsWidth": 548, + "BoundsHeight": 224, + "CropLeft": 2892, + "CropTop": 1216, + "CropWidth": 644, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Clothes smoke, then burn. Foe flails his", + "arms trying to put them out. The pain", + "edures longer than the flames.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Clothes smoke, then burn. Foe flails his", + "arms trying to put them out. The pain", + "edures longer than the flames.", + "\u002B7H \u2013 \u03C0 \u2013 \u222B" + ], + "RawCellText": "Clothes smoke, then burn. Foe flails his\narms trying to put them out. The pain\nedures longer than the flames.\n\u002B7H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "Clothes smoke, then burn. Foe flails his arms trying to put them out. The pain edures longer than the flames.", + "RawAffixText": "\u002B7H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 375, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 1500, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 1468, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Foe evades most of the damage with", + "some grace. The remainder scorches", + "his side lightly.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Foe evades most of the damage with", + "some grace. The remainder scorches", + "his side lightly.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "Foe evades most of the damage with\nsome grace. The remainder scorches\nhis side lightly.\n\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "Foe evades most of the damage with some grace. The remainder scorches his side lightly.", + "RawAffixText": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 375, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 1500, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 1468, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Flame spreads up foe\u0027s side and snaps", + "at his arm and face. Exposed areas are", + "lightly burned.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Flame spreads up foe\u0027s side and snaps", + "at his arm and face. Exposed areas are", + "lightly burned.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Flame spreads up foe\u0027s side and snaps\nat his arm and face. Exposed areas are\nlightly burned.\n\u002B9H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Flame spreads up foe\u0027s side and snaps at his arm and face. Exposed areas are lightly burned.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 375, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 1500, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 1468, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Assault lands on foe\u0027s weapon arm. He", + "makes a supreme effort to pull his arm", + "away. Foe is unable to protect himself.", + "\u002B10H \u2013 \u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Assault lands on foe\u0027s weapon arm. He", + "makes a supreme effort to pull his arm", + "away. Foe is unable to protect himself.", + "\u002B10H \u2013 \u2211 \u2013 3\u222B" + ], + "RawCellText": "Assault lands on foe\u0027s weapon arm. He\nmakes a supreme effort to pull his arm\naway. Foe is unable to protect himself.\n\u002B10H \u2013 \u2211 \u2013 3\u222B", + "DescriptionText": "Assault lands on foe\u0027s weapon arm. He makes a supreme effort to pull his arm away. Foe is unable to protect himself.", + "RawAffixText": "\u002B10H \u2013 \u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 375, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1500, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 1468, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Foe blocks flames with his weapon. A", + "wooden weapon is destroyed. A metal", + "weapon becomes too hot to hold.", + "\u002B12H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Foe blocks flames with his weapon. A", + "wooden weapon is destroyed. A metal", + "weapon becomes too hot to hold.", + "\u002B12H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Foe blocks flames with his weapon. A\nwooden weapon is destroyed. A metal\nweapon becomes too hot to hold.\n\u002B12H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Foe blocks flames with his weapon. A wooden weapon is destroyed. A metal weapon becomes too hot to hold.", + "RawAffixText": "\u002B12H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 375, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1500, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 1468, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Spark sets a piece of foe\u0027s equipment", + "on fire. Foe must remove the item.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "Spark sets a piece of foe\u0027s equipment", + "on fire. Foe must remove the item.", + "\u002B8H \u2013 2\u03C0 \u2013 \u222B" + ], + "RawCellText": "Spark sets a piece of foe\u0027s equipment\non fire. Foe must remove the item.\n\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "DescriptionText": "Spark sets a piece of foe\u0027s equipment on fire. Foe must remove the item.", + "RawAffixText": "\u002B8H \u2013 2\u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 429, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 1716, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 576, + "CropTop": 1684, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Foe ducks; attack torches back and the", + "ground behind him. He is shaken.", + "\u002B8H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Foe ducks; attack torches back and the", + "ground behind him. He is shaken.", + "\u002B8H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Foe ducks; attack torches back and the\nground behind him. He is shaken.\n\u002B8H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Foe ducks; attack torches back and the ground behind him. He is shaken.", + "RawAffixText": "\u002B8H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 429, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 1716, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 1156, + "CropTop": 1684, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard strike to side, armor does not", + "help. Blow leaves a blistering mark.", + "\u002B9H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Hard strike to side, armor does not", + "help. Blow leaves a blistering mark.", + "\u002B9H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Hard strike to side, armor does not\nhelp. Blow leaves a blistering mark.\n\u002B9H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Hard strike to side, armor does not help. Blow leaves a blistering mark.", + "RawAffixText": "\u002B9H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 429, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 1716, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 1732, + "CropTop": 1684, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Foe is aflame and takes damage for 3", + "rounds while he burns.", + "\u002B10H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Foe is aflame and takes damage for 3", + "rounds while he burns.", + "\u002B10H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Foe is aflame and takes damage for 3\nrounds while he burns.\n\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Foe is aflame and takes damage for 3 rounds while he burns.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 429, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1716, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 1684, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Your flames reach out. Foe frantically", + "leaps back . His chest is burned.", + "\u002B13H \u2013 \u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Your flames reach out. Foe frantically", + "leaps back . His chest is burned.", + "\u002B13H \u2013 \u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Your flames reach out. Foe frantically\nleaps back . His chest is burned.\n\u002B13H \u2013 \u2211\u220F \u2013 3\u222B", + "DescriptionText": "Your flames reach out. Foe frantically leaps back . His chest is burned.", + "RawAffixText": "\u002B13H \u2013 \u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 429, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "heat/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1716, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2892, + "CropTop": 1684, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Assault ignites foe\u0027s back. Equipment", + "crackles as it burns and falls clear.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Assault ignites foe\u0027s back. Equipment", + "crackles as it burns and falls clear.", + "\u002B9H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Assault ignites foe\u0027s back. Equipment\ncrackles as it burns and falls clear.\n\u002B9H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Assault ignites foe\u0027s back. Equipment crackles as it burns and falls clear.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 474, + "Width": 138, + "Height": 45 + }, + "SourceImagePath": "heat/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 1896, + "BoundsWidth": 552, + "BoundsHeight": 180, + "CropLeft": 576, + "CropTop": 1864, + "CropWidth": 648, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Engulf foe in flame and smoke. The", + "flames die down; foe escapes death.", + "\u002B10H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Engulf foe in flame and smoke. The", + "flames die down; foe escapes death.", + "\u002B10H \u2013 2\u2211 \u2013 2\u222B" + ], + "RawCellText": "Engulf foe in flame and smoke. The\nflames die down; foe escapes death.\n\u002B10H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "Engulf foe in flame and smoke. The flames die down; foe escapes death.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 474, + "Width": 136, + "Height": 45 + }, + "SourceImagePath": "heat/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 1896, + "BoundsWidth": 544, + "BoundsHeight": 180, + "CropLeft": 1156, + "CropTop": 1864, + "CropWidth": 640, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong blast hits foe in legs; they", + "nearly give with pain. He recoils 5 ft.", + "with leg armor: \u002B8H \u2013 2\u03C0", + "w/o leg armor: \u002B10H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Strong blast hits foe in legs; they", + "nearly give with pain. He recoils 5 ft." + ], + "RawCellText": "Strong blast hits foe in legs; they\nnearly give with pain. He recoils 5 ft.", + "DescriptionText": "Strong blast hits foe in legs; they nearly give with pain. He recoils 5 ft.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B8H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B10H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 474, + "Width": 138, + "Height": 45 + }, + "SourceImagePath": "heat/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 1896, + "BoundsWidth": 552, + "BoundsHeight": 180, + "CropLeft": 1732, + "CropTop": 1864, + "CropWidth": 648, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Flames dance around foe\u0027s head. He", + "seeks to get clear and almost falls.", + "With helmet: \u002B3H \u2013 2\u2211 \u2013 2(-10)", + "w/o helmet: \u002B12H \u2013 2\u222B" + ], + "BaseLines": [ + "Flames dance around foe\u0027s head. He", + "seeks to get clear and almost falls." + ], + "RawCellText": "Flames dance around foe\u0027s head. He\nseeks to get clear and almost falls.", + "DescriptionText": "Flames dance around foe\u0027s head. He seeks to get clear and almost falls.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "With helmet", + "RawText": "With helmet: \u002B3H \u2013 2\u2211 \u2013 2(-10)", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 2(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: \u002B12H \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 474, + "Width": 137, + "Height": 45 + }, + "SourceImagePath": "heat/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1896, + "BoundsWidth": 548, + "BoundsHeight": 180, + "CropLeft": 2312, + "CropTop": 1864, + "CropWidth": 644, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Garments over foe\u0027s shoulders and", + "head are set afire. He is frantic.", + "with helm: \u002B8H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-5)", + "w/o helm: \u002B15H \u2013 2\u2211\u220F \u2013 (-10) \u20133\u222B" + ], + "BaseLines": [ + "Garments over foe\u0027s shoulders and", + "head are set afire. He is frantic." + ], + "RawCellText": "Garments over foe\u0027s shoulders and\nhead are set afire. He is frantic.", + "DescriptionText": "Garments over foe\u0027s shoulders and head are set afire. He is frantic.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helm", + "ConditionText": "with helm", + "RawText": "with helm: \u002B8H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-5)", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F \u2013 \u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helm", + "ConditionText": "w/o helm", + "RawText": "w/o helm: \u002B15H \u2013 2\u2211\u220F \u2013 (-10) \u20133\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 2\u2211\u220F \u2013 (-10) \u20133\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 474, + "Width": 136, + "Height": 45 + }, + "SourceImagePath": "heat/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1896, + "BoundsWidth": 544, + "BoundsHeight": 180, + "CropLeft": 2892, + "CropTop": 1864, + "CropWidth": 640, + "CropHeight": 244, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Garments are burned.", + "Foe\u0027s evasion is comical.", + "with arm greaves: \u002B7H \u2013 \u222B", + "w/o arm greaves: \u002B10H \u2013 3\u222B" + ], + "BaseLines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Garments are burned.", + "Foe\u0027s evasion is comical." + ], + "RawCellText": "Well placed. Strike slams into foe\u0027s\nweapon arm. Garments are burned.\nFoe\u0027s evasion is comical.", + "DescriptionText": "Well placed. Strike slams into foe\u0027s weapon arm. Garments are burned. Foe\u0027s evasion is comical.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_arm_greaves", + "ConditionText": "with arm greaves", + "RawText": "with arm greaves: \u002B7H \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_arm_greaves", + "ConditionText": "w/o arm greaves", + "RawText": "w/o arm greaves: \u002B10H \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 527, + "Width": 136, + "Height": 55 + }, + "SourceImagePath": "heat/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 2108, + "BoundsWidth": 544, + "BoundsHeight": 220, + "CropLeft": 576, + "CropTop": 2076, + "CropWidth": 640, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Concentrated strike burns through", + "foe\u0027s leg. The flames do not last but", + "foe\u0027s skin is exposed. Skin blisters.", + "\u002B9H \u2013 \u2211\u220F \u2013 (-5) \u2013 2\u222B" + ], + "BaseLines": [ + "Concentrated strike burns through", + "foe\u0027s leg. The flames do not last but", + "foe\u0027s skin is exposed. Skin blisters.", + "\u002B9H \u2013 \u2211\u220F \u2013 (-5) \u2013 2\u222B" + ], + "RawCellText": "Concentrated strike burns through\nfoe\u0027s leg. The flames do not last but\nfoe\u0027s skin is exposed. Skin blisters.\n\u002B9H \u2013 \u2211\u220F \u2013 (-5) \u2013 2\u222B", + "DescriptionText": "Concentrated strike burns through foe\u0027s leg. The flames do not last but foe\u0027s skin is exposed. Skin blisters.", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F \u2013 (-5) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 527, + "Width": 137, + "Height": 55 + }, + "SourceImagePath": "heat/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 2108, + "BoundsWidth": 548, + "BoundsHeight": 220, + "CropLeft": 1156, + "CropTop": 2076, + "CropWidth": 644, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Flames burst against foe\u0027s side. He", + "stumbles but does not fall. He tries to", + "smother the fire with his garments.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10) \u2013 3\u222B" + ], + "BaseLines": [ + "Flames burst against foe\u0027s side. He", + "stumbles but does not fall. He tries to", + "smother the fire with his garments.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10) \u2013 3\u222B" + ], + "RawCellText": "Flames burst against foe\u0027s side. He\nstumbles but does not fall. He tries to\nsmother the fire with his garments.\n\u002B10H \u2013 \u2211\u220F \u2013 (-10) \u2013 3\u222B", + "DescriptionText": "Flames burst against foe\u0027s side. He stumbles but does not fall. He tries to smother the fire with his garments.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-10) \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 527, + "Width": 138, + "Height": 55 + }, + "SourceImagePath": "heat/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 2108, + "BoundsWidth": 552, + "BoundsHeight": 220, + "CropLeft": 1732, + "CropTop": 2076, + "CropWidth": 648, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s shield arm and shield are on fire.", + "Dropping the shield only helps a little.", + "The flames cling to his garements.", + "with shield: \u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 4\u222B", + "w/o shield: \u002B13H \u2013 2\u2211 \u2013 \u220F \u2013 6\u222B" + ], + "BaseLines": [ + "Foe\u0027s shield arm and shield are on fire.", + "Dropping the shield only helps a little.", + "The flames cling to his garements." + ], + "RawCellText": "Foe\u0027s shield arm and shield are on fire.\nDropping the shield only helps a little.\nThe flames cling to his garements.", + "DescriptionText": "Foe\u0027s shield arm and shield are on fire. Dropping the shield only helps a little. The flames cling to his garements.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 4\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B13H \u2013 2\u2211 \u2013 \u220F \u2013 6\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B13H \u2013 2\u2211 \u2013 \u220F \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 527, + "Width": 138, + "Height": 55 + }, + "SourceImagePath": "heat/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2108, + "BoundsWidth": 552, + "BoundsHeight": 220, + "CropLeft": 2312, + "CropTop": 2076, + "CropWidth": 648, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Searing strike to foe\u0027s legs. Exposed", + "skin and muscle is burned. Infection", + "will follow. Foe struggles to stay up.", + "\u002B15H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Searing strike to foe\u0027s legs. Exposed", + "skin and muscle is burned. Infection", + "will follow. Foe struggles to stay up.", + "\u002B15H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-10)" + ], + "RawCellText": "Searing strike to foe\u0027s legs. Exposed\nskin and muscle is burned. Infection\nwill follow. Foe struggles to stay up.\n\u002B15H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-10)", + "DescriptionText": "Searing strike to foe\u0027s legs. Exposed skin and muscle is burned. Infection will follow. Foe struggles to stay up.", + "RawAffixText": "\u002B15H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 527, + "Width": 136, + "Height": 55 + }, + "SourceImagePath": "heat/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2108, + "BoundsWidth": 544, + "BoundsHeight": 220, + "CropLeft": 2892, + "CropTop": 2076, + "CropWidth": 640, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Flame grapples foe\u0027s shield and chest.", + "The wound is grave and infection will", + "follow.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-15)" + ], + "BaseLines": [ + "Flame grapples foe\u0027s shield and chest.", + "The wound is grave and infection will", + "follow.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-15)" + ], + "RawCellText": "Flame grapples foe\u0027s shield and chest.\nThe wound is grave and infection will\nfollow.\n\u002B9H \u2013 2\u2211\u220F \u2013 (-15)", + "DescriptionText": "Flame grapples foe\u0027s shield and chest. The wound is grave and infection will follow.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 590, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 2360, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 2328, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Fire lands along side foe\u0027s face. His", + "hair, cheek, and ear are engulfed. Foe", + "throws himself to the ground.", + "\u002B10 \u2013 2\u2211 \u2013 4\u222B" + ], + "BaseLines": [ + "Fire lands along side foe\u0027s face. His", + "hair, cheek, and ear are engulfed. Foe", + "throws himself to the ground.", + "\u002B10 \u2013 2\u2211 \u2013 4\u222B" + ], + "RawCellText": "Fire lands along side foe\u0027s face. His\nhair, cheek, and ear are engulfed. Foe\nthrows himself to the ground.\n\u002B10 \u2013 2\u2211 \u2013 4\u222B", + "DescriptionText": "Fire lands along side foe\u0027s face. His hair, cheek, and ear are engulfed. Foe throws himself to the ground.", + "RawAffixText": "\u002B10 \u2013 2\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 590, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 2360, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 2328, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Blaze consumes garments on weapon", + "arm. Any metal covering heats up. Foe", + "falls from the blast.", + "\u002B12H \u2013 3\u222B" + ], + "BaseLines": [ + "Blaze consumes garments on weapon", + "arm. Any metal covering heats up. Foe", + "falls from the blast.", + "\u002B12H \u2013 3\u222B" + ], + "RawCellText": "Blaze consumes garments on weapon\narm. Any metal covering heats up. Foe\nfalls from the blast.\n\u002B12H \u2013 3\u222B", + "DescriptionText": "Blaze consumes garments on weapon arm. Any metal covering heats up. Foe falls from the blast.", + "RawAffixText": "\u002B12H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 590, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 2360, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 2328, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s face and weapon hand are", + "scalded. Foe is having trouble opening", + "his eyes.", + "\u002B10\u2211 \u2013 (-10) \u2013 6\u222B" + ], + "BaseLines": [ + "Foe\u0027s face and weapon hand are", + "scalded. Foe is having trouble opening", + "his eyes.", + "\u002B10\u2211 \u2013 (-10) \u2013 6\u222B" + ], + "RawCellText": "Foe\u0027s face and weapon hand are\nscalded. Foe is having trouble opening\nhis eyes.\n\u002B10\u2211 \u2013 (-10) \u2013 6\u222B", + "DescriptionText": "Foe\u0027s face and weapon hand are scalded. Foe is having trouble opening his eyes.", + "RawAffixText": "\u002B10\u2211 \u2013 (-10) \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 590, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2360, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 2328, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s combustible garments turn him", + "into a torch. He runs a short distance,", + "drops and dies in 6 rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Foe\u0027s combustible garments turn him", + "into a torch. He runs a short distance,", + "drops and dies in 6 rounds.", + "\u002B25H" + ], + "RawCellText": "Foe\u0027s combustible garments turn him\ninto a torch. He runs a short distance,\ndrops and dies in 6 rounds.\n\u002B25H", + "DescriptionText": "Foe\u0027s combustible garments turn him into a torch. He runs a short distance, drops and dies in 6 rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 590, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2360, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 2328, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Toast foe\u0027s side and send him", + "stumbling back 5 feet away from you.", + "He blocks his face against any renewed", + "assault.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-5)" + ], + "BaseLines": [ + "Toast foe\u0027s side and send him", + "stumbling back 5 feet away from you.", + "He blocks his face against any renewed", + "assault.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-5)" + ], + "RawCellText": "Toast foe\u0027s side and send him\nstumbling back 5 feet away from you.\nHe blocks his face against any renewed\nassault.\n\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-5)", + "DescriptionText": "Toast foe\u0027s side and send him stumbling back 5 feet away from you. He blocks his face against any renewed assault.", + "RawAffixText": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 644, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 2576, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 576, + "CropTop": 2544, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Flames seek out foe with a predator\u0027s", + "lust. He throws garments and", + "equipment off franticly to satisfy the", + "blaze. Foe is busy staying alive.", + "\u002B7H \u2013 2\u2211 \u2013 \u220F \u2013 (-10) \u2013 2\u222B" + ], + "BaseLines": [ + "Flames seek out foe with a predator\u0027s", + "lust. He throws garments and", + "equipment off franticly to satisfy the", + "blaze. Foe is busy staying alive.", + "\u002B7H \u2013 2\u2211 \u2013 \u220F \u2013 (-10) \u2013 2\u222B" + ], + "RawCellText": "Flames seek out foe with a predator\u0027s\nlust. He throws garments and\nequipment off franticly to satisfy the\nblaze. Foe is busy staying alive.\n\u002B7H \u2013 2\u2211 \u2013 \u220F \u2013 (-10) \u2013 2\u222B", + "DescriptionText": "Flames seek out foe with a predator\u0027s lust. He throws garments and equipment off franticly to satisfy the blaze. Foe is busy staying alive.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 \u220F \u2013 (-10) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 644, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 2576, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 1156, + "CropTop": 2544, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Back blast. Foe drops to one knee and", + "then rises again with some difficulty.", + "Some of his garments still smoke from", + "the assault. Skin is blistered badly.", + "2\u2211 \u2013 \u220F \u2013 (-15) \u2013 2\u222B" + ], + "BaseLines": [ + "Back blast. Foe drops to one knee and", + "then rises again with some difficulty.", + "Some of his garments still smoke from", + "the assault. Skin is blistered badly.", + "2\u2211 \u2013 \u220F \u2013 (-15) \u2013 2\u222B" + ], + "RawCellText": "Back blast. Foe drops to one knee and\nthen rises again with some difficulty.\nSome of his garments still smoke from\nthe assault. Skin is blistered badly.\n2\u2211 \u2013 \u220F \u2013 (-15) \u2013 2\u222B", + "DescriptionText": "Back blast. Foe drops to one knee and then rises again with some difficulty. Some of his garments still smoke from the assault. Skin is blistered badly.", + "RawAffixText": "2\u2211 \u2013 \u220F \u2013 (-15) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 644, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 2576, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1732, + "CropTop": 2544, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Foe leaps back from your deadly", + "inferno. He escapes death but falls on", + "his back. He is prone for 1 round.", + "Minor arm burns.", + "\u002B15H \u2013 \u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Foe leaps back from your deadly", + "inferno. He escapes death but falls on", + "his back. He is prone for 1 round.", + "Minor arm burns.", + "\u002B15H \u2013 \u2211 \u2013 3\u222B" + ], + "RawCellText": "Foe leaps back from your deadly\ninferno. He escapes death but falls on\nhis back. He is prone for 1 round.\nMinor arm burns.\n\u002B15H \u2013 \u2211 \u2013 3\u222B", + "DescriptionText": "Foe leaps back from your deadly inferno. He escapes death but falls on his back. He is prone for 1 round. Minor arm burns.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 644, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2576, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 2544, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blast leaps onto foe\u0027s shield arm. Any", + "shield foe has and his arm are on fire.", + "The heat penetrates deep and foe\u0027s", + "face shows it.", + "5\u222B\u2013 (-15)" + ], + "BaseLines": [ + "Blast leaps onto foe\u0027s shield arm. Any", + "shield foe has and his arm are on fire.", + "The heat penetrates deep and foe\u0027s", + "face shows it.", + "5\u222B\u2013 (-15)" + ], + "RawCellText": "Blast leaps onto foe\u0027s shield arm. Any\nshield foe has and his arm are on fire.\nThe heat penetrates deep and foe\u0027s\nface shows it.\n5\u222B\u2013 (-15)", + "DescriptionText": "Blast leaps onto foe\u0027s shield arm. Any shield foe has and his arm are on fire. The heat penetrates deep and foe\u0027s face shows it.", + "RawAffixText": "5\u222B\u2013 (-15)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 644, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2576, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2892, + "CropTop": 2544, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Fire consumes garments and hair.", + "Blinding smoke keeps foe\u0027s defenses", + "poorly aligned.", + "\u002B12H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Fire consumes garments and hair.", + "Blinding smoke keeps foe\u0027s defenses", + "poorly aligned.", + "\u002B12H \u2013 \u2211\u220F" + ], + "RawCellText": "Fire consumes garments and hair.\nBlinding smoke keeps foe\u0027s defenses\npoorly aligned.\n\u002B12H \u2013 \u2211\u220F", + "DescriptionText": "Fire consumes garments and hair. Blinding smoke keeps foe\u0027s defenses poorly aligned.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 707, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 2828, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 2796, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Chest and arm blast damages organic", + "armor and engulfs any wood on foe.", + "Metal armor heats up painfully.", + "\u002B9H \u2013 2\u2211 \u2013 \u220F \u2013 (-15) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Chest and arm blast damages organic", + "armor and engulfs any wood on foe.", + "Metal armor heats up painfully.", + "\u002B9H \u2013 2\u2211 \u2013 \u220F \u2013 (-15) \u2013 (\u002B10)" + ], + "RawCellText": "Chest and arm blast damages organic\narmor and engulfs any wood on foe.\nMetal armor heats up painfully.\n\u002B9H \u2013 2\u2211 \u2013 \u220F \u2013 (-15) \u2013 (\u002B10)", + "DescriptionText": "Chest and arm blast damages organic armor and engulfs any wood on foe. Metal armor heats up painfully.", + "RawAffixText": "\u002B9H \u2013 2\u2211 \u2013 \u220F \u2013 (-15) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 707, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 2828, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 2796, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Chest blast. Organic armor is", + "destroyed. Metal armor should be", + "removed quickly.", + "3\u2211 \u2013 (-15) \u2013 6\u222B" + ], + "BaseLines": [ + "Chest blast. Organic armor is", + "destroyed. Metal armor should be", + "removed quickly.", + "3\u2211 \u2013 (-15) \u2013 6\u222B" + ], + "RawCellText": "Chest blast. Organic armor is\ndestroyed. Metal armor should be\nremoved quickly.\n3\u2211 \u2013 (-15) \u2013 6\u222B", + "DescriptionText": "Chest blast. Organic armor is destroyed. Metal armor should be removed quickly.", + "RawAffixText": "3\u2211 \u2013 (-15) \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 707, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 2828, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 2796, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s weapon arm is a conflagration.", + "Hand and arm are useless. Muscles", + "and nerves are damaged.", + "6\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Foe\u0027s weapon arm is a conflagration.", + "Hand and arm are useless. Muscles", + "and nerves are damaged.", + "6\u2211 \u2013 (-50)" + ], + "RawCellText": "Foe\u0027s weapon arm is a conflagration.\nHand and arm are useless. Muscles\nand nerves are damaged.\n6\u2211 \u2013 (-50)", + "DescriptionText": "Foe\u0027s weapon arm is a conflagration. Hand and arm are useless. Muscles and nerves are damaged.", + "RawAffixText": "6\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 707, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2828, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 2796, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Strike center of foe\u0027s chest. Flame", + "spills in all directions. Foe is knocked", + "down. Chest armor is destroyed.", + "\u002B15H \u2013 6\u222B \u2013 (-60)" + ], + "BaseLines": [ + "Strike center of foe\u0027s chest. Flame", + "spills in all directions. Foe is knocked", + "down. Chest armor is destroyed.", + "\u002B15H \u2013 6\u222B \u2013 (-60)" + ], + "RawCellText": "Strike center of foe\u0027s chest. Flame\nspills in all directions. Foe is knocked\ndown. Chest armor is destroyed.\n\u002B15H \u2013 6\u222B \u2013 (-60)", + "DescriptionText": "Strike center of foe\u0027s chest. Flame spills in all directions. Foe is knocked down. Chest armor is destroyed.", + "RawAffixText": "\u002B15H \u2013 6\u222B \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 707, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2828, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 2796, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s shield side engulfed in flame. Foe\u0027s shield side is engulfed in flame.", + "Foe\u0027s shield but it will be kindled if Foe\u0027s shield is kindled if wooden.", + "wooden.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Foe\u0027s shield side engulfed in flame. Foe\u0027s shield side is engulfed in flame.", + "Foe\u0027s shield but it will be kindled if Foe\u0027s shield is kindled if wooden.", + "wooden.", + "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 2\u222B" + ], + "RawCellText": "Foe\u0027s shield side engulfed in flame. Foe\u0027s shield side is engulfed in flame.\nFoe\u0027s shield but it will be kindled if Foe\u0027s shield is kindled if wooden.\nwooden.\n\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 2\u222B", + "DescriptionText": "Foe\u0027s shield side engulfed in flame. Foe\u0027s shield side is engulfed in flame. Foe\u0027s shield but it will be kindled if Foe\u0027s shield is kindled if wooden. wooden.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 762, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 3048, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 3016, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Abdomen entangled in flames. The", + "flames will spread upward next turn if", + "not extinguished. Foe sees the danger.", + "20 \u2013 2\u222B" + ], + "BaseLines": [ + "Abdomen entangled in flames. The", + "flames will spread upward next turn if", + "not extinguished. Foe sees the danger.", + "20 \u2013 2\u222B" + ], + "RawCellText": "Abdomen entangled in flames. The\nflames will spread upward next turn if\nnot extinguished. Foe sees the danger.\n20 \u2013 2\u222B", + "DescriptionText": "Abdomen entangled in flames. The flames will spread upward next turn if not extinguished. Foe sees the danger.", + "RawAffixText": "20 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 762, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 3048, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 3016, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Strike engulfs foe\u0027s most exposed", + "hand and burns it without mercy. Hand", + "is useless. Arm clothing is destroyed.", + "6\u2211 \u2013 (-40)" + ], + "BaseLines": [ + "Strike engulfs foe\u0027s most exposed", + "hand and burns it without mercy. Hand", + "is useless. Arm clothing is destroyed.", + "6\u2211 \u2013 (-40)" + ], + "RawCellText": "Strike engulfs foe\u0027s most exposed\nhand and burns it without mercy. Hand\nis useless. Arm clothing is destroyed.\n6\u2211 \u2013 (-40)", + "DescriptionText": "Strike engulfs foe\u0027s most exposed hand and burns it without mercy. Hand is useless. Arm clothing is destroyed.", + "RawAffixText": "6\u2211 \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 762, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 3048, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 3016, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s side is ignited by your strike and", + "the wounds are deep. He smothers the", + "fire but the damage is done.", + "3\u2211\u220F \u2013 5\u222B" + ], + "BaseLines": [ + "Foe\u0027s side is ignited by your strike and", + "the wounds are deep. He smothers the", + "fire but the damage is done.", + "3\u2211\u220F \u2013 5\u222B" + ], + "RawCellText": "Foe\u0027s side is ignited by your strike and\nthe wounds are deep. He smothers the\nfire but the damage is done.\n3\u2211\u220F \u2013 5\u222B", + "DescriptionText": "Foe\u0027s side is ignited by your strike and the wounds are deep. He smothers the fire but the damage is done.", + "RawAffixText": "3\u2211\u220F \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 762, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3048, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 3016, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Blast lands on foe\u0027s side but spreads to", + "arms and legs. A shield prevents arm", + "damage but his hands are burned off.", + "\u002B20H \u2013 12\u2211" + ], + "BaseLines": [ + "Blast lands on foe\u0027s side but spreads to", + "arms and legs. A shield prevents arm", + "damage but his hands are burned off.", + "\u002B20H \u2013 12\u2211" + ], + "RawCellText": "Blast lands on foe\u0027s side but spreads to\narms and legs. A shield prevents arm\ndamage but his hands are burned off.\n\u002B20H \u2013 12\u2211", + "DescriptionText": "Blast lands on foe\u0027s side but spreads to arms and legs. A shield prevents arm damage but his hands are burned off.", + "RawAffixText": "\u002B20H \u2013 12\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 762, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3048, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 3016, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Foe exposes his back while evading the", + "strike. Blast scorches a small wound in", + "his shoulder blade.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Foe exposes his back while evading the", + "strike. Blast scorches a small wound in", + "his shoulder blade.", + "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Foe exposes his back while evading the\nstrike. Blast scorches a small wound in\nhis shoulder blade.\n\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Foe exposes his back while evading the strike. Blast scorches a small wound in his shoulder blade.", + "RawAffixText": "\u002B8H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 815, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 3260, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 3228, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Strike knocks foe down on his back.", + "The flames do not endure but much", + "equipment is burned or crushed.", + "\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Strike knocks foe down on his back.", + "The flames do not endure but much", + "equipment is burned or crushed.", + "\u2211 \u2013 2\u222B" + ], + "RawCellText": "Strike knocks foe down on his back.\nThe flames do not endure but much\nequipment is burned or crushed.\n\u2211 \u2013 2\u222B", + "DescriptionText": "Strike knocks foe down on his back. The flames do not endure but much equipment is burned or crushed.", + "RawAffixText": "\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 815, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 3260, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 3228, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Violent inferno destroys organic armor", + "and ruins metal armor on leg. Much of", + "the blast tumbles clear after impact. the blast rumbles clear after impact.", + "(-20) \u2013 2\u222B" + ], + "BaseLines": [ + "Violent inferno destroys organic armor", + "and ruins metal armor on leg. Much of", + "the blast tumbles clear after impact. the blast rumbles clear after impact.", + "(-20) \u2013 2\u222B" + ], + "RawCellText": "Violent inferno destroys organic armor\nand ruins metal armor on leg. Much of\nthe blast tumbles clear after impact. the blast rumbles clear after impact.\n(-20) \u2013 2\u222B", + "DescriptionText": "Violent inferno destroys organic armor and ruins metal armor on leg. Much of the blast tumbles clear after impact. the blast rumbles clear after impact.", + "RawAffixText": "(-20) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 815, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 3260, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 3228, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s arms and chest embrace your", + "infernal strike. Arms are useless and", + "foe\u0027s skin is open to the air.", + "\u002B15H \u2013 9\u2211" + ], + "BaseLines": [ + "Foe\u0027s arms and chest embrace your", + "infernal strike. Arms are useless and", + "foe\u0027s skin is open to the air.", + "\u002B15H \u2013 9\u2211" + ], + "RawCellText": "Foe\u0027s arms and chest embrace your\ninfernal strike. Arms are useless and\nfoe\u0027s skin is open to the air.\n\u002B15H \u2013 9\u2211", + "DescriptionText": "Foe\u0027s arms and chest embrace your infernal strike. Arms are useless and foe\u0027s skin is open to the air.", + "RawAffixText": "\u002B15H \u2013 9\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 815, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3260, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 3228, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Foe inhales flames scalding lungs and", + "throat Foe is active for 12 rnds (while", + "he burns), then dies.", + "\u002B20H" + ], + "BaseLines": [ + "Foe inhales flames scalding lungs and", + "throat Foe is active for 12 rnds (while", + "he burns), then dies.", + "\u002B20H" + ], + "RawCellText": "Foe inhales flames scalding lungs and\nthroat Foe is active for 12 rnds (while\nhe burns), then dies.\n\u002B20H", + "DescriptionText": "Foe inhales flames scalding lungs and throat Foe is active for 12 rnds (while he burns), then dies.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 815, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3260, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 3228, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Assault to foe\u0027s lower leg consumes", + "covering. Foe falls down. One leg is on", + "fire.", + "\u002B10H \u2013 2(-10)" + ], + "BaseLines": [ + "Assault to foe\u0027s lower leg consumes", + "covering. Foe falls down. One leg is on", + "fire.", + "\u002B10H \u2013 2(-10)" + ], + "RawCellText": "Assault to foe\u0027s lower leg consumes\ncovering. Foe falls down. One leg is on\nfire.\n\u002B10H \u2013 2(-10)", + "DescriptionText": "Assault to foe\u0027s lower leg consumes covering. Foe falls down. One leg is on fire.", + "RawAffixText": "\u002B10H \u2013 2(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 869, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 3476, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 576, + "CropTop": 3444, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Leg covering is set on fire by blast.", + "It spreads quickly and foe is in trouble.", + "The flames will grow if not put out.", + "\u002B16H \u2013 3\u2211" + ], + "BaseLines": [ + "Leg covering is set on fire by blast.", + "It spreads quickly and foe is in trouble.", + "The flames will grow if not put out.", + "\u002B16H \u2013 3\u2211" + ], + "RawCellText": "Leg covering is set on fire by blast.\nIt spreads quickly and foe is in trouble.\nThe flames will grow if not put out.\n\u002B16H \u2013 3\u2211", + "DescriptionText": "Leg covering is set on fire by blast. It spreads quickly and foe is in trouble. The flames will grow if not put out.", + "RawAffixText": "\u002B16H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 869, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 3476, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 1156, + "CropTop": 3444, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s shield side is devoured by", + "flames. Head, arm, side, and leg have", + "critical burns. If foe has a shield, it is", + "destroyed in place of his arm.", + "\u002B15H \u2013 6\u2211\u220F \u2013 (-85) \u2013 3\u222B" + ], + "BaseLines": [ + "Foe\u0027s shield side is devoured by", + "flames. Head, arm, side, and leg have", + "critical burns. If foe has a shield, it is", + "destroyed in place of his arm.", + "\u002B15H \u2013 6\u2211\u220F \u2013 (-85) \u2013 3\u222B" + ], + "RawCellText": "Foe\u0027s shield side is devoured by\nflames. Head, arm, side, and leg have\ncritical burns. If foe has a shield, it is\ndestroyed in place of his arm.\n\u002B15H \u2013 6\u2211\u220F \u2013 (-85) \u2013 3\u222B", + "DescriptionText": "Foe\u0027s shield side is devoured by flames. Head, arm, side, and leg have critical burns. If foe has a shield, it is destroyed in place of his arm.", + "RawAffixText": "\u002B15H \u2013 6\u2211\u220F \u2013 (-85) \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -85, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-85)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 869, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 3476, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1732, + "CropTop": 3444, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blast engulfs lower half of foe\u0027s body.", + "If foe has abdominal armor, he is", + "knocked out. If not, he dies in 12", + "inactive rounds from organ damage.", + "with abdominal armor: 2\u222B" + ], + "BaseLines": [ + "Blast engulfs lower half of foe\u0027s body.", + "If foe has abdominal armor, he is", + "knocked out. If not, he dies in 12", + "inactive rounds from organ damage." + ], + "RawCellText": "Blast engulfs lower half of foe\u0027s body.\nIf foe has abdominal armor, he is\nknocked out. If not, he dies in 12\ninactive rounds from organ damage.", + "DescriptionText": "Blast engulfs lower half of foe\u0027s body. If foe has abdominal armor, he is knocked out. If not, he dies in 12 inactive rounds from organ damage.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdominal_armor", + "ConditionText": "with abdominal armor", + "RawText": "with abdominal armor: 2\u222B", + "DescriptionText": "", + "RawAffixText": "2\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 869, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3476, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 3444, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s lower body is badly burned.", + "Nerves, organs and tissue destroyed.", + "Foe is paralyzed and will die in 9", + "rounds from shock and dehydration.", + "\u002B20H" + ], + "BaseLines": [ + "Foe\u0027s lower body is badly burned.", + "Nerves, organs and tissue destroyed.", + "Foe is paralyzed and will die in 9", + "rounds from shock and dehydration.", + "\u002B20H" + ], + "RawCellText": "Foe\u0027s lower body is badly burned.\nNerves, organs and tissue destroyed.\nFoe is paralyzed and will die in 9\nrounds from shock and dehydration.\n\u002B20H", + "DescriptionText": "Foe\u0027s lower body is badly burned. Nerves, organs and tissue destroyed. Foe is paralyzed and will die in 9 rounds from shock and dehydration.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 869, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3476, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 2892, + "CropTop": 3444, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s head. If he has helmet it", + "heats up like a furnace and must be", + "painfully removed. Foe ears and cheeks", + "are burned.", + "with helmet: \u002B15H \u2013 3\u2211 \u2013 (-10)", + "w/o helmet: \u002B12H \u2013 2\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Blow to foe\u0027s head. If he has helmet it", + "heats up like a furnace and must be", + "painfully removed. Foe ears and cheeks", + "are burned." + ], + "RawCellText": "Blow to foe\u0027s head. If he has helmet it\nheats up like a furnace and must be\npainfully removed. Foe ears and cheeks\nare burned.", + "DescriptionText": "Blow to foe\u0027s head. If he has helmet it heats up like a furnace and must be painfully removed. Foe ears and cheeks are burned.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B15H \u2013 3\u2211 \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 3\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: \u002B12H \u2013 2\u2211\u220F \u2013 (-30)", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 934, + "Width": 137, + "Height": 75 + }, + "SourceImagePath": "heat/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 3736, + "BoundsWidth": 548, + "BoundsHeight": 300, + "CropLeft": 576, + "CropTop": 3704, + "CropWidth": 644, + "CropHeight": 364, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Head strike. Force of blast removes", + "any helmet worn. Hair, scalp and skin", + "burn. Smoke and flame blind foe for 3", + "rnds.", + "with helmet: \u002B10H \u2013 3\u03C0 \u2013 2\u222B", + "w/o helmet: 8\u222B" + ], + "BaseLines": [ + "Head strike. Force of blast removes", + "any helmet worn. Hair, scalp and skin", + "burn. Smoke and flame blind foe for 3", + "rnds." + ], + "RawCellText": "Head strike. Force of blast removes\nany helmet worn. Hair, scalp and skin\nburn. Smoke and flame blind foe for 3\nrnds.", + "DescriptionText": "Head strike. Force of blast removes any helmet worn. Hair, scalp and skin burn. Smoke and flame blind foe for 3 rnds.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B10H \u2013 3\u03C0 \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 3\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: 8\u222B", + "DescriptionText": "", + "RawAffixText": "8\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 934, + "Width": 137, + "Height": 75 + }, + "SourceImagePath": "heat/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 3736, + "BoundsWidth": 548, + "BoundsHeight": 300, + "CropLeft": 1156, + "CropTop": 3704, + "CropWidth": 644, + "CropHeight": 364, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Trapped in the furnace of your blast,", + "foe is overcome and falls down. He is", + "unconsious and still burning.", + "\u002B18H \u2013 6\u2211\u220F \u2013 (\u201390) \u2013 4\u222B" + ], + "BaseLines": [ + "Trapped in the furnace of your blast,", + "foe is overcome and falls down. He is", + "unconsious and still burning.", + "\u002B18H \u2013 6\u2211\u220F \u2013 (\u201390) \u2013 4\u222B" + ], + "RawCellText": "Trapped in the furnace of your blast,\nfoe is overcome and falls down. He is\nunconsious and still burning.\n\u002B18H \u2013 6\u2211\u220F \u2013 (\u201390) \u2013 4\u222B", + "DescriptionText": "Trapped in the furnace of your blast, foe is overcome and falls down. He is unconsious and still burning.", + "RawAffixText": "\u002B18H \u2013 6\u2211\u220F \u2013 (\u201390) \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 934, + "Width": 137, + "Height": 75 + }, + "SourceImagePath": "heat/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 3736, + "BoundsWidth": 548, + "BoundsHeight": 300, + "CropLeft": 1732, + "CropTop": 3704, + "CropWidth": 644, + "CropHeight": 364, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Flames assault upper body. If foe has a", + "full helm, he is blinded and in a coma", + "for 2 days. If not, he dies in 6 rounds", + "due to shock and brain damage.", + "\u2013" + ], + "BaseLines": [ + "Flames assault upper body. If foe has a", + "full helm, he is blinded and in a coma", + "for 2 days. If not, he dies in 6 rounds", + "due to shock and brain damage.", + "\u2013" + ], + "RawCellText": "Flames assault upper body. If foe has a\nfull helm, he is blinded and in a coma\nfor 2 days. If not, he dies in 6 rounds\ndue to shock and brain damage.\n\u2013", + "DescriptionText": "Flames assault upper body. If foe has a full helm, he is blinded and in a coma for 2 days. If not, he dies in 6 rounds due to shock and brain damage.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 934, + "Width": 136, + "Height": 75 + }, + "SourceImagePath": "heat/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3736, + "BoundsWidth": 544, + "BoundsHeight": 300, + "CropLeft": 2312, + "CropTop": 3704, + "CropWidth": 640, + "CropHeight": 364, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Foe is cremated before your very eyes.", + "He remains standing for 6 rounds and", + "then drops and dies. A small fire", + "lingers over the remains. A horrible", + "end.", + "\u002B25H" + ], + "BaseLines": [ + "Foe is cremated before your very eyes.", + "He remains standing for 6 rounds and", + "then drops and dies. A small fire", + "lingers over the remains. A horrible", + "end.", + "\u002B25H" + ], + "RawCellText": "Foe is cremated before your very eyes.\nHe remains standing for 6 rounds and\nthen drops and dies. A small fire\nlingers over the remains. A horrible\nend.\n\u002B25H", + "DescriptionText": "Foe is cremated before your very eyes. He remains standing for 6 rounds and then drops and dies. A small fire lingers over the remains. A horrible end.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 934, + "Width": 136, + "Height": 75 + }, + "SourceImagePath": "heat/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3736, + "BoundsWidth": 544, + "BoundsHeight": 300, + "CropLeft": 2892, + "CropTop": 3704, + "CropWidth": 640, + "CropHeight": 364, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Blast lands on the weapon arm and", + "climbs up to foe\u0027s neck. It burns all it", + "touches. If foe has any organic neck", + "covering it is destroyed.", + "4\u2211\u220F \u20138\u222B" + ], + "BaseLines": [ + "Blast lands on the weapon arm and", + "climbs up to foe\u0027s neck. It burns all it", + "touches. If foe has any organic neck", + "covering it is destroyed.", + "4\u2211\u220F \u20138\u222B" + ], + "RawCellText": "Blast lands on the weapon arm and\nclimbs up to foe\u0027s neck. It burns all it\ntouches. If foe has any organic neck\ncovering it is destroyed.\n4\u2211\u220F \u20138\u222B", + "DescriptionText": "Blast lands on the weapon arm and climbs up to foe\u0027s neck. It burns all it touches. If foe has any organic neck covering it is destroyed.", + "RawAffixText": "4\u2211\u220F \u20138\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 1017, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 4068, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 576, + "CropTop": 4036, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Flames burn into foe\u0027s throat. The", + "damage is frightening. Foe\u0027s neck", + "collapses in the flames. He drops and", + "dies in 9 inactive rnds. He smells bad.", + "\u002B20H \u2013 12\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Flames burn into foe\u0027s throat. The", + "damage is frightening. Foe\u0027s neck", + "collapses in the flames. He drops and", + "dies in 9 inactive rnds. He smells bad.", + "\u002B20H \u2013 12\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Flames burn into foe\u0027s throat. The\ndamage is frightening. Foe\u0027s neck\ncollapses in the flames. He drops and\ndies in 9 inactive rnds. He smells bad.\n\u002B20H \u2013 12\u222B \u2013 (\u002B10)", + "DescriptionText": "Flames burn into foe\u0027s throat. The damage is frightening. Foe\u0027s neck collapses in the flames. He drops and dies in 9 inactive rnds. He smells bad.", + "RawAffixText": "\u002B20H \u2013 12\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 12, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 1017, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 4068, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1156, + "CropTop": 4036, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Intense heat fuses metal, cloth and", + "skin. Foe is unrecognizable. If no chest", + "armor he is dead instantly. Otherwise", + "he dies after 9 rounds of burning.", + "\u2013" + ], + "BaseLines": [ + "Intense heat fuses metal, cloth and", + "skin. Foe is unrecognizable. If no chest", + "armor he is dead instantly. Otherwise", + "he dies after 9 rounds of burning.", + "\u2013" + ], + "RawCellText": "Intense heat fuses metal, cloth and\nskin. Foe is unrecognizable. If no chest\narmor he is dead instantly. Otherwise\nhe dies after 9 rounds of burning.\n\u2013", + "DescriptionText": "Intense heat fuses metal, cloth and skin. Foe is unrecognizable. If no chest armor he is dead instantly. Otherwise he dies after 9 rounds of burning.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 1017, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 4068, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 1732, + "CropTop": 4036, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Foe is trapped in the furnace made by", + "your attack. Organs are destroyed and", + "foe\u0027s blood boils. He has no hope of", + "survival and dies in 6 inactive rounds.", + "\u002B20H" + ], + "BaseLines": [ + "Foe is trapped in the furnace made by", + "your attack. Organs are destroyed and", + "foe\u0027s blood boils. He has no hope of", + "survival and dies in 6 inactive rounds.", + "\u002B20H" + ], + "RawCellText": "Foe is trapped in the furnace made by\nyour attack. Organs are destroyed and\nfoe\u0027s blood boils. He has no hope of\nsurvival and dies in 6 inactive rounds.\n\u002B20H", + "DescriptionText": "Foe is trapped in the furnace made by your attack. Organs are destroyed and foe\u0027s blood boils. He has no hope of survival and dies in 6 inactive rounds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 1017, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 4068, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 4036, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Your foe is devoured by a hellfire of", + "which even you are frightened. All", + "combustibles within 10 ft ignite. Little", + "will remain when the fire dies.", + "(\u002B10)" + ], + "BaseLines": [ + "Your foe is devoured by a hellfire of", + "which even you are frightened. All", + "combustibles within 10 ft ignite. Little", + "will remain when the fire dies.", + "(\u002B10)" + ], + "RawCellText": "Your foe is devoured by a hellfire of\nwhich even you are frightened. All\ncombustibles within 10 ft ignite. Little\nwill remain when the fire dies.\n(\u002B10)", + "DescriptionText": "Your foe is devoured by a hellfire of which even you are frightened. All combustibles within 10 ft ignite. Little will remain when the fire dies.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 1017, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "heat/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 4068, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2892, + "CropTop": 4036, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Brutally scar the side of foe\u0027s face. Foe", + "is knocked out. He loses 50 from his", + "Appearance and 25 from his Presence.", + "\u002B20H \u2013 5\u222B" + ], + "BaseLines": [ + "Brutally scar the side of foe\u0027s face. Foe", + "is knocked out. He loses 50 from his", + "Appearance and 25 from his Presence.", + "\u002B20H \u2013 5\u222B" + ], + "RawCellText": "Brutally scar the side of foe\u0027s face. Foe\nis knocked out. He loses 50 from his\nAppearance and 25 from his Presence.\n\u002B20H \u2013 5\u222B", + "DescriptionText": "Brutally scar the side of foe\u0027s face. Foe is knocked out. He loses 50 from his Appearance and 25 from his Presence.", + "RawAffixText": "\u002B20H \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 156, + "Top": 1080, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 624, + "BoundsTop": 4320, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 576, + "CropTop": 4288, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Assault consumes clothing and tissue.", + "Foe\u0027s arms and chest are without skin.", + "Foe is paralyzed. Infection will follow.", + "\u002B25H" + ], + "BaseLines": [ + "Assault consumes clothing and tissue.", + "Foe\u0027s arms and chest are without skin.", + "Foe is paralyzed. Infection will follow.", + "\u002B25H" + ], + "RawCellText": "Assault consumes clothing and tissue.\nFoe\u0027s arms and chest are without skin.\nFoe is paralyzed. Infection will follow.\n\u002B25H", + "DescriptionText": "Assault consumes clothing and tissue. Foe\u0027s arms and chest are without skin. Foe is paralyzed. Infection will follow.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 301, + "Top": 1080, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1204, + "BoundsTop": 4320, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1156, + "CropTop": 4288, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s head. If he has a helmet,", + "his head is broiled and he dies in 2", + "rnds. If no helmet he dies instantly.", + "(\u002B10)" + ], + "BaseLines": [ + "Strike to foe\u0027s head. If he has a helmet,", + "his head is broiled and he dies in 2", + "rnds. If no helmet he dies instantly.", + "(\u002B10)" + ], + "RawCellText": "Strike to foe\u0027s head. If he has a helmet,\nhis head is broiled and he dies in 2\nrnds. If no helmet he dies instantly.\n(\u002B10)", + "DescriptionText": "Strike to foe\u0027s head. If he has a helmet, his head is broiled and he dies in 2 rnds. If no helmet he dies instantly.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 445, + "Top": 1080, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1780, + "BoundsTop": 4320, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 1732, + "CropTop": 4288, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Every part of foe is ablaze. He dies in 2", + "rounds, making terrifying noises. He", + "continues to burn for 12 rounds.", + "(\u002B15)" + ], + "BaseLines": [ + "Every part of foe is ablaze. He dies in 2", + "rounds, making terrifying noises. He", + "continues to burn for 12 rounds.", + "(\u002B15)" + ], + "RawCellText": "Every part of foe is ablaze. He dies in 2\nrounds, making terrifying noises. He\ncontinues to burn for 12 rounds.\n(\u002B15)", + "DescriptionText": "Every part of foe is ablaze. He dies in 2 rounds, making terrifying noises. He continues to burn for 12 rounds.", + "RawAffixText": "(\u002B15)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 1080, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 4320, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 4288, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Fire devours every part of foe in an", + "instant. Bits of metal, teeth and a few", + "bones shower to the ground.", + "(\u002B20)" + ], + "BaseLines": [ + "Fire devours every part of foe in an", + "instant. Bits of metal, teeth and a few", + "bones shower to the ground.", + "(\u002B20)" + ], + "RawCellText": "Fire devours every part of foe in an\ninstant. Bits of metal, teeth and a few\nbones shower to the ground.\n(\u002B20)", + "DescriptionText": "Fire devours every part of foe in an instant. Bits of metal, teeth and a few bones shower to the ground.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 1080, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "heat/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 4320, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 4288, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/source.xml b/src/RolemasterDb.App/import-artifacts/critical/heat/source.xml new file mode 100644 index 0000000..5cc7d73 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/heat/source.xml @@ -0,0 +1,438 @@ + + + + + + + + + + + + + +Key: +ß +π += must parry ß rounds; +ß + += no parry for ß rounds; +ß +∑ = + stunned for ß rounds; +ß + += bleed ß hits per round; +(-ß) = foe has -ß penalty; +(+ß) = attacker gets +ß next round. +91 +01-05 +The air around foe shimmers. Pfft. +Attack is wild and boils nearby water. +Hot smoke makes foe's eyes red. +Foe evades the embrace of the flames. +Foe avoids the blast but not the heat. ++0H ++0H ++1H ++2H ++3H +06-10 +Hot wind makes foe uncomfortable. +Singe foe's exposed skin. The heat dies +quick. Foe is not impressed. +Sparks and smoke dance all over foe. +He waves them off with little effort. +Flames surround foe. He seems to step +out of them unharmed. +Sweltering heat reachs out for foe. He +evades. You have initiative. ++1H ++2H ++3H ++4H ++4H +11-15 +Foe covers his face and leaps aside. +You have initiative. +Foe simmers in his clothes. He is +unfocused and you have initiative. +Foe suspects that he is on fire. He is +wrong. You gain the initiative. +Foe is enshrouded by smoke. The heat +harms him little. You have initiative. +Flash unbalances foe and sends him on +the defensive. You have initiative. ++2H ++2H ++3H ++4H ++6H – ∑ +16-20 +Blast stings foe's hands and arms. You +have the initiative. +Assault blinds foe for a moment. You +have 2 rounds of initiative. +Hair and bowstrings are singed. You +have 2 rounds of initiative. +Foe strikes out at the flames to protect +himself. It seems to work well enough. +Foe fails to avoid some of the attack +and almost falls down. ++3H + ++5H ++6H – π ++7H – π +21-35 +Foe's chest and side heat up and +garments smolder from assault. He will +be easily kindled if you strike again. +Fire laden blast forces foe back. Any +containers of water boil and burst +open. You have 2 rounds of initiative. +Disorient foe with a tricky shot. +Garments smolder suspiciously. He +checks them carefully; guard is still up. +With a burst of flame, you cover foe +with heated air. Foe jumps back to +avoid any additional wounds. +Blister foe's weapon arm. He gives +ground to escape the heat. His footing +is better than you had hoped. ++4H – ∑ ++6H ++7H – π – ∫ ++8H – 2π – ∫ ++9H – 2π – 2∫ +36-45 +Hot winds dance around foe parching +his exposed skin. He puts up a +desperate defence. +Foe's shield side is swathed in fire. He +may use a shield to avoid the attack, +but it combust. Shield hand is burned. +Heat catchs foe in lower leg. You gain +initiative while foe regains his balance. +The pain stays with him. +Cover foe with a flash fire. Exposed +skin burns. The flames bite deep and +the pain is great. +Strike to side and back ignite foe's +cloak and pack. Neck and shoulder are +lightly burned. ++6H – π +with shield: +3H – 3π +w/o shield: +7H – π – ∫ ++8H – 2π – ∫ +If not wet: +9H – 2∫ +If wet: +6H – 2π +with backpack: +8H –∫ +w/o backpack:: +10H – 3∫ +46-50 +Clothes smoke, then burn. Foe flails his +arms trying to put them out. The pain +edures longer than the flames. +Foe evades most of the damage with +some grace. The remainder scorches +his side lightly. +Flame spreads up foe's side and snaps +at his arm and face. Exposed areas are +lightly burned. +Assault lands on foe's weapon arm. He +makes a supreme effort to pull his arm +away. Foe is unable to protect himself. +Foe blocks flames with his weapon. A +wooden weapon is destroyed. A metal +weapon becomes too hot to hold. ++7H – π – ∫ ++8H – 2π – ∫ ++9H – ∑ – 2∫ ++10H – ∑ – 3∫ ++12H – 2∑ – 3∫ +51-55 +Spark sets a piece of foe's equipment +on fire. Foe must remove the item. +Foe ducks; attack torches back and the +ground behind him. He is shaken. +Hard strike to side, armor does not +help. Blow leaves a blistering mark. +Foe is aflame and takes damage for 3 +rounds while he burns. +Your flames reach out. Foe frantically +leaps back . His chest is burned. ++8H – 2π – ∫ ++8H – ∑ – 2∫ ++9H – 2∑ – 3∫ ++10H – 2∑ – 3∫ ++13H – ∑∏ – 3∫ +56-60 +Assault ignites foe's back. Equipment +crackles as it burns and falls clear. +Engulf foe in flame and smoke. The +flames die down; foe escapes death. +Strong blast hits foe in legs; they +nearly give with pain. He recoils 5 ft. +Flames dance around foe's head. He +seeks to get clear and almost falls. +Garments over foe's shoulders and +head are set afire. He is frantic. ++9H – ∑ – 2∫ ++10H – 2∑ – 2∫ +with leg armor: +8H – 2π +w/o leg armor: +10H – 2∑ – 2∫ + With helmet: +3H – 2∑ – 2(-10) +w/o helmet: +12H – 2∫ +with helm: +8H – ∑∏ – ∫ – (-5) +w/o helm: +15H – 2∑∏ – (-10) –3∫ +61-65 +Well placed. Strike slams into foe's +weapon arm. Garments are burned. +Foe's evasion is comical. +Concentrated strike burns through +foe's leg. The flames do not last but +foe's skin is exposed. Skin blisters. +Flames burst against foe's side. He +stumbles but does not fall. He tries to +smother the fire with his garments. +Foe's shield arm and shield are on fire. +Dropping the shield only helps a little. +The flames cling to his garements. +Searing strike to foe's legs. Exposed +skin and muscle is burned. Infection +will follow. Foe struggles to stay up. +with arm greaves: +7H – ∫ +w/o arm greaves: +10H – 3∫ ++9H – ∑∏ – (-5) – 2∫ ++10H – ∑∏ – (-10) – 3∫ +with shield: +10H – 2∑ – ∏ – 4∫ +w/o shield: +13H – 2∑ – ∏ – 6∫ ++15H – 2∑∏ – 4∫ – (-10) +66 +Flame grapples foe's shield and chest. +The wound is grave and infection will +follow. +Fire lands along side foe's face. His +hair, cheek, and ear are engulfed. Foe +throws himself to the ground. +Blaze consumes garments on weapon +arm. Any metal covering heats up. Foe +falls from the blast. +Foe's face and weapon hand are +scalded. Foe is having trouble opening +his eyes. +Foe's combustible garments turn him +into a torch. He runs a short distance, +drops and dies in 6 rounds. ++9H – 2∑∏ – (-15) ++10 – 2∑ – 4∫ ++12H – 3∫ ++10∑ – (-10) – 6∫ ++25H +67-70 +Toast foe's side and send him +stumbling back 5 feet away from you. +He blocks his face against any renewed +assault. +Flames seek out foe with a predator's +lust. He throws garments and +equipment off franticly to satisfy the +blaze. Foe is busy staying alive. +Back blast. Foe drops to one knee and +then rises again with some difficulty. +Some of his garments still smoke from +the assault. Skin is blistered badly. +Foe leaps back from your deadly +inferno. He escapes death but falls on +his back. He is prone for 1 round. +Minor arm burns. +Blast leaps onto foe's shield arm. Any +shield foe has and his arm are on fire. +The heat penetrates deep and foe's +face shows it. ++8H – 2∑ – 2∫ – (-5) ++7H – 2∑ – ∏ – (-10) – 2∫ +2∑ – ∏ – (-15) – 2∫ ++15H – ∑ – 3∫ +5∫– (-15) +71-75 +Fire consumes garments and hair. +Blinding smoke keeps foe's defenses +poorly aligned. +Chest and arm blast damages organic +armor and engulfs any wood on foe. +Metal armor heats up painfully. +Chest blast. Organic armor is +destroyed. Metal armor should be +removed quickly. +Foe's weapon arm is a conflagration. +Hand and arm are useless. Muscles +and nerves are damaged. +Strike center of foe's chest. Flame +spills in all directions. Foe is knocked +down. Chest armor is destroyed. ++12H – ∑∏ ++9H – 2∑ – ∏ – (-15) – (+10) +3∑ – (-15) – 6∫ +6∑ – (-50) + +15H – 6∫ – (-60) +76-80 +Foe's shield side engulfed in flame. +Foe's shield but it will be kindled if +wooden. +Abdomen entangled in flames. The +flames will spread upward next turn if +not extinguished. Foe sees the danger. +Strike engulfs foe's most exposed +hand and burns it without mercy. Hand +is useless. Arm clothing is destroyed. +Foe's side is ignited by your strike and +the wounds are deep. He smothers the +fire but the damage is done. +Blast lands on foe's side but spreads to +arms and legs. A shield prevents arm +damage but his hands are burned off. + +10H – 2∑ – ∏ – 2∫ + 20 – 2∫ +6∑ – (-40) +3∑∏ – 5∫ ++20H – 12∑ +81-85 +Foe exposes his back while evading the +strike. Blast scorches a small wound in +his shoulder blade. +Strike knocks foe down on his back. +The flames do not endure but much +equipment is burned or crushed. +Violent inferno destroys organic armor +and ruins metal armor on leg. Much of +the blast tumbles clear after impact. +Foe's arms and chest embrace your +infernal strike. Arms are useless and +foe's skin is open to the air. +Foe inhales flames scalding lungs and +throat Foe is active for 12 rnds (while +he burns), then dies. ++8H – 2∑ – 2∫ – (-20) +∑ – 2∫ +(-20) – 2∫ ++15H – 9∑ ++20H +86-90 +Assault to foe's lower leg consumes +covering. Foe falls down. One leg is on +fire. +Leg covering is set on fire by blast. +It spreads quickly and foe is in trouble. +The flames will grow if not put out. +Foe's shield side is devoured by +flames. Head, arm, side, and leg have +critical burns. If foe has a shield, it is +destroyed in place of his arm. +Blast engulfs lower half of foe's body. +If foe has abdominal armor, he is +knocked out. If not, he dies in 12 +inactive rounds from organ damage. +Foe's lower body is badly burned. +Nerves, organs and tissue destroyed. +Foe is paralyzed and will die in 9 +rounds from shock and dehydration. ++10H – 2(-10) + +16H – 3∑ ++15H – 6∑∏ – (-85) – 3∫ +with abdominal armor: 2∫ ++20H +91-95 +Blow to foe's head. If he has helmet it +heats up like a furnace and must be +painfully removed. Foe ears and cheeks +are burned. +Head strike. Force of blast removes +any helmet worn. Hair, scalp and skin +burn. Smoke and flame blind foe for 3 +rnds. +Trapped in the furnace of your blast, +foe is overcome and falls down. He is +unconsious and still burning. +Flames assault upper body. If foe has a +full helm, he is blinded and in a coma +for 2 days. If not, he dies in 6 rounds +due to shock and brain damage. +Foe is cremated before your very eyes. +He remains standing for 6 rounds and +then drops and dies. A small fire +lingers over the remains. A horrible +end. +with helmet: +15H – 3∑ – (-10) +w/o helmet: +12H – 2∑∏ – (-30) +with helmet: +10H – 3π – 2∫ +w/o helmet: 8∫ ++18H – 6∑∏ – (–90) – 4∫ + ++25H +96-99 +Blast lands on the weapon arm and +climbs up to foe's neck. It burns all it +touches. If foe has any organic neck +covering it is destroyed. +Flames burn into foe's throat. The +damage is frightening. Foe's neck +collapses in the flames. He drops and +dies in 9 inactive rnds. He smells bad. +Intense heat fuses metal, cloth and +skin. Foe is unrecognizable. If no chest +armor he is dead instantly. Otherwise +he dies after 9 rounds of burning. +Foe is trapped in the furnace made by +your attack. Organs are destroyed and +foe's blood boils. He has no hope of +survival and dies in 6 inactive rounds. +Your foe is devoured by a hellfire of +which even you are frightened. All +combustibles within 10 ft ignite. Little +will remain when the fire dies. +4∑∏ –8∫ ++20H – 12∫ – (+10) + ++20H +(+10) +100 +Brutally scar the side of foe's face. Foe +is knocked out. He loses 50 from his +Appearance and 25 from his Presence. +Assault consumes clothing and tissue. +Foe's arms and chest are without skin. +Foe is paralyzed. Infection will follow. +Strike to foe's head. If he has a helmet, +his head is broiled and he dies in 2 +rnds. If no helmet he dies instantly. +Every part of foe is ablaze. He dies in 2 +rounds, making terrifying noises. He +continues to burn for 12 rounds. +Fire devours every part of foe in an +instant. Bits of metal, teeth and a few +bones shower to the ground. ++20H – 5∫ ++25H +(+10) +(+15) +(+20) +A +B +C +D +E +HEAT CRITICAL STRIKE TABLE A-10.10.2 +is kindled if wooden. +s. Shield hand is burned. +the blast rumbles clear after impact. +Foe’s shield side is engulfed in flame. +Foe’s shield is kindled if wooden. +Foe’s shield side is swathed in fire. He +may use a shield to avoid the attack, +but it combusts. Shield hand is burned. +the blast rumbles clear after impact. +14.3 HEAT CRITICAL STRIKE TABLE + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/heat/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/heat/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/heat/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__01-05.png new file mode 100644 index 0000000..7fe72cd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__06-10.png new file mode 100644 index 0000000..d5668b5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__100.png new file mode 100644 index 0000000..d8618b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__11-15.png new file mode 100644 index 0000000..0ad0c72 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__16-20.png new file mode 100644 index 0000000..3c12032 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__21-35.png new file mode 100644 index 0000000..7a216e8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__36-45.png new file mode 100644 index 0000000..2af5ae2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__46-50.png new file mode 100644 index 0000000..1cac881 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__51-55.png new file mode 100644 index 0000000..d49c23a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__56-60.png new file mode 100644 index 0000000..6c3505d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__61-65.png new file mode 100644 index 0000000..83f9883 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__66.png new file mode 100644 index 0000000..04b80c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__67-70.png new file mode 100644 index 0000000..1dae238 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__71-75.png new file mode 100644 index 0000000..2ef5fc4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__76-80.png new file mode 100644 index 0000000..8e88ae9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__81-85.png new file mode 100644 index 0000000..2f9f7ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__86-90.png new file mode 100644 index 0000000..79328b5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__91-95.png new file mode 100644 index 0000000..766f595 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__96-99.png new file mode 100644 index 0000000..f0ef66c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__01-05.png new file mode 100644 index 0000000..c753c73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__06-10.png new file mode 100644 index 0000000..2d619df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__100.png new file mode 100644 index 0000000..453d5eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__11-15.png new file mode 100644 index 0000000..e8f239b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__16-20.png new file mode 100644 index 0000000..d6134fb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__21-35.png new file mode 100644 index 0000000..b33613a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__36-45.png new file mode 100644 index 0000000..4bfba4e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__46-50.png new file mode 100644 index 0000000..8806c0c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__51-55.png new file mode 100644 index 0000000..8207de1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__56-60.png new file mode 100644 index 0000000..d87f69e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__61-65.png new file mode 100644 index 0000000..149e7a7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__66.png new file mode 100644 index 0000000..2836005 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__67-70.png new file mode 100644 index 0000000..018f60a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__71-75.png new file mode 100644 index 0000000..a9b97da Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__76-80.png new file mode 100644 index 0000000..578af47 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__81-85.png new file mode 100644 index 0000000..586be28 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__86-90.png new file mode 100644 index 0000000..d9f4f75 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__91-95.png new file mode 100644 index 0000000..21fe1df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__96-99.png new file mode 100644 index 0000000..a1c5f8a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__01-05.png new file mode 100644 index 0000000..dcec236 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__06-10.png new file mode 100644 index 0000000..1ef524d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__100.png new file mode 100644 index 0000000..61b05d2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__11-15.png new file mode 100644 index 0000000..4cca308 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__16-20.png new file mode 100644 index 0000000..11d9242 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__21-35.png new file mode 100644 index 0000000..db9ca18 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__36-45.png new file mode 100644 index 0000000..2d14ec6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__46-50.png new file mode 100644 index 0000000..8245f93 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__51-55.png new file mode 100644 index 0000000..c3ed0f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__56-60.png new file mode 100644 index 0000000..114dc08 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__61-65.png new file mode 100644 index 0000000..a1e15c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__66.png new file mode 100644 index 0000000..4c5df8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__67-70.png new file mode 100644 index 0000000..06b61d5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__71-75.png new file mode 100644 index 0000000..4591842 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__76-80.png new file mode 100644 index 0000000..14dd452 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__81-85.png new file mode 100644 index 0000000..5945476 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__86-90.png new file mode 100644 index 0000000..1265315 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__91-95.png new file mode 100644 index 0000000..858d814 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__96-99.png new file mode 100644 index 0000000..4e01d93 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__01-05.png new file mode 100644 index 0000000..7ffa339 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__06-10.png new file mode 100644 index 0000000..202073b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__100.png new file mode 100644 index 0000000..897ed93 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__11-15.png new file mode 100644 index 0000000..badb5c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__16-20.png new file mode 100644 index 0000000..d606918 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__21-35.png new file mode 100644 index 0000000..30762da Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__36-45.png new file mode 100644 index 0000000..26b59f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__46-50.png new file mode 100644 index 0000000..c18334e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__51-55.png new file mode 100644 index 0000000..87fafaa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__56-60.png new file mode 100644 index 0000000..3342d6c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__61-65.png new file mode 100644 index 0000000..cbc4d83 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__66.png new file mode 100644 index 0000000..6fc0e35 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__67-70.png new file mode 100644 index 0000000..8d766ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__71-75.png new file mode 100644 index 0000000..fe9bf67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__76-80.png new file mode 100644 index 0000000..303d9fc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__81-85.png new file mode 100644 index 0000000..e689559 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__86-90.png new file mode 100644 index 0000000..251a1f3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__91-95.png new file mode 100644 index 0000000..8009d5e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__96-99.png new file mode 100644 index 0000000..06b7a23 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__01-05.png new file mode 100644 index 0000000..5496f51 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__06-10.png new file mode 100644 index 0000000..c04ecc5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__100.png new file mode 100644 index 0000000..654e289 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__11-15.png new file mode 100644 index 0000000..3790d67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__16-20.png new file mode 100644 index 0000000..ee83685 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__21-35.png new file mode 100644 index 0000000..01ad17f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__36-45.png new file mode 100644 index 0000000..e0e27ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__46-50.png new file mode 100644 index 0000000..b150a27 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__51-55.png new file mode 100644 index 0000000..9929f02 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__56-60.png new file mode 100644 index 0000000..1267492 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__61-65.png new file mode 100644 index 0000000..0951ca3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__66.png new file mode 100644 index 0000000..2497032 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__67-70.png new file mode 100644 index 0000000..2a3e3fd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__71-75.png new file mode 100644 index 0000000..4f1fd57 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__76-80.png new file mode 100644 index 0000000..ae3fff4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__81-85.png new file mode 100644 index 0000000..be8d26b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__86-90.png new file mode 100644 index 0000000..9ad1174 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__91-95.png new file mode 100644 index 0000000..320bc67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__96-99.png new file mode 100644 index 0000000..f43e713 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/impact/fragments.json new file mode 100644 index 0000000..6498c63 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/impact/fragments.json @@ -0,0 +1,4152 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 123, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 151, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 153.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 155, + "Width": 7, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 158.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 162, + "Width": 84, + "Height": 8, + "Text": "= must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 4, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 257 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 260, + "Width": 7, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 267, + "Width": 89, + "Height": 8, + "Text": "= no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 364, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 369, + "Width": 9, + "Height": 9, + "Text": "\u2211", + "Confidence": null, + "CenterX": 373.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 378, + "Width": 86, + "Height": 8, + "Text": "= stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 475.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 5, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 483, + "Width": 91, + "Height": 8, + "Text": "= bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 528.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 582, + "Width": 90, + "Height": 8, + "Text": "(-\u00DF) = foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 125, + "Height": 8, + "Text": "(\u002B\u00DF) = attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 1142, + "Left": 63, + "Width": 17, + "Height": 13, + "Text": "92", + "Confidence": null, + "CenterX": 71.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 160, + "Width": 14, + "Height": 15, + "Text": "A", + "Confidence": null, + "CenterX": 167 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 305, + "Width": 13, + "Height": 15, + "Text": "B", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 447, + "Width": 15, + "Height": 15, + "Text": "C", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 590, + "Width": 18, + "Height": 15, + "Text": "D", + "Confidence": null, + "CenterX": 599 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 738, + "Width": 13, + "Height": 15, + "Text": "E", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 264, + "Width": 332, + "Height": 20, + "Text": "6.4 IMPACT CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 99, + "Width": 80, + "Height": 8, + "Text": "Foe rolls with the blow..", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 244, + "Width": 117, + "Height": 8, + "Text": "Rattle foe a little. Bruise his elbow.", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 388, + "Width": 126, + "Height": 8, + "Text": "Strike glances off foe. He presses on.", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 532, + "Width": 123, + "Height": 8, + "Text": "Strike lands without force. Foe is up.", + "Confidence": null, + "CenterX": 593.5 + }, + { + "PageNumber": 1, + "Top": 95, + "Left": 676, + "Width": 132, + "Height": 8, + "Text": "How foe evaded that blow is a mystery.", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 222, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 229 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 366, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 510, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 655, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 662 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 799, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "It looks solid, but foe is not hindered.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 244, + "Width": 115, + "Height": 8, + "Text": "Bump foe in the chest. He loses a", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 244, + "Width": 70, + "Height": 8, + "Text": "garment decoration.", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 388, + "Width": 127, + "Height": 8, + "Text": "Foe turns to evade and gets hit in the", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 388, + "Width": 108, + "Height": 8, + "Text": "backside. Little damage is done.", + "Confidence": null, + "CenterX": 442 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 532, + "Width": 108, + "Height": 8, + "Text": "Wild assault to shoulder fails to", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 532, + "Width": 60, + "Height": 8, + "Text": "connect with foe.", + "Confidence": null, + "CenterX": 562 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 676, + "Width": 132, + "Height": 8, + "Text": "Foe is unbalanced and gives ground to", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 676, + "Width": 61, + "Height": 8, + "Text": "regain his footing.", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 222, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 229 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 366, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 510, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 655, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 662 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 769, + "Width": 44, + "Height": 8, + "Text": "\u002B3H \u2013 2(-15)", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 184, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 99, + "Width": 108, + "Height": 8, + "Text": "With great effort foe evades the", + "Confidence": null, + "CenterX": 153 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 99, + "Width": 94, + "Height": 8, + "Text": "damage. You have initiative.", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 244, + "Width": 118, + "Height": 8, + "Text": "Corrupt foe\u0027s sense of balance. He", + "Confidence": null, + "CenterX": 303 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 244, + "Width": 110, + "Height": 8, + "Text": "stumbles and loses the initiative.", + "Confidence": null, + "CenterX": 299 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 388, + "Width": 134, + "Height": 8, + "Text": "Firm strike causes foe to step back and", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 388, + "Width": 56, + "Height": 8, + "Text": "get his bearings.", + "Confidence": null, + "CenterX": 416 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 532, + "Width": 132, + "Height": 8, + "Text": "Strike to chest is not hard but it is well", + "Confidence": null, + "CenterX": 598 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 532, + "Width": 99, + "Height": 8, + "Text": "placed. Foe steps back 5 feet.", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 676, + "Width": 124, + "Height": 8, + "Text": "Foe staggers back and trips, making", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 182, + "Left": 676, + "Width": 72, + "Height": 8, + "Text": "things worse for him.", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 222, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 229 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 366, + "Width": 14, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 495, + "Width": 29, + "Height": 8, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 509.5 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 639, + "Width": 29, + "Height": 8, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 779, + "Width": 33, + "Height": 8, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 228, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 99, + "Width": 107, + "Height": 8, + "Text": "Spin foe sideways. He recovers", + "Confidence": null, + "CenterX": 152.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 99, + "Width": 104, + "Height": 8, + "Text": "quickly. You have the initiative.", + "Confidence": null, + "CenterX": 151 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 244, + "Width": 117, + "Height": 8, + "Text": "Foe\u0027s response is quick enough to", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 244, + "Width": 76, + "Height": 8, + "Text": "avoid serious damage.", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 388, + "Width": 127, + "Height": 8, + "Text": "Strong blow. Foe abandons any hope", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 388, + "Width": 100, + "Height": 8, + "Text": "of the initiative and falls back.", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 532, + "Width": 117, + "Height": 8, + "Text": "Foe starts stepping away from the", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 532, + "Width": 98, + "Height": 8, + "Text": "assault before it hits his legs.", + "Confidence": null, + "CenterX": 581 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 676, + "Width": 123, + "Height": 8, + "Text": "Foe fails to avoid some of the attack", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 676, + "Width": 76, + "Height": 8, + "Text": "and almost falls down.", + "Confidence": null, + "CenterX": 714 + }, + { + "PageNumber": 1, + "Top": 245, + "Left": 222, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 230 + }, + { + "PageNumber": 1, + "Top": 245, + "Left": 351, + "Width": 31, + "Height": 8, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 245, + "Left": 495, + "Width": 29, + "Height": 8, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 509.5 + }, + { + "PageNumber": 1, + "Top": 245, + "Left": 637, + "Width": 33, + "Height": 8, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 245, + "Left": 782, + "Width": 31, + "Height": 8, + "Text": "\u002B9H \u2013 \u2211", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 99, + "Width": 130, + "Height": 8, + "Text": "Your strike has some effect. Foe loses", + "Confidence": null, + "CenterX": 164 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 99, + "Width": 128, + "Height": 8, + "Text": "his balance and cannot regain a good", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "stance. You have 2 rounds of initiative.", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 244, + "Width": 133, + "Height": 8, + "Text": "Strike seeks foe\u0027s head. He blocks with", + "Confidence": null, + "CenterX": 310.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 244, + "Width": 135, + "Height": 8, + "Text": "his weapon and evades with shameless", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 244, + "Width": 100, + "Height": 8, + "Text": "grace. He keeps his guard up.", + "Confidence": null, + "CenterX": 294 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 388, + "Width": 107, + "Height": 8, + "Text": "Foe is unbalanced and can only", + "Confidence": null, + "CenterX": 441.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 388, + "Width": 126, + "Height": 8, + "Text": "manage some wild swings to protect", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 388, + "Width": 81, + "Height": 8, + "Text": "himself for the moment.", + "Confidence": null, + "CenterX": 428.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 532, + "Width": 112, + "Height": 8, + "Text": "Blow almost sends foe down. He", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 532, + "Width": 120, + "Height": 8, + "Text": "strikes the ground with his weapon", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 532, + "Width": 113, + "Height": 8, + "Text": "while trying to regain his balance.", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 676, + "Width": 123, + "Height": 8, + "Text": "Foe reels from this deadly strike. He", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 270, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "avoids death but not damage. His side", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 676, + "Width": 55, + "Height": 8, + "Text": "is badly bruised.", + "Confidence": null, + "CenterX": 703.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 222, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 230 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 349, + "Width": 31, + "Height": 8, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 495, + "Width": 29, + "Height": 8, + "Text": "\u002B8H \u2013 \u03C0", + "Confidence": null, + "CenterX": 509.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 635, + "Width": 33, + "Height": 8, + "Text": "\u002B10H \u2013 \u03C0", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 777, + "Width": 35, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "Foe must give ground or fall. He steps", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 99, + "Width": 132, + "Height": 8, + "Text": "back 5 ft and goes low to avoid falling.", + "Confidence": null, + "CenterX": 165 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 99, + "Width": 94, + "Height": 8, + "Text": "He loses 2 rnds of initiative.", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 244, + "Width": 130, + "Height": 8, + "Text": "Violent blow to shield side. Any shield", + "Confidence": null, + "CenterX": 309 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 244, + "Width": 130, + "Height": 8, + "Text": "is destroyed. Foe\u0027s side is bruised. He", + "Confidence": null, + "CenterX": 309 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 244, + "Width": 59, + "Height": 8, + "Text": "is still on his feet.", + "Confidence": null, + "CenterX": 273.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "Pitiless blow to foe\u0027s lower leg. Foe is", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 388, + "Width": 126, + "Height": 8, + "Text": "desperate to defend himself while he", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 388, + "Width": 69, + "Height": 8, + "Text": "regains his balance.", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 532, + "Width": 106, + "Height": 8, + "Text": "Boom! Foe is hammered by an", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 532, + "Width": 132, + "Height": 8, + "Text": "effective strike to his back. He looks to", + "Confidence": null, + "CenterX": 598 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 532, + "Width": 99, + "Height": 8, + "Text": "be recovering. Minor bruises.", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 676, + "Width": 124, + "Height": 8, + "Text": "Hammer foe in shoulder. He falls 10", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 323, + "Left": 676, + "Width": 126, + "Height": 8, + "Text": "feet and spuins around. He stumbles", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 676, + "Width": 124, + "Height": 8, + "Text": "another 5 ft before regaining control.", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 222, + "Width": 16, + "Height": 8, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 230 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 349, + "Width": 31, + "Height": 8, + "Text": "\u002B9H \u2013 \u03C0", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 489, + "Width": 35, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 629, + "Width": 39, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 744, + "Width": 69, + "Height": 8, + "Text": "\u002B15H \u20132\u2211 \u2013 2(-15)", + "Confidence": null, + "CenterX": 778.5 + }, + { + "PageNumber": 1, + "Top": 384, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 99, + "Width": 128, + "Height": 8, + "Text": "A solid shot unnerves foe and knocks", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "him to the side. His recovery is slow.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 99, + "Width": 105, + "Height": 8, + "Text": "You have 3 rounds of initiative.", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 244, + "Width": 129, + "Height": 8, + "Text": "Foe loses footing before being struck,", + "Confidence": null, + "CenterX": 308.5 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 244, + "Width": 134, + "Height": 8, + "Text": "but still avoids most of assault. A piece", + "Confidence": null, + "CenterX": 311 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 244, + "Width": 105, + "Height": 8, + "Text": "of equipment is knocked loose.", + "Confidence": null, + "CenterX": 296.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 388, + "Width": 132, + "Height": 8, + "Text": "Foe\u0027s weapon arm is slammed into his", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 388, + "Width": 129, + "Height": 8, + "Text": "chest. Foe almost falls. He steps back", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 388, + "Width": 109, + "Height": 8, + "Text": "5 feet and regains some footing.", + "Confidence": null, + "CenterX": 442.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 532, + "Width": 133, + "Height": 8, + "Text": "Foe is shaken and steps back 5 feet for", + "Confidence": null, + "CenterX": 598.5 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 532, + "Width": 122, + "Height": 8, + "Text": "the next 2 rounds. If he cannot step", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 532, + "Width": 65, + "Height": 8, + "Text": "back he falls down.", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "Foe is lifted off the ground and thrown", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 377, + "Left": 676, + "Width": 127, + "Height": 8, + "Text": "back five feet. Amazingly he does not", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 676, + "Width": 78, + "Height": 8, + "Text": "fall. His guard is down.", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 218, + "Width": 20, + "Height": 8, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 228 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 345, + "Width": 37, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 363.5 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 462, + "Width": 62, + "Height": 8, + "Text": "\u002B12H \u2013 2\u03C0 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 633, + "Width": 35, + "Height": 8, + "Text": "\u002B5H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 770, + "Width": 44, + "Height": 8, + "Text": "\u002B20H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 792 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 99, + "Width": 132, + "Height": 8, + "Text": "Bash to foe\u0027s side damages equipment", + "Confidence": null, + "CenterX": 165 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "unbalancing him. He stumbles about.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 244, + "Width": 127, + "Height": 8, + "Text": "Smash foe to side. Foe still fights but", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 244, + "Width": 123, + "Height": 8, + "Text": "footing is unfirm and armor is loose.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 388, + "Width": 120, + "Height": 8, + "Text": "Hard strike to side, armor does not", + "Confidence": null, + "CenterX": 448 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "help. The bruise is deep and effective.", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 532, + "Width": 118, + "Height": 8, + "Text": "Batter foe. He fumbles his weapon", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 532, + "Width": 121, + "Height": 8, + "Text": "grip. He notices little else right now.", + "Confidence": null, + "CenterX": 592.5 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 676, + "Width": 127, + "Height": 8, + "Text": "Foe tries to withstand blow, but goes", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 676, + "Width": 107, + "Height": 8, + "Text": "down. He takes 2 rnds to stand.", + "Confidence": null, + "CenterX": 729.5 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 198, + "Width": 37, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 345, + "Width": 35, + "Height": 8, + "Text": "\u002B12H \u2013 \u2211", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 486, + "Width": 37, + "Height": 8, + "Text": "\u002B15H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 630, + "Width": 38, + "Height": 8, + "Text": "\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 767, + "Width": 45, + "Height": 8, + "Text": "\u002B20H \u2013 2(40)", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 99, + "Width": 122, + "Height": 8, + "Text": "Foe\u0027s shield arm is roughed up. Foe", + "Confidence": null, + "CenterX": 160 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "puts his guard up and steps back. It is", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 99, + "Width": 58, + "Height": 8, + "Text": "clear he is dazed.", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 244, + "Width": 117, + "Height": 8, + "Text": "Foe\u0027s response is ungraceful. The", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 244, + "Width": 126, + "Height": 8, + "Text": "strike slams his weapon arm into his", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 244, + "Width": 108, + "Height": 8, + "Text": "side and pins it for the moment.", + "Confidence": null, + "CenterX": 298 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 388, + "Width": 118, + "Height": 8, + "Text": "Strong bash hits foe low. His legs", + "Confidence": null, + "CenterX": 447 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 388, + "Width": 129, + "Height": 8, + "Text": "almost give with the pain. Foe recoils", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 388, + "Width": 102, + "Height": 8, + "Text": "5 feet away from your assault.", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 532, + "Width": 124, + "Height": 8, + "Text": "Concussion bruises skin and batters", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 532, + "Width": 123, + "Height": 8, + "Text": "ribs. Foe is numb, unable to feel the", + "Confidence": null, + "CenterX": 593.5 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 532, + "Width": 122, + "Height": 8, + "Text": "damage. He thinks wound is mortal.", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 676, + "Width": 133, + "Height": 8, + "Text": "Impact scatters unattached equipment.", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 474, + "Left": 676, + "Width": 124, + "Height": 8, + "Text": "Shield, helmet, and any weapons go", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 484, + "Left": 676, + "Width": 90, + "Height": 8, + "Text": "flying. Foe then falls down.", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 201, + "Width": 35, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 341, + "Width": 42, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 485, + "Width": 39, + "Height": 8, + "Text": "\u002B12H \u2013 2\u2211", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 623, + "Width": 48, + "Height": 8, + "Text": "2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 766, + "Width": 46, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 789 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 99, + "Width": 120, + "Height": 8, + "Text": "Well placed. Strike slams into foe\u0027s", + "Confidence": null, + "CenterX": 159 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 99, + "Width": 110, + "Height": 8, + "Text": "weapon arm. Foe holds onto his", + "Confidence": null, + "CenterX": 154 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 99, + "Width": 30, + "Height": 8, + "Text": "weapon .", + "Confidence": null, + "CenterX": 114 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 244, + "Width": 136, + "Height": 8, + "Text": "Blow crashes into foe\u0027s chest. If he has", + "Confidence": null, + "CenterX": 312 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 244, + "Width": 127, + "Height": 8, + "Text": "chest armor, it is damaged. If not, he", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 244, + "Width": 125, + "Height": 8, + "Text": "has terrible bruises and cracked ribs.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "Crashing blow to foe\u0027s shoulder sends", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "him over. He uses weapon arm to stay", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 388, + "Width": 122, + "Height": 8, + "Text": "standing and cannot defend himself.", + "Confidence": null, + "CenterX": 449 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 532, + "Width": 118, + "Height": 8, + "Text": "Lay waste to foe\u0027s shield arm. Any", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 532, + "Width": 106, + "Height": 8, + "Text": "shield in use takes some of the", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 532, + "Width": 125, + "Height": 8, + "Text": "damage, but is destroyed by impact.", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 676, + "Width": 125, + "Height": 8, + "Text": "Your strike vandalizes foe\u0027s sense of", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 529, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "balance and he crashes to the ground.", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 676, + "Width": 103, + "Height": 8, + "Text": "His legs and pride are bruised.", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 556, + "Left": 145, + "Width": 91, + "Height": 8, + "Text": "with arm greaves: \u002B8H \u2013 \u03C0", + "Confidence": null, + "CenterX": 190.5 + }, + { + "PageNumber": 1, + "Top": 566, + "Left": 141, + "Width": 96, + "Height": 8, + "Text": "w/o arm greaves: \u002B12H \u2013 \u2211", + "Confidence": null, + "CenterX": 189 + }, + { + "PageNumber": 1, + "Top": 556, + "Left": 281, + "Width": 99, + "Height": 8, + "Text": "with chest armor: \u002B12H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 566, + "Left": 276, + "Width": 104, + "Height": 8, + "Text": "w/o chest armor: \u002B10H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 328 + }, + { + "PageNumber": 1, + "Top": 566, + "Left": 459, + "Width": 65, + "Height": 8, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 556, + "Left": 566, + "Width": 104, + "Height": 8, + "Text": "with shield: \u002B5H \u2013 \u2211 \u2013 3(-10)", + "Confidence": null, + "CenterX": 618 + }, + { + "PageNumber": 1, + "Top": 566, + "Left": 575, + "Width": 96, + "Height": 8, + "Text": "w/o shield: \u002B10H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 623 + }, + { + "PageNumber": 1, + "Top": 566, + "Left": 766, + "Width": 46, + "Height": 8, + "Text": "\u002B20H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 789 + }, + { + "PageNumber": 1, + "Top": 598, + "Left": 61, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 99, + "Width": 127, + "Height": 8, + "Text": "Foe braced poorly for the impact. His", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 99, + "Width": 128, + "Height": 8, + "Text": "knee is pressed backwards damaging", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 99, + "Width": 74, + "Height": 8, + "Text": "muscles and tendons.", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 244, + "Width": 135, + "Height": 8, + "Text": "Fingers are entangled in the impact and", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 244, + "Width": 126, + "Height": 8, + "Text": "broken. Foe\u0027s shield hand is useless.", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 244, + "Width": 124, + "Height": 8, + "Text": "The swelling might go away in a day.", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 388, + "Width": 133, + "Height": 8, + "Text": "Blast breaks shield arm. He falls on his", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 388, + "Width": 134, + "Height": 8, + "Text": "weapon arm and breaks his wrist. Both", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "arms are useless. Talk about bad luck.", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 532, + "Width": 106, + "Height": 8, + "Text": "Snap foe\u0027s head back. Foe falls", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 532, + "Width": 126, + "Height": 8, + "Text": "unconscious onto ground breaking a", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 532, + "Width": 126, + "Height": 8, + "Text": "leg and hand. Without helm he dies .", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 676, + "Width": 134, + "Height": 8, + "Text": "Head strike. Foe\u0027s skull is crushed. Any", + "Confidence": null, + "CenterX": 743 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 676, + "Width": 127, + "Height": 8, + "Text": "helmet worn is driven into the side of", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 601, + "Left": 676, + "Width": 37, + "Height": 8, + "Text": "foe\u0027s head.", + "Confidence": null, + "CenterX": 694.5 + }, + { + "PageNumber": 1, + "Top": 620, + "Left": 202, + "Width": 33, + "Height": 8, + "Text": "\u002B20H \u2013 \u03C0", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 620, + "Left": 338, + "Width": 42, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 620, + "Left": 486, + "Width": 39, + "Height": 8, + "Text": "3\u2211 \u2013 (-90)", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 620, + "Left": 663, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 665 + }, + { + "PageNumber": 1, + "Top": 620, + "Left": 807, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 99, + "Width": 123, + "Height": 8, + "Text": "Foe\u0027s evasion attempt exposes back", + "Confidence": null, + "CenterX": 160.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 99, + "Width": 135, + "Height": 8, + "Text": "and side. Impact causes foe to drop his", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 99, + "Width": 103, + "Height": 8, + "Text": "guard and stumble to the side.", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 244, + "Width": 122, + "Height": 8, + "Text": "Blow to back flings foe to knees. He", + "Confidence": null, + "CenterX": 305 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 244, + "Width": 125, + "Height": 8, + "Text": "drops his weapon. He stands but his", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 244, + "Width": 123, + "Height": 8, + "Text": "guard is down as he rearms himself.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 388, + "Width": 129, + "Height": 8, + "Text": "A piece of solid equipment is jammed", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 388, + "Width": 125, + "Height": 8, + "Text": "into foe\u0027s chest. The pain is sharp. It", + "Confidence": null, + "CenterX": 450.5 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 388, + "Width": 90, + "Height": 8, + "Text": "leaves a permanent bruise.", + "Confidence": null, + "CenterX": 433 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 532, + "Width": 129, + "Height": 8, + "Text": "Foe is knocked down. He lands on his", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 532, + "Width": 130, + "Height": 8, + "Text": "equipment, and drops his weapon. He", + "Confidence": null, + "CenterX": 597 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 532, + "Width": 94, + "Height": 8, + "Text": "cannot get up for 2 rounds.", + "Confidence": null, + "CenterX": 579 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 676, + "Width": 115, + "Height": 8, + "Text": "Strike impacts along thigh. Leg is", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 676, + "Width": 134, + "Height": 8, + "Text": "twisted and muscles pulled. Foe jams a", + "Confidence": null, + "CenterX": 743 + }, + { + "PageNumber": 1, + "Top": 654, + "Left": 676, + "Width": 88, + "Height": 8, + "Text": "finger during the struggle.", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 198, + "Width": 40, + "Height": 8, + "Text": "\u002B7H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 338, + "Width": 42, + "Height": 8, + "Text": "\u002B12H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 496, + "Width": 28, + "Height": 8, + "Text": "2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 627, + "Width": 43, + "Height": 8, + "Text": "\u002B15H \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 752, + "Width": 61, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 782.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "Modest strike provides some excellent", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "openings. If foe has a shield, it is out", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 99, + "Width": 78, + "Height": 8, + "Text": "of position for 1 round.", + "Confidence": null, + "CenterX": 138 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 244, + "Width": 124, + "Height": 8, + "Text": "Solid strike to shoulder numbs foe\u0027s", + "Confidence": null, + "CenterX": 306 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 244, + "Width": 119, + "Height": 8, + "Text": "senses and bruises muscles. Foe\u0027s", + "Confidence": null, + "CenterX": 303.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 244, + "Width": 81, + "Height": 8, + "Text": "sense of direction is off.", + "Confidence": null, + "CenterX": 284.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 388, + "Width": 126, + "Height": 8, + "Text": "Violent strike to foe\u0027s midsection. He", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 388, + "Width": 102, + "Height": 8, + "Text": "falls, drops equipment, and is", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 388, + "Width": 98, + "Height": 8, + "Text": "vulnerable while standing up.", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 532, + "Width": 123, + "Height": 8, + "Text": "Strike at foe\u0027s legs. Foe wisely leaps", + "Confidence": null, + "CenterX": 593.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 532, + "Width": 124, + "Height": 8, + "Text": "back from the strike. Both shins and", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 532, + "Width": 129, + "Height": 8, + "Text": "knees are bruised his ankle is broken.", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 676, + "Width": 123, + "Height": 8, + "Text": "Strike lands in center of foe\u0027s chest.", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 676, + "Width": 126, + "Height": 8, + "Text": "Foe is knocked down. Chest armor is", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 676, + "Width": 93, + "Height": 8, + "Text": "destroyed. Ribs are broken.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 196, + "Width": 39, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 325, + "Width": 57, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 453, + "Width": 71, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211\u220F \u20132(\u002B5)", + "Confidence": null, + "CenterX": 488.5 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 572, + "Width": 97, + "Height": 8, + "Text": "with leg armor: \u002B8H \u2013 2(-20)", + "Confidence": null, + "CenterX": 620.5 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 582, + "Width": 87, + "Height": 8, + "Text": "w/o leg armor: \u002B10H \u2013 \u2211", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 686, + "Width": 126, + "Height": 8, + "Text": "with chest armor: \u002B20H \u2013 5\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 737, + "Left": 687, + "Width": 125, + "Height": 8, + "Text": "w/o chest armor: \u002B15H \u2013 6\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 749.5 + }, + { + "PageNumber": 1, + "Top": 773, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 99, + "Width": 124, + "Height": 8, + "Text": "Strke lands hard against foe\u0027s shield", + "Confidence": null, + "CenterX": 161 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 99, + "Width": 128, + "Height": 8, + "Text": "side. He almost loses his footing. Foe", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 771, + "Left": 99, + "Width": 116, + "Height": 8, + "Text": "will fall against any nearby object.", + "Confidence": null, + "CenterX": 157 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 244, + "Width": 126, + "Height": 8, + "Text": "Your irresistible blow sends foe onto", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 244, + "Width": 121, + "Height": 8, + "Text": "his back. He drops his weapon. Foe", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 771, + "Left": 244, + "Width": 80, + "Height": 8, + "Text": "has a variety of bruises.", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 388, + "Width": 133, + "Height": 8, + "Text": "Sweep foe onto his back. Foe must roll", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 388, + "Width": 135, + "Height": 8, + "Text": "over to get up. Leg armor will slow him", + "Confidence": null, + "CenterX": 455.5 + }, + { + "PageNumber": 1, + "Top": 771, + "Left": 388, + "Width": 117, + "Height": 8, + "Text": "down. Minor fracture on lower leg.", + "Confidence": null, + "CenterX": 446.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 532, + "Width": 129, + "Height": 8, + "Text": "Fold up foe\u0027s weapon arm and snap it", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 532, + "Width": 132, + "Height": 8, + "Text": "against his body like a twig. His arm is", + "Confidence": null, + "CenterX": 598 + }, + { + "PageNumber": 1, + "Top": 771, + "Left": 532, + "Width": 95, + "Height": 8, + "Text": "useless. Boy that must hurt!", + "Confidence": null, + "CenterX": 579.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 676, + "Width": 133, + "Height": 8, + "Text": "Strike crashes into foe\u0027s side, breaking", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "his shoulder and collar bone. One arm", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 771, + "Left": 676, + "Width": 129, + "Height": 8, + "Text": "is useless; the other isn\u0027t much better.", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 164, + "Width": 72, + "Height": 8, + "Text": "with shield: \u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 142, + "Width": 96, + "Height": 8, + "Text": "w/o shield: \u002B15H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 190 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 281, + "Width": 99, + "Height": 8, + "Text": "with chest armor: \u002B12H \u2013 3\u03C0", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 251, + "Width": 129, + "Height": 8, + "Text": "w/o chest armor: \u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 315.5 + }, + { + "PageNumber": 1, + "Top": 790, + "Left": 411, + "Width": 114, + "Height": 8, + "Text": "with leg armor: \u002B5H \u2013 \u2211 \u2013 2(-60)", + "Confidence": null, + "CenterX": 468 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 412, + "Width": 112, + "Height": 8, + "Text": "w/o leg armor: \u002B15H \u2013 \u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 468 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 635, + "Width": 34, + "Height": 8, + "Text": "\u002B10H - \u2211", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 800, + "Left": 794, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 99, + "Width": 133, + "Height": 8, + "Text": "Solid shot to foe\u0027s chest drives home a", + "Confidence": null, + "CenterX": 165.5 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 99, + "Width": 134, + "Height": 8, + "Text": "deep bruise. The wound is unforgiving.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 834, + "Left": 99, + "Width": 127, + "Height": 8, + "Text": "Ribs are cracked and cartilage is torn.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 244, + "Width": 112, + "Height": 8, + "Text": "Brutal strike lands between foe\u0027s", + "Confidence": null, + "CenterX": 300 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 244, + "Width": 134, + "Height": 8, + "Text": "shoulder blades. Tendons and muscles", + "Confidence": null, + "CenterX": 311 + }, + { + "PageNumber": 1, + "Top": 834, + "Left": 244, + "Width": 114, + "Height": 8, + "Text": "sprain. Little is not painful for foe.", + "Confidence": null, + "CenterX": 301 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 388, + "Width": 129, + "Height": 8, + "Text": "Strike looks harmless. However, foe\u0027s", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 388, + "Width": 134, + "Height": 8, + "Text": "collarbone is broken. He is furious with", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 834, + "Left": 388, + "Width": 94, + "Height": 8, + "Text": "his fortune. The pain is real.", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 532, + "Width": 124, + "Height": 8, + "Text": "Impact to face and chest knocks out", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 532, + "Width": 133, + "Height": 8, + "Text": "teeth and breaks ribs. Foe is dazed and", + "Confidence": null, + "CenterX": 598.5 + }, + { + "PageNumber": 1, + "Top": 834, + "Left": 532, + "Width": 102, + "Height": 8, + "Text": "stands immobile for 3 rounds.", + "Confidence": null, + "CenterX": 583 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "Violent onslaught ruptures organs and", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 824, + "Left": 676, + "Width": 129, + "Height": 8, + "Text": "causes massive internal bleeding. Foe", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 834, + "Left": 676, + "Width": 94, + "Height": 8, + "Text": "will die in 6 inactive rounds.", + "Confidence": null, + "CenterX": 723 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 192, + "Width": 46, + "Height": 8, + "Text": "\u002B10H \u2013 (-25)", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 315, + "Width": 67, + "Height": 8, + "Text": "\u002B10H \u2013 2\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 463, + "Width": 61, + "Height": 8, + "Text": "\u002B15H \u2013 \u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 650, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 659 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 794, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 99, + "Width": 134, + "Height": 8, + "Text": "Assault to legs. Foe\u0027s balance is stolen.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 99, + "Width": 128, + "Height": 8, + "Text": "He falls to the ground. Foe\u0027s shin and", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 99, + "Width": 122, + "Height": 8, + "Text": "knee are bashed against the ground.", + "Confidence": null, + "CenterX": 160 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 244, + "Width": 134, + "Height": 8, + "Text": "Strike flings its strength into foe\u0027s legs.", + "Confidence": null, + "CenterX": 311 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 244, + "Width": 126, + "Height": 8, + "Text": "Muscles are bruised and tendons are", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 244, + "Width": 119, + "Height": 8, + "Text": "torn. Foe remains standing. One of", + "Confidence": null, + "CenterX": 303.5 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 244, + "Width": 82, + "Height": 8, + "Text": "foe\u0027s greaves comes off.", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 388, + "Width": 123, + "Height": 8, + "Text": "Blow fractures foe\u0027s thigh. Foe does", + "Confidence": null, + "CenterX": 449.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 388, + "Width": 131, + "Height": 8, + "Text": "not fall down, but he cannot walk until", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 388, + "Width": 117, + "Height": 8, + "Text": "the leg has a splint. This is a good", + "Confidence": null, + "CenterX": 446.5 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 388, + "Width": 124, + "Height": 8, + "Text": "opportunity to practice your first aid.", + "Confidence": null, + "CenterX": 450 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 532, + "Width": 131, + "Height": 8, + "Text": "Onslaught to foe\u0027s midsection. Organs", + "Confidence": null, + "CenterX": 597.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 532, + "Width": 132, + "Height": 8, + "Text": "are damaged and foe throws up blood.", + "Confidence": null, + "CenterX": 598 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 532, + "Width": 127, + "Height": 8, + "Text": "Foe\u0027s abdomen is seriously damaged.", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 532, + "Width": 115, + "Height": 8, + "Text": "He falls and should not be moved.", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 676, + "Width": 133, + "Height": 8, + "Text": "Foe is thrown down. Two ribs protrude", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 676, + "Width": 129, + "Height": 8, + "Text": "from his chest. Organs are destroyed.", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 676, + "Width": 130, + "Height": 8, + "Text": "Foe\u0027s eyes glaze when death comes in", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 676, + "Width": 24, + "Height": 8, + "Text": "3 rnds.", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 148, + "Width": 88, + "Height": 8, + "Text": "with leg armor: \u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 192 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 138, + "Width": 98, + "Height": 8, + "Text": "w/o leg armor: \u002B10H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 187 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 262, + "Width": 118, + "Height": 8, + "Text": "with leg armor: \u002B20H \u2013 3\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 261, + "Width": 119, + "Height": 8, + "Text": "w/o leg armor: \u002B20H \u2013 \u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 320.5 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 452, + "Width": 72, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211\u220F \u2013 (-60)", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 573, + "Width": 96, + "Height": 8, + "Text": "with abdominal armor: 12\u2211", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 538, + "Width": 131, + "Height": 8, + "Text": "w/o abdominal armor: dies in 6 rounds", + "Confidence": null, + "CenterX": 603.5 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 794, + "Width": 18, + "Height": 8, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 941, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "Blow to foe\u0027s head. If he has a helmet,", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 99, + "Width": 131, + "Height": 8, + "Text": "it is unseated and covers foe\u0027s eyes. If", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 99, + "Width": 102, + "Height": 8, + "Text": "no helmet, foe is knocked out.", + "Confidence": null, + "CenterX": 150 + }, + { + "PageNumber": 1, + "Top": 941, + "Left": 244, + "Width": 119, + "Height": 8, + "Text": "Strike hammers side of head. With", + "Confidence": null, + "CenterX": 303.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 244, + "Width": 127, + "Height": 8, + "Text": "helmet, foe is in coma for 2 weeks. If", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 244, + "Width": 102, + "Height": 8, + "Text": "no helm, foe diesin 1-10 rnds.", + "Confidence": null, + "CenterX": 295 + }, + { + "PageNumber": 1, + "Top": 941, + "Left": 388, + "Width": 127, + "Height": 8, + "Text": "Force of attack breaks foe\u0027s knee and", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 388, + "Width": 113, + "Height": 8, + "Text": "sends him down. He can\u0027t get up", + "Confidence": null, + "CenterX": 444.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 388, + "Width": 132, + "Height": 8, + "Text": "unassisted. He considers surrendering.", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 941, + "Left": 532, + "Width": 125, + "Height": 8, + "Text": "Foe\u0027s face, jaw and neck shatter. He", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 532, + "Width": 135, + "Height": 8, + "Text": "stumbles back a few steps. He falls and", + "Confidence": null, + "CenterX": 599.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 532, + "Width": 124, + "Height": 8, + "Text": "dies after 3 rounds of inactivity. Sad.", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 941, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "Foe\u0027s lower body is crushed. Massive", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 676, + "Width": 130, + "Height": 8, + "Text": "blood loss and shock will cause foe to", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 676, + "Width": 125, + "Height": 8, + "Text": "die after 6 rounds. He can still speak.", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 162, + "Width": 74, + "Height": 8, + "Text": "\u002B20H \u2013 3\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 362, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 371 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 452, + "Width": 72, + "Height": 8, + "Text": "\u002B20H \u2013 9\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 650, + "Width": 18, + "Height": 8, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 659 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 794, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 51, + "Width": 36, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "Blow lands hardest against foe\u0027s hip.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 99, + "Width": 117, + "Height": 8, + "Text": "The bone is fractured and foe falls", + "Confidence": null, + "CenterX": 157.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 99, + "Width": 118, + "Height": 8, + "Text": "down. Foe sprains wrist in the fall.", + "Confidence": null, + "CenterX": 158 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 99, + "Width": 77, + "Height": 8, + "Text": "When it rains, it pours.", + "Confidence": null, + "CenterX": 137.5 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 244, + "Width": 116, + "Height": 8, + "Text": "This sudden tempest breaks foe\u0027s", + "Confidence": null, + "CenterX": 302 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 244, + "Width": 129, + "Height": 8, + "Text": "neck. He cannot breath. He drops and", + "Confidence": null, + "CenterX": 308.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 244, + "Width": 123, + "Height": 8, + "Text": "dies after a futile 12 round struggle.", + "Confidence": null, + "CenterX": 305.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 244, + "Width": 50, + "Height": 8, + "Text": "Close his eyes.", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 388, + "Width": 137, + "Height": 8, + "Text": "Savage impact ruptures internal organs", + "Confidence": null, + "CenterX": 456.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 388, + "Width": 129, + "Height": 8, + "Text": "and breaks many bones. Foe falls and", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 388, + "Width": 18, + "Height": 8, + "Text": "dies..", + "Confidence": null, + "CenterX": 397 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 532, + "Width": 125, + "Height": 8, + "Text": "Bash in foe\u0027s side. Bones are broken", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 532, + "Width": 117, + "Height": 8, + "Text": "by the concussion. One of them is", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 532, + "Width": 117, + "Height": 8, + "Text": "driven into a kidney. Foe goes into", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 532, + "Width": 119, + "Height": 8, + "Text": "shock, drops, and dies in 8 rounds.", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 676, + "Width": 122, + "Height": 8, + "Text": "Strike brings foe down. His spine is", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 676, + "Width": 118, + "Height": 8, + "Text": "broken with liitle effort. Foe is still.", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "Blood pours from his mouth heralding", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 676, + "Width": 103, + "Height": 8, + "Text": "his death. He dies in 3 rounds.", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 165, + "Width": 71, + "Height": 8, + "Text": "\u002B20H - 3\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 362, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 371 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 506, + "Width": 18, + "Height": 8, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 515 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 650, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 659 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 794, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 803.5 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 57, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 69 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 99, + "Width": 134, + "Height": 8, + "Text": "Foe slams to ground from brutal strike.", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 99, + "Width": 127, + "Height": 8, + "Text": "His rib cage is fractured. With armor,", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 99, + "Width": 134, + "Height": 8, + "Text": "he is only knocked out; if no armor, foe", + "Confidence": null, + "CenterX": 166 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 99, + "Width": 126, + "Height": 8, + "Text": "dies in 3 rnds from internal bleeding.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 244, + "Width": 130, + "Height": 8, + "Text": "Bash in foe\u0027s side and a shoulder. The", + "Confidence": null, + "CenterX": 309 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 244, + "Width": 131, + "Height": 8, + "Text": "shoulder blade violently contacts foe\u0027s", + "Confidence": null, + "CenterX": 309.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 244, + "Width": 109, + "Height": 8, + "Text": "spine. Foe is paralyzed from the", + "Confidence": null, + "CenterX": 298.5 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 244, + "Width": 107, + "Height": 8, + "Text": "shoulder down. Foe is unhappy.", + "Confidence": null, + "CenterX": 297.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 388, + "Width": 115, + "Height": 8, + "Text": "Foe\u0027s head is in the middle of this", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 388, + "Width": 128, + "Height": 8, + "Text": "tumult. Foe dies instantly. His skull is", + "Confidence": null, + "CenterX": 452 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 388, + "Width": 135, + "Height": 8, + "Text": "crushed and a few other bones are also", + "Confidence": null, + "CenterX": 455.5 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 388, + "Width": 58, + "Height": 8, + "Text": "broken in his fall.", + "Confidence": null, + "CenterX": 417 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 532, + "Width": 122, + "Height": 8, + "Text": "Crush foe\u0027s lungs and heart with an", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 532, + "Width": 114, + "Height": 8, + "Text": "irresistible onslaught. The impact", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 532, + "Width": 129, + "Height": 8, + "Text": "slams foe to the ground and he dies a", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 532, + "Width": 47, + "Height": 8, + "Text": "moment later.", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 676, + "Width": 122, + "Height": 8, + "Text": "Blast breaks close to thirty bones in", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 676, + "Width": 124, + "Height": 8, + "Text": "foe\u0027s skeleton. He is dead a moment", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 676, + "Width": 131, + "Height": 8, + "Text": "later. His body is difficult to gather up.", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 676, + "Width": 122, + "Height": 8, + "Text": "Very little of his equipment in intact.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 218, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 227 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 362, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 371 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 506, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 515.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 650, + "Width": 19, + "Height": 8, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 807, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 277, + "Width": 355, + "Height": 19, + "Text": "14.4 IMPACT CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 454.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/impact/pages/page-001.png new file mode 100644 index 0000000..48cdca1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/impact/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/impact/parsed-cells.json new file mode 100644 index 0000000..06a9867 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/impact/parsed-cells.json @@ -0,0 +1,7330 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Foe rolls with the blow..", + "\u002B0H" + ], + "BaseLines": [ + "Foe rolls with the blow..", + "\u002B0H" + ], + "RawCellText": "Foe rolls with the blow..\n\u002B0H", + "DescriptionText": "Foe rolls with the blow..", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 95, + "Width": 137, + "Height": 26 + }, + "SourceImagePath": "impact/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 380, + "BoundsWidth": 548, + "BoundsHeight": 104, + "CropLeft": 348, + "CropTop": 348, + "CropWidth": 644, + "CropHeight": 168, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Rattle foe a little. Bruise his elbow.", + "\u002B0H" + ], + "BaseLines": [ + "Rattle foe a little. Bruise his elbow.", + "\u002B0H" + ], + "RawCellText": "Rattle foe a little. Bruise his elbow.\n\u002B0H", + "DescriptionText": "Rattle foe a little. Bruise his elbow.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 95, + "Width": 136, + "Height": 26 + }, + "SourceImagePath": "impact/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 380, + "BoundsWidth": 544, + "BoundsHeight": 104, + "CropLeft": 928, + "CropTop": 348, + "CropWidth": 640, + "CropHeight": 168, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Strike glances off foe. He presses on.", + "\u002B1H" + ], + "BaseLines": [ + "Strike glances off foe. He presses on.", + "\u002B1H" + ], + "RawCellText": "Strike glances off foe. He presses on.\n\u002B1H", + "DescriptionText": "Strike glances off foe. He presses on.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 95, + "Width": 136, + "Height": 26 + }, + "SourceImagePath": "impact/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 380, + "BoundsWidth": 544, + "BoundsHeight": 104, + "CropLeft": 1504, + "CropTop": 348, + "CropWidth": 640, + "CropHeight": 168, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Strike lands without force. Foe is up.", + "\u002B2H" + ], + "BaseLines": [ + "Strike lands without force. Foe is up.", + "\u002B2H" + ], + "RawCellText": "Strike lands without force. Foe is up.\n\u002B2H", + "DescriptionText": "Strike lands without force. Foe is up.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 95, + "Width": 137, + "Height": 26 + }, + "SourceImagePath": "impact/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 380, + "BoundsWidth": 548, + "BoundsHeight": 104, + "CropLeft": 2080, + "CropTop": 348, + "CropWidth": 644, + "CropHeight": 168, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "How foe evaded that blow is a mystery.", + "\u002B3H" + ], + "BaseLines": [ + "How foe evaded that blow is a mystery.", + "\u002B3H" + ], + "RawCellText": "How foe evaded that blow is a mystery.\n\u002B3H", + "DescriptionText": "How foe evaded that blow is a mystery.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 95, + "Width": 137, + "Height": 26 + }, + "SourceImagePath": "impact/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 380, + "BoundsWidth": 548, + "BoundsHeight": 104, + "CropLeft": 2656, + "CropTop": 348, + "CropWidth": 644, + "CropHeight": 168, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "It looks solid, but foe is not hindered.", + "\u002B1H" + ], + "BaseLines": [ + "It looks solid, but foe is not hindered.", + "\u002B1H" + ], + "RawCellText": "It looks solid, but foe is not hindered.\n\u002B1H", + "DescriptionText": "It looks solid, but foe is not hindered.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 129, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 516, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 348, + "CropTop": 484, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Bump foe in the chest. He loses a", + "garment decoration.", + "\u002B2H" + ], + "BaseLines": [ + "Bump foe in the chest. He loses a", + "garment decoration.", + "\u002B2H" + ], + "RawCellText": "Bump foe in the chest. He loses a\ngarment decoration.\n\u002B2H", + "DescriptionText": "Bump foe in the chest. He loses a garment decoration.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 129, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 516, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 928, + "CropTop": 484, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Foe turns to evade and gets hit in the", + "backside. Little damage is done.", + "\u002B3H" + ], + "BaseLines": [ + "Foe turns to evade and gets hit in the", + "backside. Little damage is done.", + "\u002B3H" + ], + "RawCellText": "Foe turns to evade and gets hit in the\nbackside. Little damage is done.\n\u002B3H", + "DescriptionText": "Foe turns to evade and gets hit in the backside. Little damage is done.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 129, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 516, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 1504, + "CropTop": 484, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Wild assault to shoulder fails to", + "connect with foe.", + "\u002B4H" + ], + "BaseLines": [ + "Wild assault to shoulder fails to", + "connect with foe.", + "\u002B4H" + ], + "RawCellText": "Wild assault to shoulder fails to\nconnect with foe.\n\u002B4H", + "DescriptionText": "Wild assault to shoulder fails to connect with foe.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 129, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 516, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2080, + "CropTop": 484, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Foe is unbalanced and gives ground to", + "regain his footing.", + "\u002B3H \u2013 2(-15)" + ], + "BaseLines": [ + "Foe is unbalanced and gives ground to", + "regain his footing.", + "\u002B3H \u2013 2(-15)" + ], + "RawCellText": "Foe is unbalanced and gives ground to\nregain his footing.\n\u002B3H \u2013 2(-15)", + "DescriptionText": "Foe is unbalanced and gives ground to regain his footing.", + "RawAffixText": "\u002B3H \u2013 2(-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 129, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 516, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2656, + "CropTop": 484, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "With great effort foe evades the", + "damage. You have initiative.", + "\u002B2H" + ], + "BaseLines": [ + "With great effort foe evades the", + "damage. You have initiative.", + "\u002B2H" + ], + "RawCellText": "With great effort foe evades the\ndamage. You have initiative.\n\u002B2H", + "DescriptionText": "With great effort foe evades the damage. You have initiative.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 172, + "Width": 137, + "Height": 36 + }, + "SourceImagePath": "impact/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 688, + "BoundsWidth": 548, + "BoundsHeight": 144, + "CropLeft": 348, + "CropTop": 656, + "CropWidth": 644, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Corrupt foe\u0027s sense of balance. He", + "stumbles and loses the initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Corrupt foe\u0027s sense of balance. He", + "stumbles and loses the initiative.", + "\u002B4H" + ], + "RawCellText": "Corrupt foe\u0027s sense of balance. He\nstumbles and loses the initiative.\n\u002B4H", + "DescriptionText": "Corrupt foe\u0027s sense of balance. He stumbles and loses the initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 172, + "Width": 136, + "Height": 36 + }, + "SourceImagePath": "impact/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 688, + "BoundsWidth": 544, + "BoundsHeight": 144, + "CropLeft": 928, + "CropTop": 656, + "CropWidth": 640, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Firm strike causes foe to step back and", + "get his bearings.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Firm strike causes foe to step back and", + "get his bearings.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Firm strike causes foe to step back and\nget his bearings.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Firm strike causes foe to step back and get his bearings.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 172, + "Width": 136, + "Height": 36 + }, + "SourceImagePath": "impact/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 688, + "BoundsWidth": 544, + "BoundsHeight": 144, + "CropLeft": 1504, + "CropTop": 656, + "CropWidth": 640, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Strike to chest is not hard but it is well", + "placed. Foe steps back 5 feet.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Strike to chest is not hard but it is well", + "placed. Foe steps back 5 feet.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Strike to chest is not hard but it is well\nplaced. Foe steps back 5 feet.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Strike to chest is not hard but it is well placed. Foe steps back 5 feet.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 172, + "Width": 136, + "Height": 36 + }, + "SourceImagePath": "impact/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 688, + "BoundsWidth": 544, + "BoundsHeight": 144, + "CropLeft": 2080, + "CropTop": 656, + "CropWidth": 640, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Foe staggers back and trips, making", + "things worse for him.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Foe staggers back and trips, making", + "things worse for him.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Foe staggers back and trips, making\nthings worse for him.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Foe staggers back and trips, making things worse for him.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 172, + "Width": 136, + "Height": 36 + }, + "SourceImagePath": "impact/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 688, + "BoundsWidth": 544, + "BoundsHeight": 144, + "CropLeft": 2656, + "CropTop": 656, + "CropWidth": 640, + "CropHeight": 208, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Spin foe sideways. He recovers", + "quickly. You have the initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Spin foe sideways. He recovers", + "quickly. You have the initiative.", + "\u002B3H" + ], + "RawCellText": "Spin foe sideways. He recovers\nquickly. You have the initiative.\n\u002B3H", + "DescriptionText": "Spin foe sideways. He recovers quickly. You have the initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 216, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 864, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 348, + "CropTop": 832, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s response is quick enough to", + "avoid serious damage.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe\u0027s response is quick enough to", + "avoid serious damage.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Foe\u0027s response is quick enough to\navoid serious damage.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Foe\u0027s response is quick enough to avoid serious damage.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 216, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 864, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 928, + "CropTop": 832, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Strong blow. Foe abandons any hope", + "of the initiative and falls back.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Strong blow. Foe abandons any hope", + "of the initiative and falls back.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Strong blow. Foe abandons any hope\nof the initiative and falls back.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Strong blow. Foe abandons any hope of the initiative and falls back.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 216, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 864, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 1504, + "CropTop": 832, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe starts stepping away from the", + "assault before it hits his legs.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe starts stepping away from the", + "assault before it hits his legs.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Foe starts stepping away from the\nassault before it hits his legs.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Foe starts stepping away from the assault before it hits his legs.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 216, + "Width": 138, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 864, + "BoundsWidth": 552, + "BoundsHeight": 148, + "CropLeft": 2080, + "CropTop": 832, + "CropWidth": 648, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B9H \u2013 \u2211" + ], + "BaseLines": [ + "Foe fails to avoid some of the attack", + "and almost falls down.", + "\u002B9H \u2013 \u2211" + ], + "RawCellText": "Foe fails to avoid some of the attack\nand almost falls down.\n\u002B9H \u2013 \u2211", + "DescriptionText": "Foe fails to avoid some of the attack and almost falls down.", + "RawAffixText": "\u002B9H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 216, + "Width": 137, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 864, + "BoundsWidth": 548, + "BoundsHeight": 148, + "CropLeft": 2656, + "CropTop": 832, + "CropWidth": 644, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Your strike has some effect. Foe loses", + "his balance and cannot regain a good", + "stance. You have 2 rounds of initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Your strike has some effect. Foe loses", + "his balance and cannot regain a good", + "stance. You have 2 rounds of initiative.", + "\u002B5H" + ], + "RawCellText": "Your strike has some effect. Foe loses\nhis balance and cannot regain a good\nstance. You have 2 rounds of initiative.\n\u002B5H", + "DescriptionText": "Your strike has some effect. Foe loses his balance and cannot regain a good stance. You have 2 rounds of initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 260, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 1040, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 1008, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Strike seeks foe\u0027s head. He blocks with", + "his weapon and evades with shameless", + "grace. He keeps his guard up.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Strike seeks foe\u0027s head. He blocks with", + "his weapon and evades with shameless", + "grace. He keeps his guard up.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Strike seeks foe\u0027s head. He blocks with\nhis weapon and evades with shameless\ngrace. He keeps his guard up.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Strike seeks foe\u0027s head. He blocks with his weapon and evades with shameless grace. He keeps his guard up.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 260, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 1040, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 1008, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Foe is unbalanced and can only", + "manage some wild swings to protect", + "himself for the moment.", + "\u002B8H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe is unbalanced and can only", + "manage some wild swings to protect", + "himself for the moment.", + "\u002B8H \u2013 \u03C0" + ], + "RawCellText": "Foe is unbalanced and can only\nmanage some wild swings to protect\nhimself for the moment.\n\u002B8H \u2013 \u03C0", + "DescriptionText": "Foe is unbalanced and can only manage some wild swings to protect himself for the moment.", + "RawAffixText": "\u002B8H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 260, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 1040, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 1008, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Blow almost sends foe down. He", + "strikes the ground with his weapon", + "while trying to regain his balance.", + "\u002B10H \u2013 \u03C0" + ], + "BaseLines": [ + "Blow almost sends foe down. He", + "strikes the ground with his weapon", + "while trying to regain his balance.", + "\u002B10H \u2013 \u03C0" + ], + "RawCellText": "Blow almost sends foe down. He\nstrikes the ground with his weapon\nwhile trying to regain his balance.\n\u002B10H \u2013 \u03C0", + "DescriptionText": "Blow almost sends foe down. He strikes the ground with his weapon while trying to regain his balance.", + "RawAffixText": "\u002B10H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 260, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 1040, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 1008, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Foe reels from this deadly strike. He", + "avoids death but not damage. His side", + "is badly bruised.", + "\u002B15H \u2013 \u2211" + ], + "BaseLines": [ + "Foe reels from this deadly strike. He", + "avoids death but not damage. His side", + "is badly bruised.", + "\u002B15H \u2013 \u2211" + ], + "RawCellText": "Foe reels from this deadly strike. He\navoids death but not damage. His side\nis badly bruised.\n\u002B15H \u2013 \u2211", + "DescriptionText": "Foe reels from this deadly strike. He avoids death but not damage. His side is badly bruised.", + "RawAffixText": "\u002B15H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 260, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 1040, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 1008, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Foe must give ground or fall. He steps", + "back 5 ft and goes low to avoid falling.", + "He loses 2 rnds of initiative.", + "\u002B8H" + ], + "BaseLines": [ + "Foe must give ground or fall. He steps", + "back 5 ft and goes low to avoid falling.", + "He loses 2 rnds of initiative.", + "\u002B8H" + ], + "RawCellText": "Foe must give ground or fall. He steps\nback 5 ft and goes low to avoid falling.\nHe loses 2 rnds of initiative.\n\u002B8H", + "DescriptionText": "Foe must give ground or fall. He steps back 5 ft and goes low to avoid falling. He loses 2 rnds of initiative.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 313, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 1252, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 1220, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Violent blow to shield side. Any shield", + "is destroyed. Foe\u0027s side is bruised. He", + "is still on his feet.", + "\u002B9H \u2013 \u03C0" + ], + "BaseLines": [ + "Violent blow to shield side. Any shield", + "is destroyed. Foe\u0027s side is bruised. He", + "is still on his feet.", + "\u002B9H \u2013 \u03C0" + ], + "RawCellText": "Violent blow to shield side. Any shield\nis destroyed. Foe\u0027s side is bruised. He\nis still on his feet.\n\u002B9H \u2013 \u03C0", + "DescriptionText": "Violent blow to shield side. Any shield is destroyed. Foe\u0027s side is bruised. He is still on his feet.", + "RawAffixText": "\u002B9H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 313, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 1252, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 1220, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Pitiless blow to foe\u0027s lower leg. Foe is", + "desperate to defend himself while he", + "regains his balance.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Pitiless blow to foe\u0027s lower leg. Foe is", + "desperate to defend himself while he", + "regains his balance.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Pitiless blow to foe\u0027s lower leg. Foe is\ndesperate to defend himself while he\nregains his balance.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Pitiless blow to foe\u0027s lower leg. Foe is desperate to defend himself while he regains his balance.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 313, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 1252, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 1220, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Boom! Foe is hammered by an", + "effective strike to his back. He looks to", + "be recovering. Minor bruises.", + "\u002B12H \u2013 2\u2211" + ], + "BaseLines": [ + "Boom! Foe is hammered by an", + "effective strike to his back. He looks to", + "be recovering. Minor bruises.", + "\u002B12H \u2013 2\u2211" + ], + "RawCellText": "Boom! Foe is hammered by an\neffective strike to his back. He looks to\nbe recovering. Minor bruises.\n\u002B12H \u2013 2\u2211", + "DescriptionText": "Boom! Foe is hammered by an effective strike to his back. He looks to be recovering. Minor bruises.", + "RawAffixText": "\u002B12H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 313, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 1252, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 1220, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Hammer foe in shoulder. He falls 10", + "feet and spuins around. He stumbles", + "another 5 ft before regaining control.", + "\u002B15H \u20132\u2211 \u2013 2(-15)" + ], + "BaseLines": [ + "Hammer foe in shoulder. He falls 10", + "feet and spuins around. He stumbles", + "another 5 ft before regaining control.", + "\u002B15H \u20132\u2211 \u2013 2(-15)" + ], + "RawCellText": "Hammer foe in shoulder. He falls 10\nfeet and spuins around. He stumbles\nanother 5 ft before regaining control.\n\u002B15H \u20132\u2211 \u2013 2(-15)", + "DescriptionText": "Hammer foe in shoulder. He falls 10 feet and spuins around. He stumbles another 5 ft before regaining control.", + "RawAffixText": "\u002B15H \u20132\u2211 \u2013 2(-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 313, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 1252, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 1220, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "A solid shot unnerves foe and knocks", + "him to the side. His recovery is slow.", + "You have 3 rounds of initiative.", + "\u002B10H" + ], + "BaseLines": [ + "A solid shot unnerves foe and knocks", + "him to the side. His recovery is slow.", + "You have 3 rounds of initiative.", + "\u002B10H" + ], + "RawCellText": "A solid shot unnerves foe and knocks\nhim to the side. His recovery is slow.\nYou have 3 rounds of initiative.\n\u002B10H", + "DescriptionText": "A solid shot unnerves foe and knocks him to the side. His recovery is slow. You have 3 rounds of initiative.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 367, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 1468, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 1436, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Foe loses footing before being struck,", + "but still avoids most of assault. A piece", + "of equipment is knocked loose.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Foe loses footing before being struck,", + "but still avoids most of assault. A piece", + "of equipment is knocked loose.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Foe loses footing before being struck,\nbut still avoids most of assault. A piece\nof equipment is knocked loose.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Foe loses footing before being struck, but still avoids most of assault. A piece of equipment is knocked loose.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 367, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 1468, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 1436, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s weapon arm is slammed into his", + "chest. Foe almost falls. He steps back", + "5 feet and regains some footing.", + "\u002B12H \u2013 2\u03C0 \u2013 (\u002B5)" + ], + "BaseLines": [ + "Foe\u0027s weapon arm is slammed into his", + "chest. Foe almost falls. He steps back", + "5 feet and regains some footing.", + "\u002B12H \u2013 2\u03C0 \u2013 (\u002B5)" + ], + "RawCellText": "Foe\u0027s weapon arm is slammed into his\nchest. Foe almost falls. He steps back\n5 feet and regains some footing.\n\u002B12H \u2013 2\u03C0 \u2013 (\u002B5)", + "DescriptionText": "Foe\u0027s weapon arm is slammed into his chest. Foe almost falls. He steps back 5 feet and regains some footing.", + "RawAffixText": "\u002B12H \u2013 2\u03C0 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 367, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 1468, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 1436, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Foe is shaken and steps back 5 feet for", + "the next 2 rounds. If he cannot step", + "back he falls down.", + "\u002B5H \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe is shaken and steps back 5 feet for", + "the next 2 rounds. If he cannot step", + "back he falls down.", + "\u002B5H \u2013 2\u03C0" + ], + "RawCellText": "Foe is shaken and steps back 5 feet for\nthe next 2 rounds. If he cannot step\nback he falls down.\n\u002B5H \u2013 2\u03C0", + "DescriptionText": "Foe is shaken and steps back 5 feet for the next 2 rounds. If he cannot step back he falls down.", + "RawAffixText": "\u002B5H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 367, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 1468, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 1436, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Foe is lifted off the ground and thrown", + "back five feet. Amazingly he does not", + "fall. His guard is down.", + "\u002B20H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Foe is lifted off the ground and thrown", + "back five feet. Amazingly he does not", + "fall. His guard is down.", + "\u002B20H \u2013 \u2211\u220F" + ], + "RawCellText": "Foe is lifted off the ground and thrown\nback five feet. Amazingly he does not\nfall. His guard is down.\n\u002B20H \u2013 \u2211\u220F", + "DescriptionText": "Foe is lifted off the ground and thrown back five feet. Amazingly he does not fall. His guard is down.", + "RawAffixText": "\u002B20H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 367, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 1468, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 1436, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Bash to foe\u0027s side damages equipment", + "unbalancing him. He stumbles about.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Bash to foe\u0027s side damages equipment", + "unbalancing him. He stumbles about.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Bash to foe\u0027s side damages equipment\nunbalancing him. He stumbles about.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Bash to foe\u0027s side damages equipment unbalancing him. He stumbles about.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 420, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 1680, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 348, + "CropTop": 1648, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Smash foe to side. Foe still fights but", + "footing is unfirm and armor is loose.", + "\u002B12H \u2013 \u2211" + ], + "BaseLines": [ + "Smash foe to side. Foe still fights but", + "footing is unfirm and armor is loose.", + "\u002B12H \u2013 \u2211" + ], + "RawCellText": "Smash foe to side. Foe still fights but\nfooting is unfirm and armor is loose.\n\u002B12H \u2013 \u2211", + "DescriptionText": "Smash foe to side. Foe still fights but footing is unfirm and armor is loose.", + "RawAffixText": "\u002B12H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 420, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 1680, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 928, + "CropTop": 1648, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard strike to side, armor does not", + "help. The bruise is deep and effective.", + "\u002B15H \u2013 2\u03C0" + ], + "BaseLines": [ + "Hard strike to side, armor does not", + "help. The bruise is deep and effective.", + "\u002B15H \u2013 2\u03C0" + ], + "RawCellText": "Hard strike to side, armor does not\nhelp. The bruise is deep and effective.\n\u002B15H \u2013 2\u03C0", + "DescriptionText": "Hard strike to side, armor does not help. The bruise is deep and effective.", + "RawAffixText": "\u002B15H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 420, + "Width": 135, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 1680, + "BoundsWidth": 540, + "BoundsHeight": 148, + "CropLeft": 1504, + "CropTop": 1648, + "CropWidth": 636, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Batter foe. He fumbles his weapon", + "grip. He notices little else right now.", + "\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "Batter foe. He fumbles his weapon", + "grip. He notices little else right now.", + "\u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "Batter foe. He fumbles his weapon\ngrip. He notices little else right now.\n\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "Batter foe. He fumbles his weapon grip. He notices little else right now.", + "RawAffixText": "\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 420, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 1680, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 2080, + "CropTop": 1648, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Foe tries to withstand blow, but goes", + "down. He takes 2 rnds to stand.", + "\u002B20H \u2013 2(40)" + ], + "BaseLines": [ + "Foe tries to withstand blow, but goes", + "down. He takes 2 rnds to stand.", + "\u002B20H \u2013 2(40)" + ], + "RawCellText": "Foe tries to withstand blow, but goes\ndown. He takes 2 rnds to stand.\n\u002B20H \u2013 2(40)", + "DescriptionText": "Foe tries to withstand blow, but goes down. He takes 2 rnds to stand.", + "RawAffixText": "\u002B20H \u2013 2(40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 420, + "Width": 136, + "Height": 37 + }, + "SourceImagePath": "impact/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 1680, + "BoundsWidth": 544, + "BoundsHeight": 148, + "CropLeft": 2656, + "CropTop": 1648, + "CropWidth": 640, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s shield arm is roughed up. Foe", + "puts his guard up and steps back. It is", + "clear he is dazed.", + "\u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Foe\u0027s shield arm is roughed up. Foe", + "puts his guard up and steps back. It is", + "clear he is dazed.", + "\u002B10H \u2013 \u2211" + ], + "RawCellText": "Foe\u0027s shield arm is roughed up. Foe\nputs his guard up and steps back. It is\nclear he is dazed.\n\u002B10H \u2013 \u2211", + "DescriptionText": "Foe\u0027s shield arm is roughed up. Foe puts his guard up and steps back. It is clear he is dazed.", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 464, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 1856, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 1824, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s response is ungraceful. The", + "strike slams his weapon arm into his", + "side and pins it for the moment.", + "\u002B10H \u2013 2\u2211" + ], + "BaseLines": [ + "Foe\u0027s response is ungraceful. The", + "strike slams his weapon arm into his", + "side and pins it for the moment.", + "\u002B10H \u2013 2\u2211" + ], + "RawCellText": "Foe\u0027s response is ungraceful. The\nstrike slams his weapon arm into his\nside and pins it for the moment.\n\u002B10H \u2013 2\u2211", + "DescriptionText": "Foe\u0027s response is ungraceful. The strike slams his weapon arm into his side and pins it for the moment.", + "RawAffixText": "\u002B10H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 464, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 1856, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 1824, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong bash hits foe low. His legs", + "almost give with the pain. Foe recoils", + "5 feet away from your assault.", + "\u002B12H \u2013 2\u2211" + ], + "BaseLines": [ + "Strong bash hits foe low. His legs", + "almost give with the pain. Foe recoils", + "5 feet away from your assault.", + "\u002B12H \u2013 2\u2211" + ], + "RawCellText": "Strong bash hits foe low. His legs\nalmost give with the pain. Foe recoils\n5 feet away from your assault.\n\u002B12H \u2013 2\u2211", + "DescriptionText": "Strong bash hits foe low. His legs almost give with the pain. Foe recoils 5 feet away from your assault.", + "RawAffixText": "\u002B12H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 464, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 1856, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 1824, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Concussion bruises skin and batters", + "ribs. Foe is numb, unable to feel the", + "damage. He thinks wound is mortal.", + "2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Concussion bruises skin and batters", + "ribs. Foe is numb, unable to feel the", + "damage. He thinks wound is mortal.", + "2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Concussion bruises skin and batters\nribs. Foe is numb, unable to feel the\ndamage. He thinks wound is mortal.\n2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Concussion bruises skin and batters ribs. Foe is numb, unable to feel the damage. He thinks wound is mortal.", + "RawAffixText": "2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 464, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 1856, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 1824, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Impact scatters unattached equipment.", + "Shield, helmet, and any weapons go", + "flying. Foe then falls down.", + "\u002B20H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Impact scatters unattached equipment.", + "Shield, helmet, and any weapons go", + "flying. Foe then falls down.", + "\u002B20H \u2013 2\u2211\u220F" + ], + "RawCellText": "Impact scatters unattached equipment.\nShield, helmet, and any weapons go\nflying. Foe then falls down.\n\u002B20H \u2013 2\u2211\u220F", + "DescriptionText": "Impact scatters unattached equipment. Shield, helmet, and any weapons go flying. Foe then falls down.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 464, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 1856, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 1824, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe holds onto his", + "weapon .", + "with arm greaves: \u002B8H \u2013 \u03C0", + "w/o arm greaves: \u002B12H \u2013 \u2211" + ], + "BaseLines": [ + "Well placed. Strike slams into foe\u0027s", + "weapon arm. Foe holds onto his", + "weapon ." + ], + "RawCellText": "Well placed. Strike slams into foe\u0027s\nweapon arm. Foe holds onto his\nweapon .", + "DescriptionText": "Well placed. Strike slams into foe\u0027s weapon arm. Foe holds onto his weapon .", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_arm_greaves", + "ConditionText": "with arm greaves", + "RawText": "with arm greaves: \u002B8H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_arm_greaves", + "ConditionText": "w/o arm greaves", + "RawText": "w/o arm greaves: \u002B12H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 519, + "Width": 138, + "Height": 55 + }, + "SourceImagePath": "impact/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 2076, + "BoundsWidth": 552, + "BoundsHeight": 220, + "CropLeft": 348, + "CropTop": 2044, + "CropWidth": 648, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Blow crashes into foe\u0027s chest. If he has", + "chest armor, it is damaged. If not, he", + "has terrible bruises and cracked ribs.", + "with chest armor: \u002B12H \u2013 2\u03C0", + "w/o chest armor: \u002B10H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Blow crashes into foe\u0027s chest. If he has", + "chest armor, it is damaged. If not, he", + "has terrible bruises and cracked ribs." + ], + "RawCellText": "Blow crashes into foe\u0027s chest. If he has\nchest armor, it is damaged. If not, he\nhas terrible bruises and cracked ribs.", + "DescriptionText": "Blow crashes into foe\u0027s chest. If he has chest armor, it is damaged. If not, he has terrible bruises and cracked ribs.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: \u002B12H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: \u002B10H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 519, + "Width": 136, + "Height": 55 + }, + "SourceImagePath": "impact/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 2076, + "BoundsWidth": 544, + "BoundsHeight": 220, + "CropLeft": 928, + "CropTop": 2044, + "CropWidth": 640, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Crashing blow to foe\u0027s shoulder sends", + "him over. He uses weapon arm to stay", + "standing and cannot defend himself.", + "\u002B10H \u2013 \u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "Crashing blow to foe\u0027s shoulder sends", + "him over. He uses weapon arm to stay", + "standing and cannot defend himself.", + "\u002B10H \u2013 \u2211\u220F \u2013 (\u002B5)" + ], + "RawCellText": "Crashing blow to foe\u0027s shoulder sends\nhim over. He uses weapon arm to stay\nstanding and cannot defend himself.\n\u002B10H \u2013 \u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "Crashing blow to foe\u0027s shoulder sends him over. He uses weapon arm to stay standing and cannot defend himself.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 519, + "Width": 136, + "Height": 55 + }, + "SourceImagePath": "impact/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 2076, + "BoundsWidth": 544, + "BoundsHeight": 220, + "CropLeft": 1504, + "CropTop": 2044, + "CropWidth": 640, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Lay waste to foe\u0027s shield arm. Any", + "shield in use takes some of the", + "damage, but is destroyed by impact.", + "with shield: \u002B5H \u2013 \u2211 \u2013 3(-10)", + "w/o shield: \u002B10H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Lay waste to foe\u0027s shield arm. Any", + "shield in use takes some of the", + "damage, but is destroyed by impact." + ], + "RawCellText": "Lay waste to foe\u0027s shield arm. Any\nshield in use takes some of the\ndamage, but is destroyed by impact.", + "DescriptionText": "Lay waste to foe\u0027s shield arm. Any shield in use takes some of the damage, but is destroyed by impact.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B5H \u2013 \u2211 \u2013 3(-10)", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 3(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B10H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 519, + "Width": 139, + "Height": 55 + }, + "SourceImagePath": "impact/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 2076, + "BoundsWidth": 556, + "BoundsHeight": 220, + "CropLeft": 2080, + "CropTop": 2044, + "CropWidth": 652, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Your strike vandalizes foe\u0027s sense of", + "balance and he crashes to the ground.", + "His legs and pride are bruised.", + "\u002B20H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Your strike vandalizes foe\u0027s sense of", + "balance and he crashes to the ground.", + "His legs and pride are bruised.", + "\u002B20H \u2013 3\u2211\u220F" + ], + "RawCellText": "Your strike vandalizes foe\u0027s sense of\nbalance and he crashes to the ground.\nHis legs and pride are bruised.\n\u002B20H \u2013 3\u2211\u220F", + "DescriptionText": "Your strike vandalizes foe\u0027s sense of balance and he crashes to the ground. His legs and pride are bruised.", + "RawAffixText": "\u002B20H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 519, + "Width": 136, + "Height": 55 + }, + "SourceImagePath": "impact/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 2076, + "BoundsWidth": 544, + "BoundsHeight": 220, + "CropLeft": 2656, + "CropTop": 2044, + "CropWidth": 640, + "CropHeight": 284, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Foe braced poorly for the impact. His", + "knee is pressed backwards damaging", + "muscles and tendons.", + "\u002B20H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe braced poorly for the impact. His", + "knee is pressed backwards damaging", + "muscles and tendons.", + "\u002B20H \u2013 \u03C0" + ], + "RawCellText": "Foe braced poorly for the impact. His\nknee is pressed backwards damaging\nmuscles and tendons.\n\u002B20H \u2013 \u03C0", + "DescriptionText": "Foe braced poorly for the impact. His knee is pressed backwards damaging muscles and tendons.", + "RawAffixText": "\u002B20H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 581, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 2324, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 2292, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Fingers are entangled in the impact and", + "broken. Foe\u0027s shield hand is useless.", + "The swelling might go away in a day.", + "\u002B15H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Fingers are entangled in the impact and", + "broken. Foe\u0027s shield hand is useless.", + "The swelling might go away in a day.", + "\u002B15H \u2013 \u2211\u220F" + ], + "RawCellText": "Fingers are entangled in the impact and\nbroken. Foe\u0027s shield hand is useless.\nThe swelling might go away in a day.\n\u002B15H \u2013 \u2211\u220F", + "DescriptionText": "Fingers are entangled in the impact and broken. Foe\u0027s shield hand is useless. The swelling might go away in a day.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 581, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 2324, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 2292, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Blast breaks shield arm. He falls on his", + "weapon arm and breaks his wrist. Both", + "arms are useless. Talk about bad luck.", + "3\u2211 \u2013 (-90)" + ], + "BaseLines": [ + "Blast breaks shield arm. He falls on his", + "weapon arm and breaks his wrist. Both", + "arms are useless. Talk about bad luck.", + "3\u2211 \u2013 (-90)" + ], + "RawCellText": "Blast breaks shield arm. He falls on his\nweapon arm and breaks his wrist. Both\narms are useless. Talk about bad luck.\n3\u2211 \u2013 (-90)", + "DescriptionText": "Blast breaks shield arm. He falls on his weapon arm and breaks his wrist. Both arms are useless. Talk about bad luck.", + "RawAffixText": "3\u2211 \u2013 (-90)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 581, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 2324, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 2292, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Snap foe\u0027s head back. Foe falls", + "unconscious onto ground breaking a", + "leg and hand. Without helm he dies .", + "\u2013" + ], + "BaseLines": [ + "Snap foe\u0027s head back. Foe falls", + "unconscious onto ground breaking a", + "leg and hand. Without helm he dies .", + "\u2013" + ], + "RawCellText": "Snap foe\u0027s head back. Foe falls\nunconscious onto ground breaking a\nleg and hand. Without helm he dies .\n\u2013", + "DescriptionText": "Snap foe\u0027s head back. Foe falls unconscious onto ground breaking a leg and hand. Without helm he dies .", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 581, + "Width": 135, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 2324, + "BoundsWidth": 540, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 2292, + "CropWidth": 636, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Head strike. Foe\u0027s skull is crushed. Any", + "helmet worn is driven into the side of", + "foe\u0027s head.", + "\u2013" + ], + "BaseLines": [ + "Head strike. Foe\u0027s skull is crushed. Any", + "helmet worn is driven into the side of", + "foe\u0027s head.", + "\u2013" + ], + "RawCellText": "Head strike. Foe\u0027s skull is crushed. Any\nhelmet worn is driven into the side of\nfoe\u0027s head.\n\u2013", + "DescriptionText": "Head strike. Foe\u0027s skull is crushed. Any helmet worn is driven into the side of foe\u0027s head.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 581, + "Width": 135, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 2324, + "BoundsWidth": 540, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 2292, + "CropWidth": 636, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s evasion attempt exposes back", + "and side. Impact causes foe to drop his", + "guard and stumble to the side.", + "\u002B7H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Foe\u0027s evasion attempt exposes back", + "and side. Impact causes foe to drop his", + "guard and stumble to the side.", + "\u002B7H \u2013 \u2211\u220F" + ], + "RawCellText": "Foe\u0027s evasion attempt exposes back\nand side. Impact causes foe to drop his\nguard and stumble to the side.\n\u002B7H \u2013 \u2211\u220F", + "DescriptionText": "Foe\u0027s evasion attempt exposes back and side. Impact causes foe to drop his guard and stumble to the side.", + "RawAffixText": "\u002B7H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 634, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 2536, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 2504, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Blow to back flings foe to knees. He", + "drops his weapon. He stands but his", + "guard is down as he rearms himself.", + "\u002B12H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Blow to back flings foe to knees. He", + "drops his weapon. He stands but his", + "guard is down as he rearms himself.", + "\u002B12H \u2013 \u2211\u220F" + ], + "RawCellText": "Blow to back flings foe to knees. He\ndrops his weapon. He stands but his\nguard is down as he rearms himself.\n\u002B12H \u2013 \u2211\u220F", + "DescriptionText": "Blow to back flings foe to knees. He drops his weapon. He stands but his guard is down as he rearms himself.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 634, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 2536, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 2504, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "A piece of solid equipment is jammed", + "into foe\u0027s chest. The pain is sharp. It", + "leaves a permanent bruise.", + "2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "A piece of solid equipment is jammed", + "into foe\u0027s chest. The pain is sharp. It", + "leaves a permanent bruise.", + "2\u2211 \u2013 \u220F" + ], + "RawCellText": "A piece of solid equipment is jammed\ninto foe\u0027s chest. The pain is sharp. It\nleaves a permanent bruise.\n2\u2211 \u2013 \u220F", + "DescriptionText": "A piece of solid equipment is jammed into foe\u0027s chest. The pain is sharp. It leaves a permanent bruise.", + "RawAffixText": "2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 634, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 2536, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 2504, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Foe is knocked down. He lands on his", + "equipment, and drops his weapon. He", + "cannot get up for 2 rounds.", + "\u002B15H \u2013 (\u002B5)" + ], + "BaseLines": [ + "Foe is knocked down. He lands on his", + "equipment, and drops his weapon. He", + "cannot get up for 2 rounds.", + "\u002B15H \u2013 (\u002B5)" + ], + "RawCellText": "Foe is knocked down. He lands on his\nequipment, and drops his weapon. He\ncannot get up for 2 rounds.\n\u002B15H \u2013 (\u002B5)", + "DescriptionText": "Foe is knocked down. He lands on his equipment, and drops his weapon. He cannot get up for 2 rounds.", + "RawAffixText": "\u002B15H \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 634, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 2536, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 2504, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Strike impacts along thigh. Leg is", + "twisted and muscles pulled. Foe jams a", + "finger during the struggle.", + "\u002B15H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Strike impacts along thigh. Leg is", + "twisted and muscles pulled. Foe jams a", + "finger during the struggle.", + "\u002B15H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Strike impacts along thigh. Leg is\ntwisted and muscles pulled. Foe jams a\nfinger during the struggle.\n\u002B15H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Strike impacts along thigh. Leg is twisted and muscles pulled. Foe jams a finger during the struggle.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 634, + "Width": 137, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 2536, + "BoundsWidth": 548, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 2504, + "CropWidth": 644, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Modest strike provides some excellent", + "openings. If foe has a shield, it is out", + "of position for 1 round.", + "\u002B10H \u2013 2\u2211" + ], + "BaseLines": [ + "Modest strike provides some excellent", + "openings. If foe has a shield, it is out", + "of position for 1 round.", + "\u002B10H \u2013 2\u2211" + ], + "RawCellText": "Modest strike provides some excellent\nopenings. If foe has a shield, it is out\nof position for 1 round.\n\u002B10H \u2013 2\u2211", + "DescriptionText": "Modest strike provides some excellent openings. If foe has a shield, it is out of position for 1 round.", + "RawAffixText": "\u002B10H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 689, + "Width": 136, + "Height": 56 + }, + "SourceImagePath": "impact/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 2756, + "BoundsWidth": 544, + "BoundsHeight": 224, + "CropLeft": 348, + "CropTop": 2724, + "CropWidth": 640, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Solid strike to shoulder numbs foe\u0027s", + "senses and bruises muscles. Foe\u0027s", + "sense of direction is off.", + "\u002B20H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Solid strike to shoulder numbs foe\u0027s", + "senses and bruises muscles. Foe\u0027s", + "sense of direction is off.", + "\u002B20H \u2013 2\u2211 \u2013 \u220F" + ], + "RawCellText": "Solid strike to shoulder numbs foe\u0027s\nsenses and bruises muscles. Foe\u0027s\nsense of direction is off.\n\u002B20H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "Solid strike to shoulder numbs foe\u0027s senses and bruises muscles. Foe\u0027s sense of direction is off.", + "RawAffixText": "\u002B20H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 689, + "Width": 138, + "Height": 56 + }, + "SourceImagePath": "impact/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 2756, + "BoundsWidth": 552, + "BoundsHeight": 224, + "CropLeft": 928, + "CropTop": 2724, + "CropWidth": 648, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Violent strike to foe\u0027s midsection. He", + "falls, drops equipment, and is", + "vulnerable while standing up.", + "\u002B10H \u2013 2\u2211\u220F \u20132(\u002B5)" + ], + "BaseLines": [ + "Violent strike to foe\u0027s midsection. He", + "falls, drops equipment, and is", + "vulnerable while standing up.", + "\u002B10H \u2013 2\u2211\u220F \u20132(\u002B5)" + ], + "RawCellText": "Violent strike to foe\u0027s midsection. He\nfalls, drops equipment, and is\nvulnerable while standing up.\n\u002B10H \u2013 2\u2211\u220F \u20132(\u002B5)", + "DescriptionText": "Violent strike to foe\u0027s midsection. He falls, drops equipment, and is vulnerable while standing up.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u20132(\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 689, + "Width": 136, + "Height": 56 + }, + "SourceImagePath": "impact/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 2756, + "BoundsWidth": 544, + "BoundsHeight": 224, + "CropLeft": 1504, + "CropTop": 2724, + "CropWidth": 640, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Strike at foe\u0027s legs. Foe wisely leaps", + "back from the strike. Both shins and", + "knees are bruised his ankle is broken.", + "with leg armor: \u002B8H \u2013 2(-20)", + "w/o leg armor: \u002B10H \u2013 \u2211" + ], + "BaseLines": [ + "Strike at foe\u0027s legs. Foe wisely leaps", + "back from the strike. Both shins and", + "knees are bruised his ankle is broken." + ], + "RawCellText": "Strike at foe\u0027s legs. Foe wisely leaps\nback from the strike. Both shins and\nknees are bruised his ankle is broken.", + "DescriptionText": "Strike at foe\u0027s legs. Foe wisely leaps back from the strike. Both shins and knees are bruised his ankle is broken.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B8H \u2013 2(-20)", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B10H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 689, + "Width": 137, + "Height": 56 + }, + "SourceImagePath": "impact/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 2756, + "BoundsWidth": 548, + "BoundsHeight": 224, + "CropLeft": 2080, + "CropTop": 2724, + "CropWidth": 644, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Strike lands in center of foe\u0027s chest.", + "Foe is knocked down. Chest armor is", + "destroyed. Ribs are broken.", + "with chest armor: \u002B20H \u2013 5\u2211 \u2013 (-10)", + "w/o chest armor: \u002B15H \u2013 6\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Strike lands in center of foe\u0027s chest.", + "Foe is knocked down. Chest armor is", + "destroyed. Ribs are broken." + ], + "RawCellText": "Strike lands in center of foe\u0027s chest.\nFoe is knocked down. Chest armor is\ndestroyed. Ribs are broken.", + "DescriptionText": "Strike lands in center of foe\u0027s chest. Foe is knocked down. Chest armor is destroyed. Ribs are broken.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: \u002B20H \u2013 5\u2211 \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B20H \u2013 5\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: \u002B15H \u2013 6\u2211 \u2013 (-30)", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 6\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 689, + "Width": 136, + "Height": 56 + }, + "SourceImagePath": "impact/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 2756, + "BoundsWidth": 544, + "BoundsHeight": 224, + "CropLeft": 2656, + "CropTop": 2724, + "CropWidth": 640, + "CropHeight": 288, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Strke lands hard against foe\u0027s shield", + "side. He almost loses his footing. Foe", + "will fall against any nearby object.", + "with shield: \u002B6H \u2013 \u2211", + "w/o shield: \u002B15H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Strke lands hard against foe\u0027s shield", + "side. He almost loses his footing. Foe", + "will fall against any nearby object." + ], + "RawCellText": "Strke lands hard against foe\u0027s shield\nside. He almost loses his footing. Foe\nwill fall against any nearby object.", + "DescriptionText": "Strke lands hard against foe\u0027s shield side. He almost loses his footing. Foe will fall against any nearby object.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B6H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B15H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 751, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 3004, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 348, + "CropTop": 2972, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Your irresistible blow sends foe onto", + "his back. He drops his weapon. Foe", + "has a variety of bruises.", + "with chest armor: \u002B12H \u2013 3\u03C0", + "w/o chest armor: \u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)" + ], + "BaseLines": [ + "Your irresistible blow sends foe onto", + "his back. He drops his weapon. Foe", + "has a variety of bruises." + ], + "RawCellText": "Your irresistible blow sends foe onto\nhis back. He drops his weapon. Foe\nhas a variety of bruises.", + "DescriptionText": "Your irresistible blow sends foe onto his back. He drops his weapon. Foe has a variety of bruises.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: \u002B12H \u2013 3\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B12H \u2013 3\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: \u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 751, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 3004, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 928, + "CropTop": 2972, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Sweep foe onto his back. Foe must roll", + "over to get up. Leg armor will slow him", + "down. Minor fracture on lower leg.", + "with leg armor: \u002B5H \u2013 \u2211 \u2013 2(-60)", + "w/o leg armor: \u002B15H \u2013 \u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Sweep foe onto his back. Foe must roll", + "over to get up. Leg armor will slow him", + "down. Minor fracture on lower leg." + ], + "RawCellText": "Sweep foe onto his back. Foe must roll\nover to get up. Leg armor will slow him\ndown. Minor fracture on lower leg.", + "DescriptionText": "Sweep foe onto his back. Foe must roll over to get up. Leg armor will slow him down. Minor fracture on lower leg.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B5H \u2013 \u2211 \u2013 2(-60)", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 2(-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B15H \u2013 \u2211 \u2013 (-25)", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 751, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 3004, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1504, + "CropTop": 2972, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Fold up foe\u0027s weapon arm and snap it", + "against his body like a twig. His arm is", + "useless. Boy that must hurt!", + "\u002B10H - \u2211" + ], + "BaseLines": [ + "Fold up foe\u0027s weapon arm and snap it", + "against his body like a twig. His arm is", + "useless. Boy that must hurt!", + "\u002B10H - \u2211" + ], + "RawCellText": "Fold up foe\u0027s weapon arm and snap it\nagainst his body like a twig. His arm is\nuseless. Boy that must hurt!\n\u002B10H - \u2211", + "DescriptionText": "Fold up foe\u0027s weapon arm and snap it against his body like a twig. His arm is useless. Boy that must hurt!", + "RawAffixText": "\u002B10H - \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 751, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 3004, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2080, + "CropTop": 2972, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Strike crashes into foe\u0027s side, breaking", + "his shoulder and collar bone. One arm", + "is useless; the other isn\u0027t much better.", + "\u002B25H" + ], + "BaseLines": [ + "Strike crashes into foe\u0027s side, breaking", + "his shoulder and collar bone. One arm", + "is useless; the other isn\u0027t much better.", + "\u002B25H" + ], + "RawCellText": "Strike crashes into foe\u0027s side, breaking\nhis shoulder and collar bone. One arm\nis useless; the other isn\u0027t much better.\n\u002B25H", + "DescriptionText": "Strike crashes into foe\u0027s side, breaking his shoulder and collar bone. One arm is useless; the other isn\u0027t much better.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 751, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 3004, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 2656, + "CropTop": 2972, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Solid shot to foe\u0027s chest drives home a", + "deep bruise. The wound is unforgiving.", + "Ribs are cracked and cartilage is torn.", + "\u002B10H \u2013 (-25)" + ], + "BaseLines": [ + "Solid shot to foe\u0027s chest drives home a", + "deep bruise. The wound is unforgiving.", + "Ribs are cracked and cartilage is torn.", + "\u002B10H \u2013 (-25)" + ], + "RawCellText": "Solid shot to foe\u0027s chest drives home a\ndeep bruise. The wound is unforgiving.\nRibs are cracked and cartilage is torn.\n\u002B10H \u2013 (-25)", + "DescriptionText": "Solid shot to foe\u0027s chest drives home a deep bruise. The wound is unforgiving. Ribs are cracked and cartilage is torn.", + "RawAffixText": "\u002B10H \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 814, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 3256, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 348, + "CropTop": 3224, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Brutal strike lands between foe\u0027s", + "shoulder blades. Tendons and muscles", + "sprain. Little is not painful for foe.", + "\u002B10H \u2013 2\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Brutal strike lands between foe\u0027s", + "shoulder blades. Tendons and muscles", + "sprain. Little is not painful for foe.", + "\u002B10H \u2013 2\u2211 \u2013 (-25)" + ], + "RawCellText": "Brutal strike lands between foe\u0027s\nshoulder blades. Tendons and muscles\nsprain. Little is not painful for foe.\n\u002B10H \u2013 2\u2211 \u2013 (-25)", + "DescriptionText": "Brutal strike lands between foe\u0027s shoulder blades. Tendons and muscles sprain. Little is not painful for foe.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 814, + "Width": 138, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 3256, + "BoundsWidth": 552, + "BoundsHeight": 188, + "CropLeft": 928, + "CropTop": 3224, + "CropWidth": 648, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Strike looks harmless. However, foe\u0027s", + "collarbone is broken. He is furious with", + "his fortune. The pain is real.", + "\u002B15H \u2013 \u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Strike looks harmless. However, foe\u0027s", + "collarbone is broken. He is furious with", + "his fortune. The pain is real.", + "\u002B15H \u2013 \u2211 \u2013 (-25)" + ], + "RawCellText": "Strike looks harmless. However, foe\u0027s\ncollarbone is broken. He is furious with\nhis fortune. The pain is real.\n\u002B15H \u2013 \u2211 \u2013 (-25)", + "DescriptionText": "Strike looks harmless. However, foe\u0027s collarbone is broken. He is furious with his fortune. The pain is real.", + "RawAffixText": "\u002B15H \u2013 \u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 814, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 3256, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 1504, + "CropTop": 3224, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Impact to face and chest knocks out", + "teeth and breaks ribs. Foe is dazed and", + "stands immobile for 3 rounds.", + "\u002B20H" + ], + "BaseLines": [ + "Impact to face and chest knocks out", + "teeth and breaks ribs. Foe is dazed and", + "stands immobile for 3 rounds.", + "\u002B20H" + ], + "RawCellText": "Impact to face and chest knocks out\nteeth and breaks ribs. Foe is dazed and\nstands immobile for 3 rounds.\n\u002B20H", + "DescriptionText": "Impact to face and chest knocks out teeth and breaks ribs. Foe is dazed and stands immobile for 3 rounds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 814, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 3256, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2080, + "CropTop": 3224, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Violent onslaught ruptures organs and", + "causes massive internal bleeding. Foe", + "will die in 6 inactive rounds.", + "\u002B30H" + ], + "BaseLines": [ + "Violent onslaught ruptures organs and", + "causes massive internal bleeding. Foe", + "will die in 6 inactive rounds.", + "\u002B30H" + ], + "RawCellText": "Violent onslaught ruptures organs and\ncauses massive internal bleeding. Foe\nwill die in 6 inactive rounds.\n\u002B30H", + "DescriptionText": "Violent onslaught ruptures organs and causes massive internal bleeding. Foe will die in 6 inactive rounds.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 814, + "Width": 136, + "Height": 47 + }, + "SourceImagePath": "impact/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 3256, + "BoundsWidth": 544, + "BoundsHeight": 188, + "CropLeft": 2656, + "CropTop": 3224, + "CropWidth": 640, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Assault to legs. Foe\u0027s balance is stolen.", + "He falls to the ground. Foe\u0027s shin and", + "knee are bashed against the ground.", + "with leg armor: \u002B8H \u2013 2\u2211", + "w/o leg armor: \u002B10H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Assault to legs. Foe\u0027s balance is stolen.", + "He falls to the ground. Foe\u0027s shin and", + "knee are bashed against the ground." + ], + "RawCellText": "Assault to legs. Foe\u0027s balance is stolen.\nHe falls to the ground. Foe\u0027s shin and\nknee are bashed against the ground.", + "DescriptionText": "Assault to legs. Foe\u0027s balance is stolen. He falls to the ground. Foe\u0027s shin and knee are bashed against the ground.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B8H \u2013 2\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B10H \u2013 3\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 868, + "Width": 137, + "Height": 67 + }, + "SourceImagePath": "impact/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 3472, + "BoundsWidth": 548, + "BoundsHeight": 268, + "CropLeft": 348, + "CropTop": 3440, + "CropWidth": 644, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Strike flings its strength into foe\u0027s legs.", + "Muscles are bruised and tendons are", + "torn. Foe remains standing. One of", + "foe\u0027s greaves comes off.", + "with leg armor: \u002B20H \u2013 3\u2211 \u2013 (-50)", + "w/o leg armor: \u002B20H \u2013 \u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Strike flings its strength into foe\u0027s legs.", + "Muscles are bruised and tendons are", + "torn. Foe remains standing. One of", + "foe\u0027s greaves comes off." + ], + "RawCellText": "Strike flings its strength into foe\u0027s legs.\nMuscles are bruised and tendons are\ntorn. Foe remains standing. One of\nfoe\u0027s greaves comes off.", + "DescriptionText": "Strike flings its strength into foe\u0027s legs. Muscles are bruised and tendons are torn. Foe remains standing. One of foe\u0027s greaves comes off.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B20H \u2013 3\u2211 \u2013 (-50)", + "DescriptionText": "", + "RawAffixText": "\u002B20H \u2013 3\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B20H \u2013 \u2211\u220F \u2013 (-20)", + "DescriptionText": "", + "RawAffixText": "\u002B20H \u2013 \u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 868, + "Width": 136, + "Height": 67 + }, + "SourceImagePath": "impact/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 3472, + "BoundsWidth": 544, + "BoundsHeight": 268, + "CropLeft": 928, + "CropTop": 3440, + "CropWidth": 640, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Blow fractures foe\u0027s thigh. Foe does", + "not fall down, but he cannot walk until", + "the leg has a splint. This is a good", + "opportunity to practice your first aid.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (-60)" + ], + "BaseLines": [ + "Blow fractures foe\u0027s thigh. Foe does", + "not fall down, but he cannot walk until", + "the leg has a splint. This is a good", + "opportunity to practice your first aid.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (-60)" + ], + "RawCellText": "Blow fractures foe\u0027s thigh. Foe does\nnot fall down, but he cannot walk until\nthe leg has a splint. This is a good\nopportunity to practice your first aid.\n\u002B20H \u2013 2\u2211\u220F \u2013 (-60)", + "DescriptionText": "Blow fractures foe\u0027s thigh. Foe does not fall down, but he cannot walk until the leg has a splint. This is a good opportunity to practice your first aid.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 868, + "Width": 136, + "Height": 67 + }, + "SourceImagePath": "impact/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 3472, + "BoundsWidth": 544, + "BoundsHeight": 268, + "CropLeft": 1504, + "CropTop": 3440, + "CropWidth": 640, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Onslaught to foe\u0027s midsection. Organs", + "are damaged and foe throws up blood.", + "Foe\u0027s abdomen is seriously damaged.", + "He falls and should not be moved.", + "with abdominal armor: 12\u2211", + "w/o abdominal armor: dies in 6 rounds" + ], + "BaseLines": [ + "Onslaught to foe\u0027s midsection. Organs", + "are damaged and foe throws up blood.", + "Foe\u0027s abdomen is seriously damaged.", + "He falls and should not be moved." + ], + "RawCellText": "Onslaught to foe\u0027s midsection. Organs\nare damaged and foe throws up blood.\nFoe\u0027s abdomen is seriously damaged.\nHe falls and should not be moved.", + "DescriptionText": "Onslaught to foe\u0027s midsection. Organs are damaged and foe throws up blood. Foe\u0027s abdomen is seriously damaged. He falls and should not be moved.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdominal_armor", + "ConditionText": "with abdominal armor", + "RawText": "with abdominal armor: 12\u2211", + "DescriptionText": "", + "RawAffixText": "12\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_abdominal_armor", + "ConditionText": "w/o abdominal armor", + "RawText": "w/o abdominal armor: dies in 6 rounds", + "DescriptionText": "dies in 6 rounds", + "RawAffixText": null, + "Effects": [], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 868, + "Width": 137, + "Height": 67 + }, + "SourceImagePath": "impact/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 3472, + "BoundsWidth": 548, + "BoundsHeight": 268, + "CropLeft": 2080, + "CropTop": 3440, + "CropWidth": 644, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Foe is thrown down. Two ribs protrude", + "from his chest. Organs are destroyed.", + "Foe\u0027s eyes glaze when death comes in", + "3 rnds.", + "\u002B50H" + ], + "BaseLines": [ + "Foe is thrown down. Two ribs protrude", + "from his chest. Organs are destroyed.", + "Foe\u0027s eyes glaze when death comes in", + "3 rnds.", + "\u002B50H" + ], + "RawCellText": "Foe is thrown down. Two ribs protrude\nfrom his chest. Organs are destroyed.\nFoe\u0027s eyes glaze when death comes in\n3 rnds.\n\u002B50H", + "DescriptionText": "Foe is thrown down. Two ribs protrude from his chest. Organs are destroyed. Foe\u0027s eyes glaze when death comes in 3 rnds.", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 868, + "Width": 136, + "Height": 67 + }, + "SourceImagePath": "impact/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 3472, + "BoundsWidth": 544, + "BoundsHeight": 268, + "CropLeft": 2656, + "CropTop": 3440, + "CropWidth": 640, + "CropHeight": 332, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s head. If he has a helmet,", + "it is unseated and covers foe\u0027s eyes. If", + "no helmet, foe is knocked out.", + "\u002B20H \u2013 3\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Blow to foe\u0027s head. If he has a helmet,", + "it is unseated and covers foe\u0027s eyes. If", + "no helmet, foe is knocked out.", + "\u002B20H \u2013 3\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Blow to foe\u0027s head. If he has a helmet,\nit is unseated and covers foe\u0027s eyes. If\nno helmet, foe is knocked out.\n\u002B20H \u2013 3\u2211\u220F \u2013 (-50)", + "DescriptionText": "Blow to foe\u0027s head. If he has a helmet, it is unseated and covers foe\u0027s eyes. If no helmet, foe is knocked out.", + "RawAffixText": "\u002B20H \u2013 3\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 941, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 3764, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 348, + "CropTop": 3732, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Strike hammers side of head. With", + "helmet, foe is in coma for 2 weeks. If", + "no helm, foe diesin 1-10 rnds.", + "\u002B25H" + ], + "BaseLines": [ + "Strike hammers side of head. With", + "helmet, foe is in coma for 2 weeks. If", + "no helm, foe diesin 1-10 rnds.", + "\u002B25H" + ], + "RawCellText": "Strike hammers side of head. With\nhelmet, foe is in coma for 2 weeks. If\nno helm, foe diesin 1-10 rnds.\n\u002B25H", + "DescriptionText": "Strike hammers side of head. With helmet, foe is in coma for 2 weeks. If no helm, foe diesin 1-10 rnds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 941, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 3764, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 928, + "CropTop": 3732, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Force of attack breaks foe\u0027s knee and", + "sends him down. He can\u0027t get up", + "unassisted. He considers surrendering.", + "\u002B20H \u2013 9\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Force of attack breaks foe\u0027s knee and", + "sends him down. He can\u0027t get up", + "unassisted. He considers surrendering.", + "\u002B20H \u2013 9\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Force of attack breaks foe\u0027s knee and\nsends him down. He can\u0027t get up\nunassisted. He considers surrendering.\n\u002B20H \u2013 9\u2211\u220F \u2013 (-75)", + "DescriptionText": "Force of attack breaks foe\u0027s knee and sends him down. He can\u0027t get up unassisted. He considers surrendering.", + "RawAffixText": "\u002B20H \u2013 9\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 941, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 3764, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 1504, + "CropTop": 3732, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s face, jaw and neck shatter. He", + "stumbles back a few steps. He falls and", + "dies after 3 rounds of inactivity. Sad.", + "\u002B50H" + ], + "BaseLines": [ + "Foe\u0027s face, jaw and neck shatter. He", + "stumbles back a few steps. He falls and", + "dies after 3 rounds of inactivity. Sad.", + "\u002B50H" + ], + "RawCellText": "Foe\u0027s face, jaw and neck shatter. He\nstumbles back a few steps. He falls and\ndies after 3 rounds of inactivity. Sad.\n\u002B50H", + "DescriptionText": "Foe\u0027s face, jaw and neck shatter. He stumbles back a few steps. He falls and dies after 3 rounds of inactivity. Sad.", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 941, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 3764, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 2080, + "CropTop": 3732, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Foe\u0027s lower body is crushed. Massive", + "blood loss and shock will cause foe to", + "die after 6 rounds. He can still speak.", + "\u002B30H" + ], + "BaseLines": [ + "Foe\u0027s lower body is crushed. Massive", + "blood loss and shock will cause foe to", + "die after 6 rounds. He can still speak.", + "\u002B30H" + ], + "RawCellText": "Foe\u0027s lower body is crushed. Massive\nblood loss and shock will cause foe to\ndie after 6 rounds. He can still speak.\n\u002B30H", + "DescriptionText": "Foe\u0027s lower body is crushed. Massive blood loss and shock will cause foe to die after 6 rounds. He can still speak.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 941, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 3764, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 2656, + "CropTop": 3732, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Blow lands hardest against foe\u0027s hip.", + "The bone is fractured and foe falls", + "down. Foe sprains wrist in the fall.", + "When it rains, it pours.", + "\u002B20H - 3\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Blow lands hardest against foe\u0027s hip.", + "The bone is fractured and foe falls", + "down. Foe sprains wrist in the fall.", + "When it rains, it pours.", + "\u002B20H - 3\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Blow lands hardest against foe\u0027s hip.\nThe bone is fractured and foe falls\ndown. Foe sprains wrist in the fall.\nWhen it rains, it pours.\n\u002B20H - 3\u2211\u220F \u2013 (-50)", + "DescriptionText": "Blow lands hardest against foe\u0027s hip. The bone is fractured and foe falls down. Foe sprains wrist in the fall. When it rains, it pours.", + "RawAffixText": "\u002B20H - 3\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 1005, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 4020, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 348, + "CropTop": 3988, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "This sudden tempest breaks foe\u0027s", + "neck. He cannot breath. He drops and", + "dies after a futile 12 round struggle.", + "Close his eyes.", + "\u002B25H" + ], + "BaseLines": [ + "This sudden tempest breaks foe\u0027s", + "neck. He cannot breath. He drops and", + "dies after a futile 12 round struggle.", + "Close his eyes.", + "\u002B25H" + ], + "RawCellText": "This sudden tempest breaks foe\u0027s\nneck. He cannot breath. He drops and\ndies after a futile 12 round struggle.\nClose his eyes.\n\u002B25H", + "DescriptionText": "This sudden tempest breaks foe\u0027s neck. He cannot breath. He drops and dies after a futile 12 round struggle. Close his eyes.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 1005, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 4020, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 928, + "CropTop": 3988, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Savage impact ruptures internal organs", + "and breaks many bones. Foe falls and", + "dies..", + "\u002B50H" + ], + "BaseLines": [ + "Savage impact ruptures internal organs", + "and breaks many bones. Foe falls and", + "dies..", + "\u002B50H" + ], + "RawCellText": "Savage impact ruptures internal organs\nand breaks many bones. Foe falls and\ndies..\n\u002B50H", + "DescriptionText": "Savage impact ruptures internal organs and breaks many bones. Foe falls and dies..", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 1005, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 4020, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1504, + "CropTop": 3988, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Bash in foe\u0027s side. Bones are broken", + "by the concussion. One of them is", + "driven into a kidney. Foe goes into", + "shock, drops, and dies in 8 rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Bash in foe\u0027s side. Bones are broken", + "by the concussion. One of them is", + "driven into a kidney. Foe goes into", + "shock, drops, and dies in 8 rounds.", + "\u002B25H" + ], + "RawCellText": "Bash in foe\u0027s side. Bones are broken\nby the concussion. One of them is\ndriven into a kidney. Foe goes into\nshock, drops, and dies in 8 rounds.\n\u002B25H", + "DescriptionText": "Bash in foe\u0027s side. Bones are broken by the concussion. One of them is driven into a kidney. Foe goes into shock, drops, and dies in 8 rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 1005, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 4020, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 2080, + "CropTop": 3988, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Strike brings foe down. His spine is", + "broken with liitle effort. Foe is still.", + "Blood pours from his mouth heralding", + "his death. He dies in 3 rounds.", + "(\u002B20)" + ], + "BaseLines": [ + "Strike brings foe down. His spine is", + "broken with liitle effort. Foe is still.", + "Blood pours from his mouth heralding", + "his death. He dies in 3 rounds.", + "(\u002B20)" + ], + "RawCellText": "Strike brings foe down. His spine is\nbroken with liitle effort. Foe is still.\nBlood pours from his mouth heralding\nhis death. He dies in 3 rounds.\n(\u002B20)", + "DescriptionText": "Strike brings foe down. His spine is broken with liitle effort. Foe is still. Blood pours from his mouth heralding his death. He dies in 3 rounds.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 1005, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 4020, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2656, + "CropTop": 3988, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Foe slams to ground from brutal strike.", + "His rib cage is fractured. With armor,", + "he is only knocked out; if no armor, foe", + "dies in 3 rnds from internal bleeding.", + "\u002B25H" + ], + "BaseLines": [ + "Foe slams to ground from brutal strike.", + "His rib cage is fractured. With armor,", + "he is only knocked out; if no armor, foe", + "dies in 3 rnds from internal bleeding.", + "\u002B25H" + ], + "RawCellText": "Foe slams to ground from brutal strike.\nHis rib cage is fractured. With armor,\nhe is only knocked out; if no armor, foe\ndies in 3 rnds from internal bleeding.\n\u002B25H", + "DescriptionText": "Foe slams to ground from brutal strike. His rib cage is fractured. With armor, he is only knocked out; if no armor, foe dies in 3 rnds from internal bleeding.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 99, + "Top": 1068, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 396, + "BoundsTop": 4272, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 348, + "CropTop": 4240, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Bash in foe\u0027s side and a shoulder. The", + "shoulder blade violently contacts foe\u0027s", + "spine. Foe is paralyzed from the", + "shoulder down. Foe is unhappy.", + "\u002B30H" + ], + "BaseLines": [ + "Bash in foe\u0027s side and a shoulder. The", + "shoulder blade violently contacts foe\u0027s", + "spine. Foe is paralyzed from the", + "shoulder down. Foe is unhappy.", + "\u002B30H" + ], + "RawCellText": "Bash in foe\u0027s side and a shoulder. The\nshoulder blade violently contacts foe\u0027s\nspine. Foe is paralyzed from the\nshoulder down. Foe is unhappy.\n\u002B30H", + "DescriptionText": "Bash in foe\u0027s side and a shoulder. The shoulder blade violently contacts foe\u0027s spine. Foe is paralyzed from the shoulder down. Foe is unhappy.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 244, + "Top": 1068, + "Width": 136, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 976, + "BoundsTop": 4272, + "BoundsWidth": 544, + "BoundsHeight": 228, + "CropLeft": 928, + "CropTop": 4240, + "CropWidth": 640, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s head is in the middle of this", + "tumult. Foe dies instantly. His skull is", + "crushed and a few other bones are also", + "broken in his fall.", + "(\u002B10)" + ], + "BaseLines": [ + "Foe\u0027s head is in the middle of this", + "tumult. Foe dies instantly. His skull is", + "crushed and a few other bones are also", + "broken in his fall.", + "(\u002B10)" + ], + "RawCellText": "Foe\u0027s head is in the middle of this\ntumult. Foe dies instantly. His skull is\ncrushed and a few other bones are also\nbroken in his fall.\n(\u002B10)", + "DescriptionText": "Foe\u0027s head is in the middle of this tumult. Foe dies instantly. His skull is crushed and a few other bones are also broken in his fall.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 388, + "Top": 1068, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1552, + "BoundsTop": 4272, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 1504, + "CropTop": 4240, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Crush foe\u0027s lungs and heart with an", + "irresistible onslaught. The impact", + "slams foe to the ground and he dies a", + "moment later.", + "(\u002B25)" + ], + "BaseLines": [ + "Crush foe\u0027s lungs and heart with an", + "irresistible onslaught. The impact", + "slams foe to the ground and he dies a", + "moment later.", + "(\u002B25)" + ], + "RawCellText": "Crush foe\u0027s lungs and heart with an\nirresistible onslaught. The impact\nslams foe to the ground and he dies a\nmoment later.\n(\u002B25)", + "DescriptionText": "Crush foe\u0027s lungs and heart with an irresistible onslaught. The impact slams foe to the ground and he dies a moment later.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 532, + "Top": 1068, + "Width": 137, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2128, + "BoundsTop": 4272, + "BoundsWidth": 548, + "BoundsHeight": 228, + "CropLeft": 2080, + "CropTop": 4240, + "CropWidth": 644, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Blast breaks close to thirty bones in", + "foe\u0027s skeleton. He is dead a moment", + "later. His body is difficult to gather up.", + "Very little of his equipment in intact.", + "\u2013" + ], + "BaseLines": [ + "Blast breaks close to thirty bones in", + "foe\u0027s skeleton. He is dead a moment", + "later. His body is difficult to gather up.", + "Very little of his equipment in intact.", + "\u2013" + ], + "RawCellText": "Blast breaks close to thirty bones in\nfoe\u0027s skeleton. He is dead a moment\nlater. His body is difficult to gather up.\nVery little of his equipment in intact.\n\u2013", + "DescriptionText": "Blast breaks close to thirty bones in foe\u0027s skeleton. He is dead a moment later. His body is difficult to gather up. Very little of his equipment in intact.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 676, + "Top": 1068, + "Width": 135, + "Height": 57 + }, + "SourceImagePath": "impact/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2704, + "BoundsTop": 4272, + "BoundsWidth": 540, + "BoundsHeight": 228, + "CropLeft": 2656, + "CropTop": 4240, + "CropWidth": 636, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/source.xml b/src/RolemasterDb.App/import-artifacts/critical/impact/source.xml new file mode 100644 index 0000000..f5eebaf --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/impact/source.xml @@ -0,0 +1,430 @@ + + + + + + + + + + + + + +Key: +ß +π + = must parry ß rounds; +ß + + = no parry for ß rounds; +ß + + = stunned for ß rounds; +ß + + = bleed ß hits per round; +(-ß) = foe has -ß penalty; +(+ß) = attacker gets +ß next round. +92 +A +B +C +D +E +6.4 IMPACT CRITICAL STRIKE TABLE +01-05 +Foe rolls with the blow.. +Rattle foe a little. Bruise his elbow. +Strike glances off foe. He presses on. +Strike lands without force. Foe is up. +How foe evaded that blow is a mystery. ++0H ++0H ++1H ++2H ++3H +06-10 +It looks solid, but foe is not hindered. +Bump foe in the chest. He loses a +garment decoration. +Foe turns to evade and gets hit in the +backside. Little damage is done. +Wild assault to shoulder fails to +connect with foe. +Foe is unbalanced and gives ground to +regain his footing. ++1H ++2H ++3H ++4H ++3H – 2(-15) +11-15 +With great effort foe evades the +damage. You have initiative. +Corrupt foe's sense of balance. He +stumbles and loses the initiative. +Firm strike causes foe to step back and +get his bearings. +Strike to chest is not hard but it is well +placed. Foe steps back 5 feet. +Foe staggers back and trips, making +things worse for him. ++2H ++4H ++3H – π ++4H – π ++6H – ∑ +16-20 +Spin foe sideways. He recovers +quickly. You have the initiative. +Foe's response is quick enough to +avoid serious damage. +Strong blow. Foe abandons any hope +of the initiative and falls back. +Foe starts stepping away from the +assault before it hits his legs. +Foe fails to avoid some of the attack +and almost falls down. ++3H ++2H – π ++4H – π ++6H – π ++9H – ∑ +21-35 +Your strike has some effect. Foe loses +his balance and cannot regain a good +stance. You have 2 rounds of initiative. +Strike seeks foe's head. He blocks with +his weapon and evades with shameless +grace. He keeps his guard up. +Foe is unbalanced and can only +manage some wild swings to protect +himself for the moment. +Blow almost sends foe down. He +strikes the ground with his weapon +while trying to regain his balance. +Foe reels from this deadly strike. He +avoids death but not damage. His side +is badly bruised. ++5H ++5H – π ++8H – π ++10H – π ++15H – ∑ +36-45 +Foe must give ground or fall. He steps +back 5 ft and goes low to avoid falling. +He loses 2 rnds of initiative. +Violent blow to shield side. Any shield +is destroyed. Foe's side is bruised. He +is still on his feet. +Pitiless blow to foe's lower leg. Foe is +desperate to defend himself while he +regains his balance. +Boom! Foe is hammered by an +effective strike to his back. He looks to +be recovering. Minor bruises. +Hammer foe in shoulder. He falls 10 +feet and spuins around. He stumbles +another 5 ft before regaining control. ++8H + +9H – π ++10H – ∑ ++12H – 2∑ ++15H –2∑ – 2(-15) +46-50 +A solid shot unnerves foe and knocks +him to the side. His recovery is slow. +You have 3 rounds of initiative. +Foe loses footing before being struck, +but still avoids most of assault. A piece +of equipment is knocked loose. +Foe's weapon arm is slammed into his +chest. Foe almost falls. He steps back +5 feet and regains some footing. +Foe is shaken and steps back 5 feet for +the next 2 rounds. If he cannot step +back he falls down. +Foe is lifted off the ground and thrown +back five feet. Amazingly he does not +fall. His guard is down. ++10H ++10H – ∑ ++12H – 2π – (+5) ++5H – 2π ++20H – ∑∏ +51-55 +Bash to foe's side damages equipment +unbalancing him. He stumbles about. +Smash foe to side. Foe still fights but +footing is unfirm and armor is loose. +Hard strike to side, armor does not +help. The bruise is deep and effective. +Batter foe. He fumbles his weapon +grip. He notices little else right now. +Foe tries to withstand blow, but goes +down. He takes 2 rnds to stand. ++10H – ∑ ++12H – ∑ ++15H – 2π +∑∏ – (+5) ++20H – 2(40) +56-60 +Foe's shield arm is roughed up. Foe +puts his guard up and steps back. It is +clear he is dazed. +Foe's response is ungraceful. The +strike slams his weapon arm into his +side and pins it for the moment. +Strong bash hits foe low. His legs +almost give with the pain. Foe recoils +5 feet away from your assault. +Concussion bruises skin and batters +ribs. Foe is numb, unable to feel the +damage. He thinks wound is mortal. +Impact scatters unattached equipment. +Shield, helmet, and any weapons go +flying. Foe then falls down. ++10H – ∑ ++10H – 2∑ ++12H – 2∑ +2∑∏ – (-10) ++20H – 2∑∏ +61-65 +Well placed. Strike slams into foe's +weapon arm. Foe holds onto his +weapon . +Blow crashes into foe's chest. If he has +chest armor, it is damaged. If not, he +has terrible bruises and cracked ribs. +Crashing blow to foe's shoulder sends +him over. He uses weapon arm to stay +standing and cannot defend himself. +Lay waste to foe's shield arm. Any +shield in use takes some of the +damage, but is destroyed by impact. +Your strike vandalizes foe's sense of +balance and he crashes to the ground. +His legs and pride are bruised. +with arm greaves: +8H – π +w/o arm greaves: +12H – ∑ +with chest armor: +12H – 2π +w/o chest armor: +10H – ∑∏ ++10H – ∑∏ – (+5) +with shield: +5H – ∑ – 3(-10) +w/o shield: +10H – 2∑ – ∏ ++20H – 3∑∏ +66 +Foe braced poorly for the impact. His +knee is pressed backwards damaging +muscles and tendons. +Fingers are entangled in the impact and +broken. Foe's shield hand is useless. +The swelling might go away in a day. +Blast breaks shield arm. He falls on his +weapon arm and breaks his wrist. Both +arms are useless. Talk about bad luck. +Snap foe's head back. Foe falls +unconscious onto ground breaking a +leg and hand. Without helm he dies . +Head strike. Foe's skull is crushed. Any +helmet worn is driven into the side of +foe's head. ++20H – π ++15H – ∑∏ +3∑ – (-90) + + +67-70 +Foe's evasion attempt exposes back +and side. Impact causes foe to drop his +guard and stumble to the side. +Blow to back flings foe to knees. He +drops his weapon. He stands but his +guard is down as he rearms himself. +A piece of solid equipment is jammed +into foe's chest. The pain is sharp. It +leaves a permanent bruise. +Foe is knocked down. He lands on his +equipment, and drops his weapon. He +cannot get up for 2 rounds. +Strike impacts along thigh. Leg is +twisted and muscles pulled. Foe jams a +finger during the struggle. ++7H – ∑∏ ++12H – ∑∏ +2∑ – ∏ ++15H – (+5) ++15H – ∑ – (-10) +71-75 +Modest strike provides some excellent +openings. If foe has a shield, it is out +of position for 1 round. +Solid strike to shoulder numbs foe's +senses and bruises muscles. Foe's +sense of direction is off. +Violent strike to foe's midsection. He +falls, drops equipment, and is +vulnerable while standing up. +Strike at foe's legs. Foe wisely leaps +back from the strike. Both shins and +knees are bruised his ankle is broken. +Strike lands in center of foe's chest. +Foe is knocked down. Chest armor is +destroyed. Ribs are broken. ++10H – 2∑ ++20H – 2∑ – ∏ ++10H – 2∑∏ –2(+5) +with leg armor: +8H – 2(-20) +w/o leg armor: +10H – ∑ +with chest armor: +20H – 5∑ – (-10) +w/o chest armor: +15H – 6∑ – (-30) +76-80 +Strke lands hard against foe's shield +side. He almost loses his footing. Foe +will fall against any nearby object. +Your irresistible blow sends foe onto +his back. He drops his weapon. Foe +has a variety of bruises. +Sweep foe onto his back. Foe must roll +over to get up. Leg armor will slow him +down. Minor fracture on lower leg. +Fold up foe's weapon arm and snap it +against his body like a twig. His arm is +useless. Boy that must hurt! +Strike crashes into foe's side, breaking +his shoulder and collar bone. One arm +is useless; the other isn't much better. +with shield: +6H – ∑ +w/o shield: +15H – 2∑ – ∏ +with chest armor: +12H – 3π +w/o chest armor: +10H – 2∑∏ – (+5) +with leg armor: +5H – ∑ – 2(-60) +w/o leg armor: +15H – ∑ – (-25) ++10H - ∑ ++25H +81-85 +Solid shot to foe's chest drives home a +deep bruise. The wound is unforgiving. +Ribs are cracked and cartilage is torn. +Brutal strike lands between foe's +shoulder blades. Tendons and muscles +sprain. Little is not painful for foe. +Strike looks harmless. However, foe's +collarbone is broken. He is furious with +his fortune. The pain is real. +Impact to face and chest knocks out +teeth and breaks ribs. Foe is dazed and +stands immobile for 3 rounds. +Violent onslaught ruptures organs and +causes massive internal bleeding. Foe +will die in 6 inactive rounds. ++10H – (-25) ++10H – 2∑ – (-25) ++15H – ∑ – (-25) ++20H ++30H +86-90 +Assault to legs. Foe's balance is stolen. +He falls to the ground. Foe's shin and +knee are bashed against the ground. +Strike flings its strength into foe's legs. +Muscles are bruised and tendons are +torn. Foe remains standing. One of +foe's greaves comes off. +Blow fractures foe's thigh. Foe does +not fall down, but he cannot walk until +the leg has a splint. This is a good +opportunity to practice your first aid. +Onslaught to foe's midsection. Organs +are damaged and foe throws up blood. +Foe's abdomen is seriously damaged. +He falls and should not be moved. +Foe is thrown down. Two ribs protrude +from his chest. Organs are destroyed. +Foe's eyes glaze when death comes in +3 rnds. +with leg armor: +8H – 2∑ +w/o leg armor: +10H – 3∑∏ +with leg armor: +20H – 3∑ – (-50) +w/o leg armor: +20H – ∑∏ – (-20) ++20H – 2∑∏ – (-60) +with abdominal armor: 12∑ +w/o abdominal armor: dies in 6 rounds ++50H +91-95 +Blow to foe's head. If he has a helmet, +it is unseated and covers foe's eyes. If +no helmet, foe is knocked out. +Strike hammers side of head. With +helmet, foe is in coma for 2 weeks. If +no helm, foe diesin 1-10 rnds. +Force of attack breaks foe's knee and +sends him down. He can't get up +unassisted. He considers surrendering. +Foe's face, jaw and neck shatter. He +stumbles back a few steps. He falls and +dies after 3 rounds of inactivity. Sad. +Foe's lower body is crushed. Massive +blood loss and shock will cause foe to +die after 6 rounds. He can still speak. + +20H – 3∑∏ – (-50) ++25H ++20H – 9∑∏ – (-75) ++50H ++30H +96-99 +Blow lands hardest against foe's hip. +The bone is fractured and foe falls +down. Foe sprains wrist in the fall. +When it rains, it pours. +This sudden tempest breaks foe's +neck. He cannot breath. He drops and +dies after a futile 12 round struggle. +Close his eyes. +Savage impact ruptures internal organs +and breaks many bones. Foe falls and +dies.. +Bash in foe's side. Bones are broken +by the concussion. One of them is +driven into a kidney. Foe goes into +shock, drops, and dies in 8 rounds. +Strike brings foe down. His spine is +broken with liitle effort. Foe is still. +Blood pours from his mouth heralding +his death. He dies in 3 rounds. ++20H - 3∑∏ – (-50) ++25H ++50H ++25H +(+20) +100 +Foe slams to ground from brutal strike. +His rib cage is fractured. With armor, +he is only knocked out; if no armor, foe +dies in 3 rnds from internal bleeding. +Bash in foe's side and a shoulder. The +shoulder blade violently contacts foe's +spine. Foe is paralyzed from the +shoulder down. Foe is unhappy. +Foe's head is in the middle of this +tumult. Foe dies instantly. His skull is +crushed and a few other bones are also +broken in his fall. +Crush foe's lungs and heart with an +irresistible onslaught. The impact +slams foe to the ground and he dies a +moment later. +Blast breaks close to thirty bones in +foe's skeleton. He is dead a moment +later. His body is difficult to gather up. +Very little of his equipment in intact. ++25H ++30H +(+10) +(+25) + +14.4 IMPACT CRITICAL STRIKE TABLE + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/impact/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/impact/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/impact/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__01-05.png new file mode 100644 index 0000000..e98e972 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__06-10.png new file mode 100644 index 0000000..aff8fc5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__100.png new file mode 100644 index 0000000..f8f4605 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__11-15.png new file mode 100644 index 0000000..edd551e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__16-20.png new file mode 100644 index 0000000..8100262 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__21-35.png new file mode 100644 index 0000000..5e69fe4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__36-45.png new file mode 100644 index 0000000..c820459 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__46-50.png new file mode 100644 index 0000000..8e13840 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__51-55.png new file mode 100644 index 0000000..8e23f5d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__56-60.png new file mode 100644 index 0000000..b982f38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__61-65.png new file mode 100644 index 0000000..c136891 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__66.png new file mode 100644 index 0000000..77a1e1a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__67-70.png new file mode 100644 index 0000000..4ca12ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__71-75.png new file mode 100644 index 0000000..885a8ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__76-80.png new file mode 100644 index 0000000..beea76f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__81-85.png new file mode 100644 index 0000000..8adcd65 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__86-90.png new file mode 100644 index 0000000..ae0bce4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__91-95.png new file mode 100644 index 0000000..9f40dd1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__96-99.png new file mode 100644 index 0000000..4faf5a2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__01-05.png new file mode 100644 index 0000000..00fc652 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__06-10.png new file mode 100644 index 0000000..c13115e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__100.png new file mode 100644 index 0000000..abd1d7d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__11-15.png new file mode 100644 index 0000000..bda5ab3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__16-20.png new file mode 100644 index 0000000..9543217 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__21-35.png new file mode 100644 index 0000000..45c337e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__36-45.png new file mode 100644 index 0000000..183eb74 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__46-50.png new file mode 100644 index 0000000..1907c98 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__51-55.png new file mode 100644 index 0000000..54afa49 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__56-60.png new file mode 100644 index 0000000..e081fd1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__61-65.png new file mode 100644 index 0000000..ffb4edc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__66.png new file mode 100644 index 0000000..8356f5d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__67-70.png new file mode 100644 index 0000000..555cc66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__71-75.png new file mode 100644 index 0000000..46e8ba8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__76-80.png new file mode 100644 index 0000000..e793d47 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__81-85.png new file mode 100644 index 0000000..e2e1854 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__86-90.png new file mode 100644 index 0000000..9d81359 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__91-95.png new file mode 100644 index 0000000..0242bb1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__96-99.png new file mode 100644 index 0000000..b8778f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__01-05.png new file mode 100644 index 0000000..d8d4d52 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__06-10.png new file mode 100644 index 0000000..27dd605 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__100.png new file mode 100644 index 0000000..9d9883c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__11-15.png new file mode 100644 index 0000000..7ab4a32 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__16-20.png new file mode 100644 index 0000000..cd4f2b4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__21-35.png new file mode 100644 index 0000000..5881723 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__36-45.png new file mode 100644 index 0000000..07fc840 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__46-50.png new file mode 100644 index 0000000..a3cce52 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__51-55.png new file mode 100644 index 0000000..612bb98 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__56-60.png new file mode 100644 index 0000000..51b8415 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__61-65.png new file mode 100644 index 0000000..c456b5a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__66.png new file mode 100644 index 0000000..bd7d86e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__67-70.png new file mode 100644 index 0000000..54436e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__71-75.png new file mode 100644 index 0000000..28ca708 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__76-80.png new file mode 100644 index 0000000..077b3de Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__81-85.png new file mode 100644 index 0000000..bf5b512 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__86-90.png new file mode 100644 index 0000000..6e5b5a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__91-95.png new file mode 100644 index 0000000..0969f72 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__96-99.png new file mode 100644 index 0000000..1f2db82 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__01-05.png new file mode 100644 index 0000000..b7b978a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__06-10.png new file mode 100644 index 0000000..5908b62 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__100.png new file mode 100644 index 0000000..f905ee3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__11-15.png new file mode 100644 index 0000000..83ab244 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__16-20.png new file mode 100644 index 0000000..3cfbb03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__21-35.png new file mode 100644 index 0000000..8693837 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__36-45.png new file mode 100644 index 0000000..6b86b8b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__46-50.png new file mode 100644 index 0000000..24bfe38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__51-55.png new file mode 100644 index 0000000..eb61410 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__56-60.png new file mode 100644 index 0000000..7229b18 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__61-65.png new file mode 100644 index 0000000..db8feef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__66.png new file mode 100644 index 0000000..c12cc66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__67-70.png new file mode 100644 index 0000000..b18eb3d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__71-75.png new file mode 100644 index 0000000..2c9d39f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__76-80.png new file mode 100644 index 0000000..a0dcee1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__81-85.png new file mode 100644 index 0000000..046529c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__86-90.png new file mode 100644 index 0000000..26e68c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__91-95.png new file mode 100644 index 0000000..02f99a2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__96-99.png new file mode 100644 index 0000000..675f6aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__01-05.png new file mode 100644 index 0000000..b4f25f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__06-10.png new file mode 100644 index 0000000..6996d73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__100.png new file mode 100644 index 0000000..ee1b064 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__11-15.png new file mode 100644 index 0000000..22cbfd8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__16-20.png new file mode 100644 index 0000000..2d21222 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__21-35.png new file mode 100644 index 0000000..3669069 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__36-45.png new file mode 100644 index 0000000..d9a74c7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__46-50.png new file mode 100644 index 0000000..a518157 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__51-55.png new file mode 100644 index 0000000..28bdf09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__56-60.png new file mode 100644 index 0000000..7191a1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__61-65.png new file mode 100644 index 0000000..8f6ed20 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__66.png new file mode 100644 index 0000000..4756622 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__67-70.png new file mode 100644 index 0000000..8d3cfbb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__71-75.png new file mode 100644 index 0000000..2655d5f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__76-80.png new file mode 100644 index 0000000..eb9b38e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__81-85.png new file mode 100644 index 0000000..9812299 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__86-90.png new file mode 100644 index 0000000..ae7ff52 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__91-95.png new file mode 100644 index 0000000..d664176 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__96-99.png new file mode 100644 index 0000000..39ba034 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/krush/fragments.json new file mode 100644 index 0000000..9c3cc72 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/krush/fragments.json @@ -0,0 +1,3402 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 51, + "Width": 15, + "Height": 13, + "Text": "96", + "Confidence": null, + "CenterX": 58.5 + }, + { + "PageNumber": 1, + "Top": 114, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 108, + "Left": 81, + "Width": 73, + "Height": 9, + "Text": "Not very impressive.", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 108, + "Left": 216, + "Width": 67, + "Height": 9, + "Text": "Your grip fails you.", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 108, + "Left": 367, + "Width": 61, + "Height": 9, + "Text": "Practice this one.", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 108, + "Left": 519, + "Width": 95, + "Height": 9, + "Text": "Strike blunted by clothing.", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 108, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "Destroy one of foe\u0027s silly decorations.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 347, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 648, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 127, + "Left": 803, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 81, + "Width": 114, + "Height": 9, + "Text": "The strike lost something in the", + "Confidence": null, + "CenterX": 138 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 81, + "Width": 42, + "Height": 9, + "Text": "translation.", + "Confidence": null, + "CenterX": 102 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 216, + "Width": 20, + "Height": 9, + "Text": "Thud.", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 367, + "Width": 134, + "Height": 9, + "Text": "You should have swung much harder.", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 519, + "Width": 132, + "Height": 9, + "Text": "Foe steps right, then left, and almost", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 519, + "Width": 63, + "Height": 9, + "Text": "evades you blow.", + "Confidence": null, + "CenterX": 550.5 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 670, + "Width": 121, + "Height": 9, + "Text": "Blow is forceful, not hard. Foe is", + "Confidence": null, + "CenterX": 730.5 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 670, + "Width": 112, + "Height": 9, + "Text": "unbalanced. You have initiative.", + "Confidence": null, + "CenterX": 726 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 347, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 648, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 803, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 201, + "Left": 35, + "Width": 37, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 53.5 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 81, + "Width": 109, + "Height": 9, + "Text": "Foe evades your much of your", + "Confidence": null, + "CenterX": 135.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 81, + "Width": 92, + "Height": 9, + "Text": "swing. You have initiative.", + "Confidence": null, + "CenterX": 127 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 216, + "Width": 129, + "Height": 9, + "Text": "Foe evades frantically. You have the", + "Confidence": null, + "CenterX": 280.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 216, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 367, + "Width": 135, + "Height": 9, + "Text": "Really solid strike to foe\u0027s shield side.", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 367, + "Width": 69, + "Height": 9, + "Text": "You have initiative.", + "Confidence": null, + "CenterX": 401.5 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 519, + "Width": 137, + "Height": 9, + "Text": "Shot close to foe\u0027s throat. He seeks to", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 519, + "Width": 81, + "Height": 9, + "Text": "avoid your next strike.", + "Confidence": null, + "CenterX": 559.5 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "Foe raises an arm to block your strike.", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 670, + "Width": 120, + "Height": 9, + "Text": "He does himself harm. You profit.", + "Confidence": null, + "CenterX": 730 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 347, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 613, + "Width": 48, + "Height": 9, + "Text": "\u002B5H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 637 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 761, + "Width": 56, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 789 + }, + { + "PageNumber": 1, + "Top": 248, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 81, + "Width": 122, + "Height": 9, + "Text": "Foe steps back 5 feet. He is out of", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 81, + "Width": 31, + "Height": 9, + "Text": "position.", + "Confidence": null, + "CenterX": 96.5 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 216, + "Width": 109, + "Height": 9, + "Text": "Foe is concerned with his own", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 216, + "Width": 122, + "Height": 9, + "Text": "preservation. He steps back 5 feet.", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 367, + "Width": 141, + "Height": 9, + "Text": "Blow to foe\u0027s waist. He spins sideways.", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 519, + "Width": 132, + "Height": 9, + "Text": "Glancing blow takes skin with it. You", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 519, + "Width": 93, + "Height": 9, + "Text": "have initiative next round.", + "Confidence": null, + "CenterX": 565.5 + }, + { + "PageNumber": 1, + "Top": 235, + "Left": 670, + "Width": 136, + "Height": 9, + "Text": "Strong blow breaks foe\u0027s guard. He is", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 670, + "Width": 43, + "Height": 9, + "Text": "unbalanced.", + "Confidence": null, + "CenterX": 691.5 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 179, + "Width": 30, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 312, + "Width": 48, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 462, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 625, + "Width": 37, + "Height": 9, + "Text": "\u002B5H \u2013 (-5)", + "Confidence": null, + "CenterX": 643.5 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 773, + "Width": 45, + "Height": 9, + "Text": "\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 282, + "Left": 81, + "Width": 126, + "Height": 9, + "Text": "Foe tries to duck under your strike.", + "Confidence": null, + "CenterX": 144 + }, + { + "PageNumber": 1, + "Top": 293, + "Left": 81, + "Width": 74, + "Height": 9, + "Text": "You knock him back.", + "Confidence": null, + "CenterX": 118 + }, + { + "PageNumber": 1, + "Top": 282, + "Left": 216, + "Width": 141, + "Height": 9, + "Text": "Foe loses some resolve from your solid", + "Confidence": null, + "CenterX": 286.5 + }, + { + "PageNumber": 1, + "Top": 293, + "Left": 216, + "Width": 24, + "Height": 9, + "Text": "strike.", + "Confidence": null, + "CenterX": 228 + }, + { + "PageNumber": 1, + "Top": 282, + "Left": 367, + "Width": 139, + "Height": 9, + "Text": "Disorient foe with a tricky shot. He is at", + "Confidence": null, + "CenterX": 436.5 + }, + { + "PageNumber": 1, + "Top": 293, + "Left": 367, + "Width": 59, + "Height": 9, + "Text": "a loss for words.", + "Confidence": null, + "CenterX": 396.5 + }, + { + "PageNumber": 1, + "Top": 282, + "Left": 519, + "Width": 140, + "Height": 9, + "Text": "Foe goes airborne to evade your strike.", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 293, + "Left": 519, + "Width": 76, + "Height": 9, + "Text": "He is stumbling back.", + "Confidence": null, + "CenterX": 557 + }, + { + "PageNumber": 1, + "Top": 282, + "Left": 670, + "Width": 136, + "Height": 9, + "Text": "Solid shot breaks foe\u0027s ribs. You have", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 293, + "Left": 670, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 155, + "Width": 54, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0 \u2013 (\u002B5)", + "Confidence": null, + "CenterX": 182 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 312, + "Width": 48, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 478, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 622, + "Width": 40, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 312, + "Left": 776, + "Width": 41, + "Height": 9, + "Text": "\u002B6H \u2013 (-10)", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 81, + "Width": 398, + "Height": 9, + "Text": "Bust foe\u0027s shin. You have initiative. Blow to foe\u0027s left calf. You gain initiative. Catch foe in lower leg. You gain", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 338, + "Left": 367, + "Width": 126, + "Height": 9, + "Text": "initiative, while foe regains footing.", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 519, + "Width": 131, + "Height": 9, + "Text": "Light swing to foe\u0027s leg. Foe\u0027s calf is", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 338, + "Left": 519, + "Width": 113, + "Height": 9, + "Text": "bruised. You have the initiative.", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 670, + "Width": 138, + "Height": 9, + "Text": "Blow to upper leg. Minor fracture. You", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 338, + "Left": 670, + "Width": 50, + "Height": 9, + "Text": "have initiative.", + "Confidence": null, + "CenterX": 695 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 134, + "Width": 76, + "Height": 9, + "Text": "with leg greaves: \u002B9H", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 113, + "Width": 97, + "Height": 9, + "Text": "w/o leg greaves: \u002B6H \u2013 (-5)", + "Confidence": null, + "CenterX": 161.5 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 264, + "Width": 97, + "Height": 9, + "Text": "with leg greaves: \u002B9H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 312.5 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 255, + "Width": 106, + "Height": 9, + "Text": "w/o leg greaves: \u002B6H \u2013 2(-20)", + "Confidence": null, + "CenterX": 308 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 465, + "Width": 46, + "Height": 9, + "Text": "\u002B9H \u2013 2(-25)", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 616, + "Width": 46, + "Height": 9, + "Text": "\u002B10H \u2013 (-10)", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 772, + "Width": 46, + "Height": 9, + "Text": "\u002B12H \u2013 (-10)", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 383, + "Left": 81, + "Width": 115, + "Height": 9, + "Text": "Foe steps under your blow. You", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 81, + "Width": 80, + "Height": 9, + "Text": "catch him in the back.", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 383, + "Left": 216, + "Width": 137, + "Height": 9, + "Text": "Solid blow to back. Foe seeks to avoid", + "Confidence": null, + "CenterX": 284.5 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 216, + "Width": 133, + "Height": 9, + "Text": "this attack again. He has lost his way.", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 383, + "Left": 367, + "Width": 141, + "Height": 9, + "Text": "He leans to your shield side and you hit", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 367, + "Width": 139, + "Height": 9, + "Text": "him in the back. You have the initiative", + "Confidence": null, + "CenterX": 436.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 367, + "Width": 46, + "Height": 9, + "Text": "for 2 rounds.", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 383, + "Left": 519, + "Width": 138, + "Height": 9, + "Text": "Catch foe in shoulder blade. Foe drops", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 519, + "Width": 127, + "Height": 9, + "Text": "his guard and reels from your blow.", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 383, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "Glancing strike to lower back. Foe turns", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 393, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "away to avoid the damage. Foe uses his", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 670, + "Width": 73, + "Height": 9, + "Text": "weapon for balance.", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 161, + "Width": 48, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 312, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 471, + "Width": 40, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 491 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 618, + "Width": 44, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 640 + }, + { + "PageNumber": 1, + "Top": 423, + "Left": 773, + "Width": 44, + "Height": 9, + "Text": "\u002B15H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 452, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 81, + "Width": 107, + "Height": 9, + "Text": "Blow to foe\u0027s chest. Foe leans", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 81, + "Width": 63, + "Height": 9, + "Text": "sideways in pain.", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 216, + "Width": 133, + "Height": 9, + "Text": "Foe recoils before your blow impacts.", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 216, + "Width": 140, + "Height": 9, + "Text": "He steps back 5 feet to defend himself.", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 367, + "Width": 130, + "Height": 9, + "Text": "Hard strike to chest, armor does not", + "Confidence": null, + "CenterX": 432 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 367, + "Width": 19, + "Height": 9, + "Text": "help.", + "Confidence": null, + "CenterX": 376.5 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 519, + "Width": 139, + "Height": 9, + "Text": "Blow to foe\u0027s ribs. It hurts him to raise", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 519, + "Width": 111, + "Height": 9, + "Text": "his arms. Foe cannot lean over.", + "Confidence": null, + "CenterX": 574.5 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 670, + "Width": 130, + "Height": 9, + "Text": "Blow to chest. He seeks to regain his", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 670, + "Width": 120, + "Height": 9, + "Text": "wind and survive your onslaught.", + "Confidence": null, + "CenterX": 730 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 161, + "Width": 50, + "Height": 9, + "Text": "\u002B5H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 186 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 326, + "Width": 35, + "Height": 9, + "Text": "\u002B6H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 451, + "Width": 59, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 616, + "Width": 46, + "Height": 9, + "Text": "\u002B10H \u2013 (-15)", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 749, + "Width": 68, + "Height": 9, + "Text": "\u002B15H \u2013 2\u2211 \u2013 (-15)", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 498, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 81, + "Width": 129, + "Height": 9, + "Text": "Blow to foe\u0027s waist sends a piece of", + "Confidence": null, + "CenterX": 145.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 81, + "Width": 104, + "Height": 9, + "Text": "equipment flying. Foe recoils.", + "Confidence": null, + "CenterX": 133 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 216, + "Width": 127, + "Height": 9, + "Text": "Strike passes under shield arm and", + "Confidence": null, + "CenterX": 279.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 216, + "Width": 112, + "Height": 9, + "Text": "lands on foe\u0027s thigh. Big bruise.", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 367, + "Width": 143, + "Height": 9, + "Text": "Strike grazes across left thigh and lands", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 367, + "Width": 80, + "Height": 9, + "Text": "on right. It lands solid.", + "Confidence": null, + "CenterX": 407 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 519, + "Width": 139, + "Height": 9, + "Text": "Miss foe\u0027s arm and strike his thigh. He", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 519, + "Width": 112, + "Height": 9, + "Text": "stumbles and drops something.", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 670, + "Width": 149, + "Height": 9, + "Text": "Blow to foe\u0027s thigh causes his right leg to", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 670, + "Width": 73, + "Height": 9, + "Text": "falter for a moment.", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 161, + "Width": 48, + "Height": 9, + "Text": "\u002B5H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 308, + "Width": 53, + "Height": 9, + "Text": "\u002B6H \u2013 \u03C0 \u2013 (-5)", + "Confidence": null, + "CenterX": 334.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 429, + "Width": 81, + "Height": 9, + "Text": "\u002B6H \u2013 \u03C0 \u2013 (-5) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 469.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 603, + "Width": 59, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 632.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 746, + "Width": 71, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 548, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 81, + "Width": 92, + "Height": 9, + "Text": "Strike to weapon forearm.", + "Confidence": null, + "CenterX": 127 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 216, + "Width": 124, + "Height": 9, + "Text": "Blow to foe\u0027s forearm. The strike is", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 216, + "Width": 88, + "Height": 9, + "Text": "solid. The pain is certain.", + "Confidence": null, + "CenterX": 260 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 367, + "Width": 142, + "Height": 9, + "Text": "Catch foe in mid-swing and disarm him.", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 367, + "Width": 116, + "Height": 9, + "Text": "His weapon tumbles behind you.", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 519, + "Width": 134, + "Height": 9, + "Text": "Blow to forearm. Blow tears clothing,", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 519, + "Width": 101, + "Height": 9, + "Text": "but not skin. Arm is bruised.", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "Strike foe\u0027s weapon arm with a titanic", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 542, + "Left": 670, + "Width": 138, + "Height": 9, + "Text": "blow. Foe drops his weapon and reels.", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 114, + "Width": 96, + "Height": 9, + "Text": "with arm greaves: \u002B8H \u2013 \u03C0", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 114, + "Width": 96, + "Height": 9, + "Text": "w/o arm greaves: \u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 302, + "Width": 59, + "Height": 9, + "Text": "\u002B9H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 331.5 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 478, + "Width": 32, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 591, + "Width": 71, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 626.5 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 754, + "Width": 64, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211 \u2013 (-15)", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 45, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 53.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 81, + "Width": 110, + "Height": 9, + "Text": "Shatter shoulder in foe\u0027s shield", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 81, + "Width": 107, + "Height": 9, + "Text": "arm. Arm is quite useless. Foe", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 81, + "Width": 98, + "Height": 9, + "Text": "drops shield, if he has one.", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 216, + "Width": 128, + "Height": 9, + "Text": "Drive elbow backwards and break it.", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 216, + "Width": 124, + "Height": 9, + "Text": "Arm is useless. Foe drops weapon,", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 216, + "Width": 104, + "Height": 9, + "Text": "leans way over, and yells out.", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 367, + "Width": 134, + "Height": 9, + "Text": "That does it for him. Your strike lands", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 367, + "Width": 143, + "Height": 9, + "Text": "on foe\u0027s knee. The knee buckles and foe", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 367, + "Width": 61, + "Height": 9, + "Text": "goes down hard.", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 519, + "Width": 140, + "Height": 9, + "Text": "Masterful strike to foe\u0027s head. If he has", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 519, + "Width": 145, + "Height": 9, + "Text": "no helm, he is dead. If he has a helm, he", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 519, + "Width": 95, + "Height": 9, + "Text": "is knocked out for 4 hours.", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 670, + "Width": 137, + "Height": 9, + "Text": "Crush what was once foe\u0027s head. If foe", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 670, + "Width": 141, + "Height": 9, + "Text": "has a helm, it is destroyed also.You are", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 670, + "Width": 73, + "Height": 9, + "Text": "spackled with blood.", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 165, + "Width": 49, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 189.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 341, + "Width": 21, + "Height": 9, + "Text": "3\u2211\u220F", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 439, + "Width": 71, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 643, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 770, + "Width": 47, + "Height": 9, + "Text": "\u002B15H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 81, + "Width": 125, + "Height": 9, + "Text": "Solid strike to foe\u0027s chest. Knocks", + "Confidence": null, + "CenterX": 143.5 + }, + { + "PageNumber": 1, + "Top": 655, + "Left": 81, + "Width": 76, + "Height": 9, + "Text": "the breath out of foe.", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 216, + "Width": 138, + "Height": 9, + "Text": "Bloom! Shot strikes foe\u0027s upper chest.", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 655, + "Left": 216, + "Width": 52, + "Height": 9, + "Text": "Foe stumbles.", + "Confidence": null, + "CenterX": 242 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 367, + "Width": 140, + "Height": 9, + "Text": "Strike to chest causes a host of trouble.", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 519, + "Width": 64, + "Height": 9, + "Text": "Blow to shoulder.", + "Confidence": null, + "CenterX": 551 + }, + { + "PageNumber": 1, + "Top": 644, + "Left": 670, + "Width": 132, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm. If foe has a", + "Confidence": null, + "CenterX": 736 + }, + { + "PageNumber": 1, + "Top": 655, + "Left": 670, + "Width": 144, + "Height": 9, + "Text": "shield, it is broken. If not, arm is broken.", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 685, + "Left": 156, + "Width": 53, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 182.5 + }, + { + "PageNumber": 1, + "Top": 685, + "Left": 285, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 323 + }, + { + "PageNumber": 1, + "Top": 685, + "Left": 415, + "Width": 96, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211 \u2013 2\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 546, + "Width": 116, + "Height": 9, + "Text": "with shoulder armor: \u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 604 + }, + { + "PageNumber": 1, + "Top": 685, + "Left": 540, + "Width": 122, + "Height": 9, + "Text": "w/o shoulder armor: 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 601 + }, + { + "PageNumber": 1, + "Top": 712, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 81, + "Width": 127, + "Height": 9, + "Text": "Shot takes foe in lower leg. He fails", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 81, + "Width": 56, + "Height": 9, + "Text": "to jump over it.", + "Confidence": null, + "CenterX": 109 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 216, + "Width": 142, + "Height": 9, + "Text": "Strike to foe\u0027s right achilles tendon. Oh", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 216, + "Width": 69, + "Height": 9, + "Text": "that hurts ya know!", + "Confidence": null, + "CenterX": 250.5 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 367, + "Width": 86, + "Height": 9, + "Text": "Strike twists foe\u0027s knee.", + "Confidence": null, + "CenterX": 410 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 519, + "Width": 131, + "Height": 9, + "Text": "Blow lands with a crack. Leg bone is", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 519, + "Width": 114, + "Height": 9, + "Text": "broken. Major cartilage damage.", + "Confidence": null, + "CenterX": 576 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 670, + "Width": 150, + "Height": 9, + "Text": "Blow to foe\u0027s hip bonebreaks it. Help! Foe", + "Confidence": null, + "CenterX": 745 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 670, + "Width": 102, + "Height": 9, + "Text": "has fallen and cannot get up.", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 138, + "Width": 71, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 173.5 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 276, + "Width": 85, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 (-35)", + "Confidence": null, + "CenterX": 318.5 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 435, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 473 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 586, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 749, + "Width": 68, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211 \u2013 (-75)", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 81, + "Width": 121, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm destroys", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 757, + "Left": 81, + "Width": 121, + "Height": 9, + "Text": "shield. If no shield, arm is broken.", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 216, + "Width": 136, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm breaks wrist.", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 757, + "Left": 216, + "Width": 123, + "Height": 9, + "Text": "Hand is useless. Foe drops shield.", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 367, + "Width": 128, + "Height": 9, + "Text": "Blow to foe\u0027s weapon arm. A metal", + "Confidence": null, + "CenterX": 431 + }, + { + "PageNumber": 1, + "Top": 757, + "Left": 367, + "Width": 144, + "Height": 9, + "Text": "armguard is bent and the arm is useless", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 767, + "Left": 367, + "Width": 114, + "Height": 9, + "Text": "until until the armor is removed.", + "Confidence": null, + "CenterX": 424 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 519, + "Width": 111, + "Height": 9, + "Text": "Blow breaks foe\u0027s weapon arm.", + "Confidence": null, + "CenterX": 574.5 + }, + { + "PageNumber": 1, + "Top": 757, + "Left": 519, + "Width": 135, + "Height": 9, + "Text": "Sling foe\u0027s weapon to the right 5 feet.", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 767, + "Left": 519, + "Width": 135, + "Height": 9, + "Text": "Foe\u0027s arm is useless. Tendon damage.", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 670, + "Width": 133, + "Height": 9, + "Text": "Slap foe\u0027s arm and elbow around like", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 757, + "Left": 670, + "Width": 147, + "Height": 9, + "Text": "string. Joint is shattered. Arm is useless.", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 767, + "Left": 670, + "Width": 109, + "Height": 9, + "Text": "Foe should have stayed in bed.", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 329, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 438, + "Width": 73, + "Height": 9, + "Text": "\u002B9H \u2013 \u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 622, + "Width": 42, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 643 + }, + { + "PageNumber": 1, + "Top": 787, + "Left": 773, + "Width": 44, + "Height": 9, + "Text": "\u002B9H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 795 + }, + { + "PageNumber": 1, + "Top": 814, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 81, + "Width": 104, + "Height": 9, + "Text": "Blow to foe\u0027s side sends him", + "Confidence": null, + "CenterX": 133 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 81, + "Width": 106, + "Height": 9, + "Text": "stumbling 5 feet to your right.", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 216, + "Width": 144, + "Height": 9, + "Text": "Blow thunders as it connects. Foe\u0027s ribs", + "Confidence": null, + "CenterX": 288 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 216, + "Width": 101, + "Height": 9, + "Text": "crackle in response. It hurts.", + "Confidence": null, + "CenterX": 266.5 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 367, + "Width": 134, + "Height": 9, + "Text": "Foe yells out before the impact and is", + "Confidence": null, + "CenterX": 434 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 367, + "Width": 116, + "Height": 9, + "Text": "silenced by the blow. Ribs crack.", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 519, + "Width": 146, + "Height": 9, + "Text": "Blow lands on foe\u0027s side. He goes down", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 519, + "Width": 77, + "Height": 9, + "Text": "hard. Victory is close.", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 670, + "Width": 130, + "Height": 9, + "Text": "Blow to foe\u0027s armpit. Crush ribs and", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 670, + "Width": 132, + "Height": 9, + "Text": "destroy organs. Foe dies in 3 rounds.", + "Confidence": null, + "CenterX": 736 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 134, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 285, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 323 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 435, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 473 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 585, + "Width": 77, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 623.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 799, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 81, + "Width": 119, + "Height": 9, + "Text": "Strike foe in lower back. Muscles", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 81, + "Width": 95, + "Height": 9, + "Text": "and cartilege are damaged.", + "Confidence": null, + "CenterX": 128.5 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 216, + "Width": 126, + "Height": 9, + "Text": "Foe makes a mistake and pays. You", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 216, + "Width": 118, + "Height": 9, + "Text": "send him prone with a fell strike.", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 216, + "Width": 80, + "Height": 9, + "Text": "Tendons are smashed.", + "Confidence": null, + "CenterX": 256 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 367, + "Width": 147, + "Height": 9, + "Text": "Powerful blow sweeps foe onto his back.", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 367, + "Width": 111, + "Height": 9, + "Text": "Bones break and muscles tear.", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 519, + "Width": 134, + "Height": 9, + "Text": "Blow to foe\u0027s neck. If foe has a throat", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 519, + "Width": 145, + "Height": 9, + "Text": "protector, he is paralyzed from the neck", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 519, + "Width": 126, + "Height": 9, + "Text": "down. If not, he dies in two rounds.", + "Confidence": null, + "CenterX": 582 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 670, + "Width": 143, + "Height": 9, + "Text": "Neck strike shatters bone and severs an", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "artery. Foe cannot breath. Foe is inactive", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 869, + "Left": 670, + "Width": 103, + "Height": 9, + "Text": "and suffocates in 12 rounds.", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 134, + "Width": 76, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 314, + "Width": 48, + "Height": 9, + "Text": "4\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 442, + "Width": 68, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 476 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 643, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 808, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 81, + "Width": 63, + "Height": 9, + "Text": "Break foe\u0027s nose.", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 216, + "Width": 137, + "Height": 9, + "Text": "Strike to foe\u0027s head. If he has no helm,", + "Confidence": null, + "CenterX": 284.5 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 216, + "Width": 117, + "Height": 9, + "Text": "he falls into a coma for 3 weeks.", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 367, + "Width": 122, + "Height": 9, + "Text": "Blow to thigh. Compound fracture", + "Confidence": null, + "CenterX": 428 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 367, + "Width": 135, + "Height": 9, + "Text": "severs an artery. Foe goes down hard", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 367, + "Width": 79, + "Height": 9, + "Text": "and dies in 12 rounds.", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 519, + "Width": 118, + "Height": 9, + "Text": "Strike comes down on the shield", + "Confidence": null, + "CenterX": 578 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 519, + "Width": 140, + "Height": 9, + "Text": "shoulder of foe. Arm shatters. Foe dies", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 519, + "Width": 139, + "Height": 9, + "Text": "from shock and blood loss in 9 rounds.", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "Blast to foe\u0027s back. A bone is driven into", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 670, + "Width": 143, + "Height": 9, + "Text": "vital organs. Foe is down and dies in six", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 670, + "Width": 29, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 684.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 99, + "Width": 110, + "Height": 9, + "Text": "with nose guard: \u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 154 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 101, + "Width": 108, + "Height": 9, + "Text": "w/o nose guard: \u002B15H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 155 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 315, + "Width": 46, + "Height": 9, + "Text": "\u002B20H \u2013 12\u2211", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 652, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 799, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 994, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 81, + "Width": 116, + "Height": 9, + "Text": "Blow to foe\u0027s head. If foe has no", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 81, + "Width": 126, + "Height": 9, + "Text": "helm, he is dead. If foe has a helm,", + "Confidence": null, + "CenterX": 144 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 81, + "Width": 75, + "Height": 9, + "Text": "he is knocked down.", + "Confidence": null, + "CenterX": 118.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 216, + "Width": 125, + "Height": 9, + "Text": "Blast foe\u0027s chest. Send ribcage into", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 216, + "Width": 135, + "Height": 9, + "Text": "heart. Foe drops and dies in 6 rounds.", + "Confidence": null, + "CenterX": 283.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 367, + "Width": 148, + "Height": 9, + "Text": "Blow to foe\u0027s abdomen. Strike destroys", + "Confidence": null, + "CenterX": 441 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 367, + "Width": 133, + "Height": 9, + "Text": "a variety of organs. Poor fool expires", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 367, + "Width": 95, + "Height": 9, + "Text": "after 6 rounds of inactivity.", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 519, + "Width": 139, + "Height": 9, + "Text": "Crush foe\u0027s chest cavity. He grips your", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 519, + "Width": 135, + "Height": 9, + "Text": "arm, looks into your eyes, then drops", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 519, + "Width": 77, + "Height": 9, + "Text": "and dies in 3 rounds.", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 670, + "Width": 149, + "Height": 9, + "Text": "Blow to foe\u0027s face. If visored, the visor is", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "driven into his face and foe dies in 10", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 670, + "Width": 115, + "Height": 9, + "Text": "rounds. Without a visor, he dies", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "instantly. You have half the round left.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 168, + "Width": 41, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 342, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 501, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 643, + "Width": 19, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 1023, + "Left": 770, + "Width": 47, + "Height": 9, + "Text": "\u002B30H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 41, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 53.5 + }, + { + "PageNumber": 1, + "Top": 1038, + "Left": 81, + "Width": 130, + "Height": 9, + "Text": "Crush foe\u0027s jaw. Drive bone through", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 81, + "Width": 86, + "Height": 9, + "Text": "brain. Foe dies instantly.", + "Confidence": null, + "CenterX": 124 + }, + { + "PageNumber": 1, + "Top": 1038, + "Left": 216, + "Width": 142, + "Height": 9, + "Text": "Blow snaps neck. Foe is paralyzed from", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 216, + "Width": 72, + "Height": 9, + "Text": "the shoulders down.", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1038, + "Left": 367, + "Width": 135, + "Height": 9, + "Text": "Strike to forehead. Destroy foe\u0027s eyes.", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 367, + "Width": 142, + "Height": 9, + "Text": "Send his helm flying. Foe is spun about.", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 1038, + "Left": 519, + "Width": 131, + "Height": 9, + "Text": "Blast to foe\u0027s heart. It stops. He dies.", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 519, + "Width": 125, + "Height": 9, + "Text": "You consider yourself to be deadly.", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 1059, + "Left": 519, + "Width": 115, + "Height": 9, + "Text": "Fine work. You are ready to slay.", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 1038, + "Left": 670, + "Width": 136, + "Height": 9, + "Text": "Blow turns hip to dust. Foe falls down.", + "Confidence": null, + "CenterX": 738 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 670, + "Width": 148, + "Height": 9, + "Text": "Attempts to stand. Falls again and dies in", + "Confidence": null, + "CenterX": 744 + }, + { + "PageNumber": 1, + "Top": 1059, + "Left": 670, + "Width": 36, + "Height": 9, + "Text": "6 rounds.", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 162, + "Width": 47, + "Height": 9, + "Text": "\u002B50H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 185.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 315, + "Width": 46, + "Height": 9, + "Text": "\u002B25H \u2013 15\u2211", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 457, + "Width": 53, + "Height": 9, + "Text": "\u002B30H \u2013 24\u2211\u220F", + "Confidence": null, + "CenterX": 483.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 643, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 745, + "Width": 73, + "Height": 9, + "Text": "\u002B35H \u2013 2\u2211 \u2013 6(-30)", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 48, + "Left": 241, + "Width": 371, + "Height": 14, + "Text": "4.3 Krush critical strike table", + "Confidence": null, + "CenterX": 426.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 139, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 145.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 280, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 431, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 580, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 79, + "Left": 741, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 518, + "Width": 64, + "Height": 9, + "Text": "evades your blow.", + "Confidence": null, + "CenterX": 550 + }, + { + "PageNumber": 1, + "Top": 587, + "Left": 670, + "Width": 127, + "Height": 9, + "Text": "Crush what was once foe\u0027s head; he", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 597, + "Left": 670, + "Width": 127, + "Height": 9, + "Text": "dies instantly. If foe has a helm, it is", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 670, + "Width": 117, + "Height": 9, + "Text": "destroyed also. You are speckled", + "Confidence": null, + "CenterX": 728.5 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 670, + "Width": 39, + "Height": 9, + "Text": "with blood.", + "Confidence": null, + "CenterX": 689.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/krush/pages/page-001.png new file mode 100644 index 0000000..3c56404 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/krush/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/krush/parsed-cells.json new file mode 100644 index 0000000..088059c --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/krush/parsed-cells.json @@ -0,0 +1,7239 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Not very impressive.", + "\u002B0H" + ], + "BaseLines": [ + "Not very impressive.", + "\u002B0H" + ], + "RawCellText": "Not very impressive.\n\u002B0H", + "DescriptionText": "Not very impressive.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 108, + "Width": 128, + "Height": 28 + }, + "SourceImagePath": "krush/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 432, + "BoundsWidth": 512, + "BoundsHeight": 112, + "CropLeft": 276, + "CropTop": 400, + "CropWidth": 608, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Your grip fails you.", + "\u002B0H" + ], + "BaseLines": [ + "Your grip fails you.", + "\u002B0H" + ], + "RawCellText": "Your grip fails you.\n\u002B0H", + "DescriptionText": "Your grip fails you.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 108, + "Width": 145, + "Height": 28 + }, + "SourceImagePath": "krush/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 432, + "BoundsWidth": 580, + "BoundsHeight": 112, + "CropLeft": 816, + "CropTop": 400, + "CropWidth": 676, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Practice this one.", + "\u002B1H" + ], + "BaseLines": [ + "Practice this one.", + "\u002B1H" + ], + "RawCellText": "Practice this one.\n\u002B1H", + "DescriptionText": "Practice this one.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 108, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "krush/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 432, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 1420, + "CropTop": 400, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Strike blunted by clothing.", + "\u002B2H" + ], + "BaseLines": [ + "Strike blunted by clothing.", + "\u002B2H" + ], + "RawCellText": "Strike blunted by clothing.\n\u002B2H", + "DescriptionText": "Strike blunted by clothing.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 108, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "krush/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 432, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 2028, + "CropTop": 400, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Destroy one of foe\u0027s silly decorations.", + "\u002B3H" + ], + "BaseLines": [ + "Destroy one of foe\u0027s silly decorations.", + "\u002B3H" + ], + "RawCellText": "Destroy one of foe\u0027s silly decorations.\n\u002B3H", + "DescriptionText": "Destroy one of foe\u0027s silly decorations.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 108, + "Width": 147, + "Height": 28 + }, + "SourceImagePath": "krush/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 432, + "BoundsWidth": 588, + "BoundsHeight": 112, + "CropLeft": 2632, + "CropTop": 400, + "CropWidth": 684, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "The strike lost something in the", + "translation.", + "\u002B0H" + ], + "BaseLines": [ + "The strike lost something in the", + "translation.", + "\u002B0H" + ], + "RawCellText": "The strike lost something in the\ntranslation.\n\u002B0H", + "DescriptionText": "The strike lost something in the translation.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 144, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 576, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 544, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Thud.", + "\u002B2H" + ], + "BaseLines": [ + "Thud.", + "\u002B2H" + ], + "RawCellText": "Thud.\n\u002B2H", + "DescriptionText": "Thud.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 144, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 576, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 544, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "You should have swung much harder.", + "\u002B3H" + ], + "BaseLines": [ + "You should have swung much harder.", + "\u002B3H" + ], + "RawCellText": "You should have swung much harder.\n\u002B3H", + "DescriptionText": "You should have swung much harder.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 144, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 576, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 544, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe steps right, then left, and almost", + "evades your blow. evades you blow.", + "\u002B4H" + ], + "BaseLines": [ + "Foe steps right, then left, and almost", + "evades your blow. evades you blow.", + "\u002B4H" + ], + "RawCellText": "Foe steps right, then left, and almost\nevades your blow. evades you blow.\n\u002B4H", + "DescriptionText": "Foe steps right, then left, and almost evades your blow. evades you blow.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 144, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 576, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2024, + "CropTop": 544, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Blow is forceful, not hard. Foe is", + "unbalanced. You have initiative.", + "\u002B6H" + ], + "BaseLines": [ + "Blow is forceful, not hard. Foe is", + "unbalanced. You have initiative.", + "\u002B6H" + ], + "RawCellText": "Blow is forceful, not hard. Foe is\nunbalanced. You have initiative.\n\u002B6H", + "DescriptionText": "Blow is forceful, not hard. Foe is unbalanced. You have initiative.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 144, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 576, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 544, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foe evades your much of your", + "swing. You have initiative.", + "\u002B3H" + ], + "BaseLines": [ + "Foe evades your much of your", + "swing. You have initiative.", + "\u002B3H" + ], + "RawCellText": "Foe evades your much of your\nswing. You have initiative.\n\u002B3H", + "DescriptionText": "Foe evades your much of your swing. You have initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 189, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 756, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 724, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe evades frantically. You have the", + "initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe evades frantically. You have the", + "initiative next round.", + "\u002B3H" + ], + "RawCellText": "Foe evades frantically. You have the\ninitiative next round.\n\u002B3H", + "DescriptionText": "Foe evades frantically. You have the initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 189, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 756, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 724, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Really solid strike to foe\u0027s shield side.", + "You have initiative.", + "\u002B7H" + ], + "BaseLines": [ + "Really solid strike to foe\u0027s shield side.", + "You have initiative.", + "\u002B7H" + ], + "RawCellText": "Really solid strike to foe\u0027s shield side.\nYou have initiative.\n\u002B7H", + "DescriptionText": "Really solid strike to foe\u0027s shield side. You have initiative.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 189, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 756, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 724, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Shot close to foe\u0027s throat. He seeks to", + "avoid your next strike.", + "\u002B5H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Shot close to foe\u0027s throat. He seeks to", + "avoid your next strike.", + "\u002B5H \u2013 (\u03C0-10)" + ], + "RawCellText": "Shot close to foe\u0027s throat. He seeks to\navoid your next strike.\n\u002B5H \u2013 (\u03C0-10)", + "DescriptionText": "Shot close to foe\u0027s throat. He seeks to avoid your next strike.", + "RawAffixText": "\u002B5H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 189, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 756, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 724, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Foe raises an arm to block your strike.", + "He does himself harm. You profit.", + "\u002B6H \u2013 \u2211 \u2013 (\u002B5)" + ], + "BaseLines": [ + "Foe raises an arm to block your strike.", + "He does himself harm. You profit.", + "\u002B6H \u2013 \u2211 \u2013 (\u002B5)" + ], + "RawCellText": "Foe raises an arm to block your strike.\nHe does himself harm. You profit.\n\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "DescriptionText": "Foe raises an arm to block your strike. He does himself harm. You profit.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 189, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 756, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 724, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe steps back 5 feet. He is out of", + "position.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe steps back 5 feet. He is out of", + "position.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Foe steps back 5 feet. He is out of\nposition.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Foe steps back 5 feet. He is out of position.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 235, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 940, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 908, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foe is concerned with his own", + "preservation. He steps back 5 feet.", + "\u002B4H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Foe is concerned with his own", + "preservation. He steps back 5 feet.", + "\u002B4H \u2013 (\u03C0-10)" + ], + "RawCellText": "Foe is concerned with his own\npreservation. He steps back 5 feet.\n\u002B4H \u2013 (\u03C0-10)", + "DescriptionText": "Foe is concerned with his own preservation. He steps back 5 feet.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 235, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 940, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 908, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s waist. He spins sideways.", + "\u002B6H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s waist. He spins sideways.", + "\u002B6H \u2013 (\u03C0-20)" + ], + "RawCellText": "Blow to foe\u0027s waist. He spins sideways.\n\u002B6H \u2013 (\u03C0-20)", + "DescriptionText": "Blow to foe\u0027s waist. He spins sideways.", + "RawAffixText": "\u002B6H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 235, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 940, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 908, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Glancing blow takes skin with it. You", + "have initiative next round.", + "\u002B5H \u2013 (-5)" + ], + "BaseLines": [ + "Glancing blow takes skin with it. You", + "have initiative next round.", + "\u002B5H \u2013 (-5)" + ], + "RawCellText": "Glancing blow takes skin with it. You\nhave initiative next round.\n\u002B5H \u2013 (-5)", + "DescriptionText": "Glancing blow takes skin with it. You have initiative next round.", + "RawAffixText": "\u002B5H \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 235, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 940, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 908, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Strong blow breaks foe\u0027s guard. He is", + "unbalanced.", + "\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strong blow breaks foe\u0027s guard. He is", + "unbalanced.", + "\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Strong blow breaks foe\u0027s guard. He is\nunbalanced.\n\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Strong blow breaks foe\u0027s guard. He is unbalanced.", + "RawAffixText": "\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 235, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 940, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 908, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe tries to duck under your strike.", + "You knock him back.", + "\u002B3H \u2013 \u03C0 \u2013 (\u002B5)" + ], + "BaseLines": [ + "Foe tries to duck under your strike.", + "You knock him back.", + "\u002B3H \u2013 \u03C0 \u2013 (\u002B5)" + ], + "RawCellText": "Foe tries to duck under your strike.\nYou knock him back.\n\u002B3H \u2013 \u03C0 \u2013 (\u002B5)", + "DescriptionText": "Foe tries to duck under your strike. You knock him back.", + "RawAffixText": "\u002B3H \u2013 \u03C0 \u2013 (\u002B5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 282, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 1128, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 1096, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Foe loses some resolve from your solid", + "strike.", + "\u002B4H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Foe loses some resolve from your solid", + "strike.", + "\u002B4H \u2013 (\u03C0-20)" + ], + "RawCellText": "Foe loses some resolve from your solid\nstrike.\n\u002B4H \u2013 (\u03C0-20)", + "DescriptionText": "Foe loses some resolve from your solid strike.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 282, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1128, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 1096, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Disorient foe with a tricky shot. He is at", + "a loss for words.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Disorient foe with a tricky shot. He is at", + "a loss for words.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Disorient foe with a tricky shot. He is at\na loss for words.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Disorient foe with a tricky shot. He is at a loss for words.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 282, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1128, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 1096, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Foe goes airborne to evade your strike.", + "He is stumbling back.", + "\u002B4H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Foe goes airborne to evade your strike.", + "He is stumbling back.", + "\u002B4H \u2013 \u2211\u220F" + ], + "RawCellText": "Foe goes airborne to evade your strike.\nHe is stumbling back.\n\u002B4H \u2013 \u2211\u220F", + "DescriptionText": "Foe goes airborne to evade your strike. He is stumbling back.", + "RawAffixText": "\u002B4H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 282, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1128, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 1096, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Solid shot breaks foe\u0027s ribs. You have", + "initiative next round.", + "\u002B6H \u2013 (-10)" + ], + "BaseLines": [ + "Solid shot breaks foe\u0027s ribs. You have", + "initiative next round.", + "\u002B6H \u2013 (-10)" + ], + "RawCellText": "Solid shot breaks foe\u0027s ribs. You have\ninitiative next round.\n\u002B6H \u2013 (-10)", + "DescriptionText": "Solid shot breaks foe\u0027s ribs. You have initiative next round.", + "RawAffixText": "\u002B6H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 282, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1128, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 1096, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Bust foe\u0027s shin. You have initiative.", + "with leg greaves: \u002B9H", + "w/o leg greaves: \u002B6H \u2013 (-5)" + ], + "BaseLines": [ + "Bust foe\u0027s shin. You have initiative." + ], + "RawCellText": "Bust foe\u0027s shin. You have initiative.", + "DescriptionText": "Bust foe\u0027s shin. You have initiative.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greaves", + "ConditionText": "with leg greaves", + "RawText": "with leg greaves: \u002B9H", + "DescriptionText": "", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B6H \u2013 (-5)", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 327, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 1308, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 276, + "CropTop": 1276, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Blow to foe\u0027s left calf. You gain initiative.", + "with leg greaves: \u002B9H \u2013 2\u03C0", + "w/o leg greaves: \u002B6H \u2013 2(-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s left calf. You gain initiative." + ], + "RawCellText": "Blow to foe\u0027s left calf. You gain initiative.", + "DescriptionText": "Blow to foe\u0027s left calf. You gain initiative.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greaves", + "ConditionText": "with leg greaves", + "RawText": "with leg greaves: \u002B9H \u2013 2\u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B9H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B6H \u2013 2(-20)", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 2(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 213, + "Top": 327, + "Width": 152, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 852, + "BoundsTop": 1308, + "BoundsWidth": 608, + "BoundsHeight": 200, + "CropLeft": 804, + "CropTop": 1276, + "CropWidth": 704, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Catch foe in lower leg. You gain", + "initiative, while foe regains footing.", + "\u002B9H \u2013 2(-25)" + ], + "BaseLines": [ + "Catch foe in lower leg. You gain", + "initiative, while foe regains footing.", + "\u002B9H \u2013 2(-25)" + ], + "RawCellText": "Catch foe in lower leg. You gain\ninitiative, while foe regains footing.\n\u002B9H \u2013 2(-25)", + "DescriptionText": "Catch foe in lower leg. You gain initiative, while foe regains footing.", + "RawAffixText": "\u002B9H \u2013 2(-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 327, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1308, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 1276, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Light swing to foe\u0027s leg. Foe\u0027s calf is", + "bruised. You have the initiative.", + "\u002B10H \u2013 (-10)" + ], + "BaseLines": [ + "Light swing to foe\u0027s leg. Foe\u0027s calf is", + "bruised. You have the initiative.", + "\u002B10H \u2013 (-10)" + ], + "RawCellText": "Light swing to foe\u0027s leg. Foe\u0027s calf is\nbruised. You have the initiative.\n\u002B10H \u2013 (-10)", + "DescriptionText": "Light swing to foe\u0027s leg. Foe\u0027s calf is bruised. You have the initiative.", + "RawAffixText": "\u002B10H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 327, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1308, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 1276, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Blow to upper leg. Minor fracture. You", + "have initiative.", + "\u002B12H \u2013 (-10)" + ], + "BaseLines": [ + "Blow to upper leg. Minor fracture. You", + "have initiative.", + "\u002B12H \u2013 (-10)" + ], + "RawCellText": "Blow to upper leg. Minor fracture. You\nhave initiative.\n\u002B12H \u2013 (-10)", + "DescriptionText": "Blow to upper leg. Minor fracture. You have initiative.", + "RawAffixText": "\u002B12H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 327, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1308, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 1276, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Foe steps under your blow. You", + "catch him in the back.", + "\u002B4H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Foe steps under your blow. You", + "catch him in the back.", + "\u002B4H \u2013 (\u03C0-25)" + ], + "RawCellText": "Foe steps under your blow. You\ncatch him in the back.\n\u002B4H \u2013 (\u03C0-25)", + "DescriptionText": "Foe steps under your blow. You catch him in the back.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 383, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 1532, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 276, + "CropTop": 1500, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Solid blow to back. Foe seeks to avoid", + "this attack again. He has lost his way.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Solid blow to back. Foe seeks to avoid", + "this attack again. He has lost his way.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "RawCellText": "Solid blow to back. Foe seeks to avoid\nthis attack again. He has lost his way.\n\u002B6H \u2013 (\u03C0-25)", + "DescriptionText": "Solid blow to back. Foe seeks to avoid this attack again. He has lost his way.", + "RawAffixText": "\u002B6H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 383, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1532, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 816, + "CropTop": 1500, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "He leans to your shield side and you hit", + "him in the back. You have the initiative", + "for 2 rounds.", + "\u002B5H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "He leans to your shield side and you hit", + "him in the back. You have the initiative", + "for 2 rounds.", + "\u002B5H \u2013 \u2211\u220F" + ], + "RawCellText": "He leans to your shield side and you hit\nhim in the back. You have the initiative\nfor 2 rounds.\n\u002B5H \u2013 \u2211\u220F", + "DescriptionText": "He leans to your shield side and you hit him in the back. You have the initiative for 2 rounds.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 383, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1532, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 1500, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Catch foe in shoulder blade. Foe drops", + "his guard and reels from your blow.", + "\u002B10H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Catch foe in shoulder blade. Foe drops", + "his guard and reels from your blow.", + "\u002B10H \u2013 \u2211\u220F" + ], + "RawCellText": "Catch foe in shoulder blade. Foe drops\nhis guard and reels from your blow.\n\u002B10H \u2013 \u2211\u220F", + "DescriptionText": "Catch foe in shoulder blade. Foe drops his guard and reels from your blow.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 383, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1532, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 1500, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Glancing strike to lower back. Foe turns", + "away to avoid the damage. Foe uses his", + "weapon for balance.", + "\u002B15H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Glancing strike to lower back. Foe turns", + "away to avoid the damage. Foe uses his", + "weapon for balance.", + "\u002B15H \u2013 \u2211\u220F" + ], + "RawCellText": "Glancing strike to lower back. Foe turns\naway to avoid the damage. Foe uses his\nweapon for balance.\n\u002B15H \u2013 \u2211\u220F", + "DescriptionText": "Glancing strike to lower back. Foe turns away to avoid the damage. Foe uses his weapon for balance.", + "RawAffixText": "\u002B15H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 383, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1532, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 1500, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s chest. Foe leans", + "sideways in pain.", + "\u002B5H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. Foe leans", + "sideways in pain.", + "\u002B5H \u2013 (\u03C0-25)" + ], + "RawCellText": "Blow to foe\u0027s chest. Foe leans\nsideways in pain.\n\u002B5H \u2013 (\u03C0-25)", + "DescriptionText": "Blow to foe\u0027s chest. Foe leans sideways in pain.", + "RawAffixText": "\u002B5H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 440, + "Width": 130, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 1760, + "BoundsWidth": 520, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 1728, + "CropWidth": 616, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Foe recoils before your blow impacts.", + "He steps back 5 feet to defend himself.", + "\u002B6H \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe recoils before your blow impacts.", + "He steps back 5 feet to defend himself.", + "\u002B6H \u2013 2\u03C0" + ], + "RawCellText": "Foe recoils before your blow impacts.\nHe steps back 5 feet to defend himself.\n\u002B6H \u2013 2\u03C0", + "DescriptionText": "Foe recoils before your blow impacts. He steps back 5 feet to defend himself.", + "RawAffixText": "\u002B6H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 440, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1760, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 1728, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hard strike to chest, armor does not", + "help.", + "\u002B5H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Hard strike to chest, armor does not", + "help.", + "\u002B5H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Hard strike to chest, armor does not\nhelp.\n\u002B5H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Hard strike to chest, armor does not help.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 440, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1760, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 1728, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s ribs. It hurts him to raise", + "his arms. Foe cannot lean over.", + "\u002B10H \u2013 (-15)" + ], + "BaseLines": [ + "Blow to foe\u0027s ribs. It hurts him to raise", + "his arms. Foe cannot lean over.", + "\u002B10H \u2013 (-15)" + ], + "RawCellText": "Blow to foe\u0027s ribs. It hurts him to raise\nhis arms. Foe cannot lean over.\n\u002B10H \u2013 (-15)", + "DescriptionText": "Blow to foe\u0027s ribs. It hurts him to raise his arms. Foe cannot lean over.", + "RawAffixText": "\u002B10H \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 440, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1760, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 1728, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Blow to chest. He seeks to regain his", + "wind and survive your onslaught.", + "\u002B15H \u2013 2\u2211 \u2013 (-15)" + ], + "BaseLines": [ + "Blow to chest. He seeks to regain his", + "wind and survive your onslaught.", + "\u002B15H \u2013 2\u2211 \u2013 (-15)" + ], + "RawCellText": "Blow to chest. He seeks to regain his\nwind and survive your onslaught.\n\u002B15H \u2013 2\u2211 \u2013 (-15)", + "DescriptionText": "Blow to chest. He seeks to regain his wind and survive your onslaught.", + "RawAffixText": "\u002B15H \u2013 2\u2211 \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 440, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1760, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 1728, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s waist sends a piece of", + "equipment flying. Foe recoils.", + "\u002B5H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Blow to foe\u0027s waist sends a piece of", + "equipment flying. Foe recoils.", + "\u002B5H \u2013 (\u03C0-25)" + ], + "RawCellText": "Blow to foe\u0027s waist sends a piece of\nequipment flying. Foe recoils.\n\u002B5H \u2013 (\u03C0-25)", + "DescriptionText": "Blow to foe\u0027s waist sends a piece of equipment flying. Foe recoils.", + "RawAffixText": "\u002B5H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 486, + "Width": 129, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 1944, + "BoundsWidth": 516, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 1912, + "CropWidth": 612, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Strike passes under shield arm and", + "lands on foe\u0027s thigh. Big bruise.", + "\u002B6H \u2013 \u03C0 \u2013 (-5)" + ], + "BaseLines": [ + "Strike passes under shield arm and", + "lands on foe\u0027s thigh. Big bruise.", + "\u002B6H \u2013 \u03C0 \u2013 (-5)" + ], + "RawCellText": "Strike passes under shield arm and\nlands on foe\u0027s thigh. Big bruise.\n\u002B6H \u2013 \u03C0 \u2013 (-5)", + "DescriptionText": "Strike passes under shield arm and lands on foe\u0027s thigh. Big bruise.", + "RawAffixText": "\u002B6H \u2013 \u03C0 \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 486, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 1944, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 1912, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strike grazes across left thigh and lands", + "on right. It lands solid.", + "\u002B6H \u2013 \u03C0 \u2013 (-5) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strike grazes across left thigh and lands", + "on right. It lands solid.", + "\u002B6H \u2013 \u03C0 \u2013 (-5) \u2013 (\u002B10)" + ], + "RawCellText": "Strike grazes across left thigh and lands\non right. It lands solid.\n\u002B6H \u2013 \u03C0 \u2013 (-5) \u2013 (\u002B10)", + "DescriptionText": "Strike grazes across left thigh and lands on right. It lands solid.", + "RawAffixText": "\u002B6H \u2013 \u03C0 \u2013 (-5) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 486, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1944, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 1912, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Miss foe\u0027s arm and strike his thigh. He", + "stumbles and drops something.", + "\u002B6H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Miss foe\u0027s arm and strike his thigh. He", + "stumbles and drops something.", + "\u002B6H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Miss foe\u0027s arm and strike his thigh. He\nstumbles and drops something.\n\u002B6H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Miss foe\u0027s arm and strike his thigh. He stumbles and drops something.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 486, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1944, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 1912, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s thigh causes his right leg to", + "falter for a moment.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s thigh causes his right leg to", + "falter for a moment.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Blow to foe\u0027s thigh causes his right leg to\nfalter for a moment.\n\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Blow to foe\u0027s thigh causes his right leg to falter for a moment.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 486, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1944, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 1912, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Strike to weapon forearm.", + "with arm greaves: \u002B8H \u2013 \u03C0", + "w/o arm greaves: \u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Strike to weapon forearm." + ], + "RawCellText": "Strike to weapon forearm.", + "DescriptionText": "Strike to weapon forearm.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_arm_greaves", + "ConditionText": "with arm greaves", + "RawText": "with arm greaves: \u002B8H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_arm_greaves", + "ConditionText": "w/o arm greaves", + "RawText": "w/o arm greaves: \u002B5H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 531, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 2124, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 276, + "CropTop": 2092, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Blow to foe\u0027s forearm. The strike is", + "solid. The pain is certain.", + "\u002B9H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s forearm. The strike is", + "solid. The pain is certain.", + "\u002B9H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Blow to foe\u0027s forearm. The strike is\nsolid. The pain is certain.\n\u002B9H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Blow to foe\u0027s forearm. The strike is solid. The pain is certain.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 531, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2124, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 816, + "CropTop": 2092, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Catch foe in mid-swing and disarm him.", + "His weapon tumbles behind you.", + "\u002B8H \u2013 \u2211" + ], + "BaseLines": [ + "Catch foe in mid-swing and disarm him.", + "His weapon tumbles behind you.", + "\u002B8H \u2013 \u2211" + ], + "RawCellText": "Catch foe in mid-swing and disarm him.\nHis weapon tumbles behind you.\n\u002B8H \u2013 \u2211", + "DescriptionText": "Catch foe in mid-swing and disarm him. His weapon tumbles behind you.", + "RawAffixText": "\u002B8H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 531, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2124, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 2092, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blow to forearm. Blow tears clothing,", + "but not skin. Arm is bruised.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Blow to forearm. Blow tears clothing,", + "but not skin. Arm is bruised.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Blow to forearm. Blow tears clothing,\nbut not skin. Arm is bruised.\n\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Blow to forearm. Blow tears clothing, but not skin. Arm is bruised.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 531, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2124, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 2092, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Strike foe\u0027s weapon arm with a titanic", + "blow. Foe drops his weapon and reels.", + "\u002B10H \u2013 \u2211 \u2013 (-15)" + ], + "BaseLines": [ + "Strike foe\u0027s weapon arm with a titanic", + "blow. Foe drops his weapon and reels.", + "\u002B10H \u2013 \u2211 \u2013 (-15)" + ], + "RawCellText": "Strike foe\u0027s weapon arm with a titanic\nblow. Foe drops his weapon and reels.\n\u002B10H \u2013 \u2211 \u2013 (-15)", + "DescriptionText": "Strike foe\u0027s weapon arm with a titanic blow. Foe drops his weapon and reels.", + "RawAffixText": "\u002B10H \u2013 \u2211 \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 531, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2124, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 2092, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Shatter shoulder in foe\u0027s shield", + "arm. Arm is quite useless. Foe", + "drops shield, if he has one.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Shatter shoulder in foe\u0027s shield", + "arm. Arm is quite useless. Foe", + "drops shield, if he has one.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "RawCellText": "Shatter shoulder in foe\u0027s shield\narm. Arm is quite useless. Foe\ndrops shield, if he has one.\n\u002B8H \u2013 2\u2211\u220F", + "DescriptionText": "Shatter shoulder in foe\u0027s shield arm. Arm is quite useless. Foe drops shield, if he has one.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 587, + "Width": 133, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 2348, + "BoundsWidth": 532, + "BoundsHeight": 196, + "CropLeft": 276, + "CropTop": 2316, + "CropWidth": 628, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Drive elbow backwards and break it.", + "Arm is useless. Foe drops weapon,", + "leans way over, and yells out.", + "3\u2211\u220F" + ], + "BaseLines": [ + "Drive elbow backwards and break it.", + "Arm is useless. Foe drops weapon,", + "leans way over, and yells out.", + "3\u2211\u220F" + ], + "RawCellText": "Drive elbow backwards and break it.\nArm is useless. Foe drops weapon,\nleans way over, and yells out.\n3\u2211\u220F", + "DescriptionText": "Drive elbow backwards and break it. Arm is useless. Foe drops weapon, leans way over, and yells out.", + "RawAffixText": "3\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 587, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2348, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 816, + "CropTop": 2316, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "That does it for him. Your strike lands", + "on foe\u0027s knee. The knee buckles and foe", + "goes down hard.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)" + ], + "BaseLines": [ + "That does it for him. Your strike lands", + "on foe\u0027s knee. The knee buckles and foe", + "goes down hard.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)" + ], + "RawCellText": "That does it for him. Your strike lands\non foe\u0027s knee. The knee buckles and foe\ngoes down hard.\n\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "DescriptionText": "That does it for him. Your strike lands on foe\u0027s knee. The knee buckles and foe goes down hard.", + "RawAffixText": "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 587, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2348, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 2316, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Masterful strike to foe\u0027s head. If he has", + "no helm, he is dead. If he has a helm, he", + "is knocked out for 4 hours.", + "\u002B20H" + ], + "BaseLines": [ + "Masterful strike to foe\u0027s head. If he has", + "no helm, he is dead. If he has a helm, he", + "is knocked out for 4 hours.", + "\u002B20H" + ], + "RawCellText": "Masterful strike to foe\u0027s head. If he has\nno helm, he is dead. If he has a helm, he\nis knocked out for 4 hours.\n\u002B20H", + "DescriptionText": "Masterful strike to foe\u0027s head. If he has no helm, he is dead. If he has a helm, he is knocked out for 4 hours.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 587, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2348, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 2316, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Crush what was once foe\u0027s head. If foe Crush what was once foe\u0027s head; he", + "has a helm, it is destroyed also.You are dies instantly. If foe has a helm, it is", + "spackled with blood. destroyed also. You are speckled", + "with blood.", + "\u002B15H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Crush what was once foe\u0027s head. If foe Crush what was once foe\u0027s head; he", + "has a helm, it is destroyed also.You are dies instantly. If foe has a helm, it is", + "spackled with blood. destroyed also. You are speckled", + "with blood.", + "\u002B15H \u2013 (\u002B10)" + ], + "RawCellText": "Crush what was once foe\u0027s head. If foe Crush what was once foe\u0027s head; he\nhas a helm, it is destroyed also.You are dies instantly. If foe has a helm, it is\nspackled with blood. destroyed also. You are speckled\nwith blood.\n\u002B15H \u2013 (\u002B10)", + "DescriptionText": "Crush what was once foe\u0027s head. If foe Crush what was once foe\u0027s head; he has a helm, it is destroyed also.You are dies instantly. If foe has a helm, it is spackled with blood. destroyed also. You are speckled with blood.", + "RawAffixText": "\u002B15H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 587, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2348, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 2316, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Solid strike to foe\u0027s chest. Knocks", + "the breath out of foe.", + "\u002B8H \u2013 3\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Solid strike to foe\u0027s chest. Knocks", + "the breath out of foe.", + "\u002B8H \u2013 3\u2211 \u2013 \u220F" + ], + "RawCellText": "Solid strike to foe\u0027s chest. Knocks\nthe breath out of foe.\n\u002B8H \u2013 3\u2211 \u2013 \u220F", + "DescriptionText": "Solid strike to foe\u0027s chest. Knocks the breath out of foe.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 644, + "Width": 128, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 2576, + "BoundsWidth": 512, + "BoundsHeight": 200, + "CropLeft": 276, + "CropTop": 2544, + "CropWidth": 608, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Bloom! Shot strikes foe\u0027s upper chest.", + "Foe stumbles.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Bloom! Shot strikes foe\u0027s upper chest.", + "Foe stumbles.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Bloom! Shot strikes foe\u0027s upper chest.\nFoe stumbles.\n\u002B10H \u2013 2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Bloom! Shot strikes foe\u0027s upper chest. Foe stumbles.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 644, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2576, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 816, + "CropTop": 2544, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strike to chest causes a host of trouble.", + "\u002B10H \u2013 3\u2211 \u2013 2\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Strike to chest causes a host of trouble.", + "\u002B10H \u2013 3\u2211 \u2013 2\u220F \u2013 (-10)" + ], + "RawCellText": "Strike to chest causes a host of trouble.\n\u002B10H \u2013 3\u2211 \u2013 2\u220F \u2013 (-10)", + "DescriptionText": "Strike to chest causes a host of trouble.", + "RawAffixText": "\u002B10H \u2013 3\u2211 \u2013 2\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 644, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2576, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 2544, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Blow to shoulder.", + "with shoulder armor: \u002B6H \u2013 \u2211\u220F", + "w/o shoulder armor: 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Blow to shoulder." + ], + "RawCellText": "Blow to shoulder.", + "DescriptionText": "Blow to shoulder.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shoulder_armor", + "ConditionText": "with shoulder armor", + "RawText": "with shoulder armor: \u002B6H \u2013 \u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shoulder_armor", + "ConditionText": "w/o shoulder armor", + "RawText": "w/o shoulder armor: 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "", + "RawAffixText": "2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 644, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2576, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 2544, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s shield arm. If foe has a", + "shield, it is broken. If not, arm is broken." + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm. If foe has a", + "shield, it is broken. If not, arm is broken." + ], + "RawCellText": "Blow to foe\u0027s shield arm. If foe has a\nshield, it is broken. If not, arm is broken.", + "DescriptionText": "Blow to foe\u0027s shield arm. If foe has a shield, it is broken. If not, arm is broken.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 644, + "Width": 144, + "Height": 20 + }, + "SourceImagePath": "krush/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2576, + "BoundsWidth": 576, + "BoundsHeight": 80, + "CropLeft": 2632, + "CropTop": 2544, + "CropWidth": 672, + "CropHeight": 144, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Shot takes foe in lower leg. He fails", + "to jump over it.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Shot takes foe in lower leg. He fails", + "to jump over it.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Shot takes foe in lower leg. He fails\nto jump over it.\n\u002B5H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Shot takes foe in lower leg. He fails to jump over it.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 700, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 2800, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 2768, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s right achilles tendon. Oh", + "that hurts ya know!", + "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 (-35)" + ], + "BaseLines": [ + "Strike to foe\u0027s right achilles tendon. Oh", + "that hurts ya know!", + "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 (-35)" + ], + "RawCellText": "Strike to foe\u0027s right achilles tendon. Oh\nthat hurts ya know!\n\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 (-35)", + "DescriptionText": "Strike to foe\u0027s right achilles tendon. Oh that hurts ya know!", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 \u220F \u2013 (-35)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -35, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-35)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 700, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2800, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 2768, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Strike twists foe\u0027s knee.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Strike twists foe\u0027s knee.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Strike twists foe\u0027s knee.\n\u002B10H \u2013 2\u2211\u220F \u2013 (-40)", + "DescriptionText": "Strike twists foe\u0027s knee.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 700, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2800, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 2768, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Blow lands with a crack. Leg bone is", + "broken. Major cartilage damage.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Blow lands with a crack. Leg bone is", + "broken. Major cartilage damage.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Blow lands with a crack. Leg bone is\nbroken. Major cartilage damage.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Blow lands with a crack. Leg bone is broken. Major cartilage damage.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 700, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2800, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 2768, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s hip bonebreaks it. Help! Foe", + "has fallen and cannot get up.", + "\u002B15H \u2013 3\u2211 \u2013 (-75)" + ], + "BaseLines": [ + "Blow to foe\u0027s hip bonebreaks it. Help! Foe", + "has fallen and cannot get up.", + "\u002B15H \u2013 3\u2211 \u2013 (-75)" + ], + "RawCellText": "Blow to foe\u0027s hip bonebreaks it. Help! Foe\nhas fallen and cannot get up.\n\u002B15H \u2013 3\u2211 \u2013 (-75)", + "DescriptionText": "Blow to foe\u0027s hip bonebreaks it. Help! Foe has fallen and cannot get up.", + "RawAffixText": "\u002B15H \u2013 3\u2211 \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 700, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2800, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 2768, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s shield arm destroys", + "shield. If no shield, arm is broken." + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm destroys", + "shield. If no shield, arm is broken." + ], + "RawCellText": "Blow to foe\u0027s shield arm destroys\nshield. If no shield, arm is broken.", + "DescriptionText": "Blow to foe\u0027s shield arm destroys shield. If no shield, arm is broken.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 746, + "Width": 121, + "Height": 20 + }, + "SourceImagePath": "krush/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 2984, + "BoundsWidth": 484, + "BoundsHeight": 80, + "CropLeft": 276, + "CropTop": 2952, + "CropWidth": 580, + "CropHeight": 144, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Blow to foe\u0027s shield arm breaks wrist.", + "Hand is useless. Foe drops shield.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm breaks wrist.", + "Hand is useless. Foe drops shield.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Blow to foe\u0027s shield arm breaks wrist.\nHand is useless. Foe drops shield.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Blow to foe\u0027s shield arm breaks wrist. Hand is useless. Foe drops shield.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 746, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 2984, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 816, + "CropTop": 2952, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s weapon arm. A metal", + "armguard is bent and the arm is useless", + "until until the armor is removed.", + "\u002B9H \u2013 \u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Blow to foe\u0027s weapon arm. A metal", + "armguard is bent and the arm is useless", + "until until the armor is removed.", + "\u002B9H \u2013 \u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Blow to foe\u0027s weapon arm. A metal\narmguard is bent and the arm is useless\nuntil until the armor is removed.\n\u002B9H \u2013 \u2211\u220F \u2013 (-50)", + "DescriptionText": "Blow to foe\u0027s weapon arm. A metal armguard is bent and the arm is useless until until the armor is removed.", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 746, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2984, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 2952, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Blow breaks foe\u0027s weapon arm.", + "Sling foe\u0027s weapon to the right 5 feet.", + "Foe\u0027s arm is useless. Tendon damage.", + "\u002B8H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Blow breaks foe\u0027s weapon arm.", + "Sling foe\u0027s weapon to the right 5 feet.", + "Foe\u0027s arm is useless. Tendon damage.", + "\u002B8H \u2013 \u2211\u220F" + ], + "RawCellText": "Blow breaks foe\u0027s weapon arm.\nSling foe\u0027s weapon to the right 5 feet.\nFoe\u0027s arm is useless. Tendon damage.\n\u002B8H \u2013 \u2211\u220F", + "DescriptionText": "Blow breaks foe\u0027s weapon arm. Sling foe\u0027s weapon to the right 5 feet. Foe\u0027s arm is useless. Tendon damage.", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 746, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2984, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 2952, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Slap foe\u0027s arm and elbow around like", + "string. Joint is shattered. Arm is useless.", + "Foe should have stayed in bed.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Slap foe\u0027s arm and elbow around like", + "string. Joint is shattered. Arm is useless.", + "Foe should have stayed in bed.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "RawCellText": "Slap foe\u0027s arm and elbow around like\nstring. Joint is shattered. Arm is useless.\nFoe should have stayed in bed.\n\u002B9H \u2013 2\u2211\u220F", + "DescriptionText": "Slap foe\u0027s arm and elbow around like string. Joint is shattered. Arm is useless. Foe should have stayed in bed.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 746, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2984, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 2952, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s side sends him", + "stumbling 5 feet to your right.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s side sends him", + "stumbling 5 feet to your right.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Blow to foe\u0027s side sends him\nstumbling 5 feet to your right.\n\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Blow to foe\u0027s side sends him stumbling 5 feet to your right.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 802, + "Width": 129, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 3208, + "BoundsWidth": 516, + "BoundsHeight": 156, + "CropLeft": 276, + "CropTop": 3176, + "CropWidth": 612, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Blow thunders as it connects. Foe\u0027s ribs", + "crackle in response. It hurts.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Blow thunders as it connects. Foe\u0027s ribs", + "crackle in response. It hurts.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Blow thunders as it connects. Foe\u0027s ribs\ncrackle in response. It hurts.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-25)", + "DescriptionText": "Blow thunders as it connects. Foe\u0027s ribs crackle in response. It hurts.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 802, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3208, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 816, + "CropTop": 3176, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Foe yells out before the impact and is", + "silenced by the blow. Ribs crack.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Foe yells out before the impact and is", + "silenced by the blow. Ribs crack.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Foe yells out before the impact and is\nsilenced by the blow. Ribs crack.\n\u002B12H \u2013 3\u2211\u220F \u2013 (-40)", + "DescriptionText": "Foe yells out before the impact and is silenced by the blow. Ribs crack.", + "RawAffixText": "\u002B12H \u2013 3\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 802, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3208, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 3176, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Blow lands on foe\u0027s side. He goes down", + "hard. Victory is close.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Blow lands on foe\u0027s side. He goes down", + "hard. Victory is close.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Blow lands on foe\u0027s side. He goes down\nhard. Victory is close.\n\u002B15H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Blow lands on foe\u0027s side. He goes down hard. Victory is close.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 802, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3208, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 3176, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s armpit. Crush ribs and", + "destroy organs. Foe dies in 3 rounds.", + "\u002B30H" + ], + "BaseLines": [ + "Blow to foe\u0027s armpit. Crush ribs and", + "destroy organs. Foe dies in 3 rounds.", + "\u002B30H" + ], + "RawCellText": "Blow to foe\u0027s armpit. Crush ribs and\ndestroy organs. Foe dies in 3 rounds.\n\u002B30H", + "DescriptionText": "Blow to foe\u0027s armpit. Crush ribs and destroy organs. Foe dies in 3 rounds.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 802, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "krush/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3208, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 3176, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Strike foe in lower back. Muscles", + "and cartilege are damaged.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Strike foe in lower back. Muscles", + "and cartilege are damaged.", + "\u002B12H \u2013 3\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Strike foe in lower back. Muscles\nand cartilege are damaged.\n\u002B12H \u2013 3\u2211\u220F \u2013 (-25)", + "DescriptionText": "Strike foe in lower back. Muscles and cartilege are damaged.", + "RawAffixText": "\u002B12H \u2013 3\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 848, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 3392, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 276, + "CropTop": 3360, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Foe makes a mistake and pays. You", + "send him prone with a fell strike.", + "Tendons are smashed.", + "4\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Foe makes a mistake and pays. You", + "send him prone with a fell strike.", + "Tendons are smashed.", + "4\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Foe makes a mistake and pays. You\nsend him prone with a fell strike.\nTendons are smashed.\n4\u2211\u220F \u2013 (-30)", + "DescriptionText": "Foe makes a mistake and pays. You send him prone with a fell strike. Tendons are smashed.", + "RawAffixText": "4\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 848, + "Width": 146, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3392, + "BoundsWidth": 584, + "BoundsHeight": 200, + "CropLeft": 816, + "CropTop": 3360, + "CropWidth": 680, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Powerful blow sweeps foe onto his back.", + "Bones break and muscles tear.", + "\u002B20H \u2013 6\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Powerful blow sweeps foe onto his back.", + "Bones break and muscles tear.", + "\u002B20H \u2013 6\u2211 \u2013 (-50)" + ], + "RawCellText": "Powerful blow sweeps foe onto his back.\nBones break and muscles tear.\n\u002B20H \u2013 6\u2211 \u2013 (-50)", + "DescriptionText": "Powerful blow sweeps foe onto his back. Bones break and muscles tear.", + "RawAffixText": "\u002B20H \u2013 6\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 848, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3392, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 3360, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s neck. If foe has a throat", + "protector, he is paralyzed from the neck", + "down. If not, he dies in two rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Blow to foe\u0027s neck. If foe has a throat", + "protector, he is paralyzed from the neck", + "down. If not, he dies in two rounds.", + "\u002B25H" + ], + "RawCellText": "Blow to foe\u0027s neck. If foe has a throat\nprotector, he is paralyzed from the neck\ndown. If not, he dies in two rounds.\n\u002B25H", + "DescriptionText": "Blow to foe\u0027s neck. If foe has a throat protector, he is paralyzed from the neck down. If not, he dies in two rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 848, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3392, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 3360, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Neck strike shatters bone and severs an", + "artery. Foe cannot breath. Foe is inactive", + "and suffocates in 12 rounds.", + "\u2014" + ], + "BaseLines": [ + "Neck strike shatters bone and severs an", + "artery. Foe cannot breath. Foe is inactive", + "and suffocates in 12 rounds.", + "\u2014" + ], + "RawCellText": "Neck strike shatters bone and severs an\nartery. Foe cannot breath. Foe is inactive\nand suffocates in 12 rounds.\n\u2014", + "DescriptionText": "Neck strike shatters bone and severs an artery. Foe cannot breath. Foe is inactive and suffocates in 12 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 848, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "krush/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3392, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 3360, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Break foe\u0027s nose.", + "with nose guard: \u002B10H \u2013 2\u2211\u220F", + "w/o nose guard: \u002B15H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Break foe\u0027s nose." + ], + "RawCellText": "Break foe\u0027s nose.", + "DescriptionText": "Break foe\u0027s nose.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_nose_guard", + "ConditionText": "with nose guard", + "RawText": "with nose guard: \u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_nose_guard", + "ConditionText": "w/o nose guard", + "RawText": "w/o nose guard: \u002B15H \u2013 3\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 905, + "Width": 128, + "Height": 59 + }, + "SourceImagePath": "krush/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 3620, + "BoundsWidth": 512, + "BoundsHeight": 236, + "CropLeft": 276, + "CropTop": 3588, + "CropWidth": 608, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s head. If he has no helm,", + "he falls into a coma for 3 weeks.", + "\u002B20H \u2013 12\u2211" + ], + "BaseLines": [ + "Strike to foe\u0027s head. If he has no helm,", + "he falls into a coma for 3 weeks.", + "\u002B20H \u2013 12\u2211" + ], + "RawCellText": "Strike to foe\u0027s head. If he has no helm,\nhe falls into a coma for 3 weeks.\n\u002B20H \u2013 12\u2211", + "DescriptionText": "Strike to foe\u0027s head. If he has no helm, he falls into a coma for 3 weeks.", + "RawAffixText": "\u002B20H \u2013 12\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 905, + "Width": 145, + "Height": 59 + }, + "SourceImagePath": "krush/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3620, + "BoundsWidth": 580, + "BoundsHeight": 236, + "CropLeft": 816, + "CropTop": 3588, + "CropWidth": 676, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Blow to thigh. Compound fracture", + "severs an artery. Foe goes down hard", + "and dies in 12 rounds.", + "\u002B9H" + ], + "BaseLines": [ + "Blow to thigh. Compound fracture", + "severs an artery. Foe goes down hard", + "and dies in 12 rounds.", + "\u002B9H" + ], + "RawCellText": "Blow to thigh. Compound fracture\nsevers an artery. Foe goes down hard\nand dies in 12 rounds.\n\u002B9H", + "DescriptionText": "Blow to thigh. Compound fracture severs an artery. Foe goes down hard and dies in 12 rounds.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 905, + "Width": 143, + "Height": 59 + }, + "SourceImagePath": "krush/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3620, + "BoundsWidth": 572, + "BoundsHeight": 236, + "CropLeft": 1420, + "CropTop": 3588, + "CropWidth": 668, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Strike comes down on the shield", + "shoulder of foe. Arm shatters. Foe dies", + "from shock and blood loss in 9 rounds.", + "\u2014" + ], + "BaseLines": [ + "Strike comes down on the shield", + "shoulder of foe. Arm shatters. Foe dies", + "from shock and blood loss in 9 rounds.", + "\u2014" + ], + "RawCellText": "Strike comes down on the shield\nshoulder of foe. Arm shatters. Foe dies\nfrom shock and blood loss in 9 rounds.\n\u2014", + "DescriptionText": "Strike comes down on the shield shoulder of foe. Arm shatters. Foe dies from shock and blood loss in 9 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 905, + "Width": 142, + "Height": 59 + }, + "SourceImagePath": "krush/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3620, + "BoundsWidth": 568, + "BoundsHeight": 236, + "CropLeft": 2028, + "CropTop": 3588, + "CropWidth": 664, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blast to foe\u0027s back. A bone is driven into", + "vital organs. Foe is down and dies in six", + "rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Blast to foe\u0027s back. A bone is driven into", + "vital organs. Foe is down and dies in six", + "rounds.", + "\u002B25H" + ], + "RawCellText": "Blast to foe\u0027s back. A bone is driven into\nvital organs. Foe is down and dies in six\nrounds.\n\u002B25H", + "DescriptionText": "Blast to foe\u0027s back. A bone is driven into vital organs. Foe is down and dies in six rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 905, + "Width": 148, + "Height": 59 + }, + "SourceImagePath": "krush/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3620, + "BoundsWidth": 592, + "BoundsHeight": 236, + "CropLeft": 2632, + "CropTop": 3588, + "CropWidth": 688, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s head. If foe has no", + "helm, he is dead. If foe has a helm,", + "he is knocked down.", + "\u002B20H \u2013 6\u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s head. If foe has no", + "helm, he is dead. If foe has a helm,", + "he is knocked down.", + "\u002B20H \u2013 6\u2211" + ], + "RawCellText": "Blow to foe\u0027s head. If foe has no\nhelm, he is dead. If foe has a helm,\nhe is knocked down.\n\u002B20H \u2013 6\u2211", + "DescriptionText": "Blow to foe\u0027s head. If foe has no helm, he is dead. If foe has a helm, he is knocked down.", + "RawAffixText": "\u002B20H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 971, + "Width": 128, + "Height": 61 + }, + "SourceImagePath": "krush/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 3884, + "BoundsWidth": 512, + "BoundsHeight": 244, + "CropLeft": 276, + "CropTop": 3852, + "CropWidth": 608, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Blast foe\u0027s chest. Send ribcage into", + "heart. Foe drops and dies in 6 rounds.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast foe\u0027s chest. Send ribcage into", + "heart. Foe drops and dies in 6 rounds.", + "(\u002B20)" + ], + "RawCellText": "Blast foe\u0027s chest. Send ribcage into\nheart. Foe drops and dies in 6 rounds.\n(\u002B20)", + "DescriptionText": "Blast foe\u0027s chest. Send ribcage into heart. Foe drops and dies in 6 rounds.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 971, + "Width": 145, + "Height": 61 + }, + "SourceImagePath": "krush/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 3884, + "BoundsWidth": 580, + "BoundsHeight": 244, + "CropLeft": 816, + "CropTop": 3852, + "CropWidth": 676, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s abdomen. Strike destroys", + "a variety of organs. Poor fool expires", + "after 6 rounds of inactivity.", + "\u2014" + ], + "BaseLines": [ + "Blow to foe\u0027s abdomen. Strike destroys", + "a variety of organs. Poor fool expires", + "after 6 rounds of inactivity.", + "\u2014" + ], + "RawCellText": "Blow to foe\u0027s abdomen. Strike destroys\na variety of organs. Poor fool expires\nafter 6 rounds of inactivity.\n\u2014", + "DescriptionText": "Blow to foe\u0027s abdomen. Strike destroys a variety of organs. Poor fool expires after 6 rounds of inactivity.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 971, + "Width": 148, + "Height": 61 + }, + "SourceImagePath": "krush/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3884, + "BoundsWidth": 592, + "BoundsHeight": 244, + "CropLeft": 1420, + "CropTop": 3852, + "CropWidth": 688, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Crush foe\u0027s chest cavity. He grips your", + "arm, looks into your eyes, then drops", + "and dies in 3 rounds.", + "(\u002B25)" + ], + "BaseLines": [ + "Crush foe\u0027s chest cavity. He grips your", + "arm, looks into your eyes, then drops", + "and dies in 3 rounds.", + "(\u002B25)" + ], + "RawCellText": "Crush foe\u0027s chest cavity. He grips your\narm, looks into your eyes, then drops\nand dies in 3 rounds.\n(\u002B25)", + "DescriptionText": "Crush foe\u0027s chest cavity. He grips your arm, looks into your eyes, then drops and dies in 3 rounds.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 971, + "Width": 143, + "Height": 61 + }, + "SourceImagePath": "krush/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3884, + "BoundsWidth": 572, + "BoundsHeight": 244, + "CropLeft": 2028, + "CropTop": 3852, + "CropWidth": 668, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s face. If visored, the visor is", + "driven into his face and foe dies in 10", + "rounds. Without a visor, he dies", + "instantly. You have half the round left.", + "\u002B30H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Blow to foe\u0027s face. If visored, the visor is", + "driven into his face and foe dies in 10", + "rounds. Without a visor, he dies", + "instantly. You have half the round left.", + "\u002B30H \u2013 (\u002B20)" + ], + "RawCellText": "Blow to foe\u0027s face. If visored, the visor is\ndriven into his face and foe dies in 10\nrounds. Without a visor, he dies\ninstantly. You have half the round left.\n\u002B30H \u2013 (\u002B20)", + "DescriptionText": "Blow to foe\u0027s face. If visored, the visor is driven into his face and foe dies in 10 rounds. Without a visor, he dies instantly. You have half the round left.", + "RawAffixText": "\u002B30H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 971, + "Width": 149, + "Height": 61 + }, + "SourceImagePath": "krush/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3884, + "BoundsWidth": 596, + "BoundsHeight": 244, + "CropLeft": 2632, + "CropTop": 3852, + "CropWidth": 692, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Crush foe\u0027s jaw. Drive bone through", + "brain. Foe dies instantly.", + "\u002B50H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Crush foe\u0027s jaw. Drive bone through", + "brain. Foe dies instantly.", + "\u002B50H \u2013 (\u002B20)" + ], + "RawCellText": "Crush foe\u0027s jaw. Drive bone through\nbrain. Foe dies instantly.\n\u002B50H \u2013 (\u002B20)", + "DescriptionText": "Crush foe\u0027s jaw. Drive bone through brain. Foe dies instantly.", + "RawAffixText": "\u002B50H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 81, + "Top": 1038, + "Width": 130, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 324, + "BoundsTop": 4152, + "BoundsWidth": 520, + "BoundsHeight": 196, + "CropLeft": 276, + "CropTop": 4120, + "CropWidth": 616, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Blow snaps neck. Foe is paralyzed from", + "the shoulders down.", + "\u002B25H \u2013 15\u2211" + ], + "BaseLines": [ + "Blow snaps neck. Foe is paralyzed from", + "the shoulders down.", + "\u002B25H \u2013 15\u2211" + ], + "RawCellText": "Blow snaps neck. Foe is paralyzed from\nthe shoulders down.\n\u002B25H \u2013 15\u2211", + "DescriptionText": "Blow snaps neck. Foe is paralyzed from the shoulders down.", + "RawAffixText": "\u002B25H \u2013 15\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 216, + "Top": 1038, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 864, + "BoundsTop": 4152, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 816, + "CropTop": 4120, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Strike to forehead. Destroy foe\u0027s eyes.", + "Send his helm flying. Foe is spun about.", + "\u002B30H \u2013 24\u2211\u220F" + ], + "BaseLines": [ + "Strike to forehead. Destroy foe\u0027s eyes.", + "Send his helm flying. Foe is spun about.", + "\u002B30H \u2013 24\u2211\u220F" + ], + "RawCellText": "Strike to forehead. Destroy foe\u0027s eyes.\nSend his helm flying. Foe is spun about.\n\u002B30H \u2013 24\u2211\u220F", + "DescriptionText": "Strike to forehead. Destroy foe\u0027s eyes. Send his helm flying. Foe is spun about.", + "RawAffixText": "\u002B30H \u2013 24\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 1038, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 4152, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 4120, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Blast to foe\u0027s heart. It stops. He dies.", + "You consider yourself to be deadly.", + "Fine work. You are ready to slay.", + "\u002B25H" + ], + "BaseLines": [ + "Blast to foe\u0027s heart. It stops. He dies.", + "You consider yourself to be deadly.", + "Fine work. You are ready to slay.", + "\u002B25H" + ], + "RawCellText": "Blast to foe\u0027s heart. It stops. He dies.\nYou consider yourself to be deadly.\nFine work. You are ready to slay.\n\u002B25H", + "DescriptionText": "Blast to foe\u0027s heart. It stops. He dies. You consider yourself to be deadly. Fine work. You are ready to slay.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 1038, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 4152, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 4120, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Blow turns hip to dust. Foe falls down.", + "Attempts to stand. Falls again and dies in", + "6 rounds.", + "\u002B35H \u2013 2\u2211 \u2013 6(-30)" + ], + "BaseLines": [ + "Blow turns hip to dust. Foe falls down.", + "Attempts to stand. Falls again and dies in", + "6 rounds.", + "\u002B35H \u2013 2\u2211 \u2013 6(-30)" + ], + "RawCellText": "Blow turns hip to dust. Foe falls down.\nAttempts to stand. Falls again and dies in\n6 rounds.\n\u002B35H \u2013 2\u2211 \u2013 6(-30)", + "DescriptionText": "Blow turns hip to dust. Foe falls down. Attempts to stand. Falls again and dies in 6 rounds.", + "RawAffixText": "\u002B35H \u2013 2\u2211 \u2013 6(-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 1038, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "krush/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 4152, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 4120, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/source.xml b/src/RolemasterDb.App/import-artifacts/critical/krush/source.xml new file mode 100644 index 0000000..f8e5017 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/krush/source.xml @@ -0,0 +1,356 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +96 +01-05 +Not very impressive. +Your grip fails you. +Practice this one. +Strike blunted by clothing. +Destroy one of foe's silly decorations. ++0H ++0H ++1H ++2H ++3H +06-10 +The strike lost something in the +translation. +Thud. +You should have swung much harder. +Foe steps right, then left, and almost +evades you blow. +Blow is forceful, not hard. Foe is +unbalanced. You have initiative. ++0H ++2H ++3H ++4H ++6H +11-15 +Foe evades your much of your +swing. You have initiative. +Foe evades frantically. You have the +initiative next round. +Really solid strike to foe's shield side. +You have initiative. +Shot close to foe's throat. He seeks to +avoid your next strike. +Foe raises an arm to block your strike. +He does himself harm. You profit. ++3H ++3H ++7H ++5H – (π-10) ++6H – ∑ – (+5) +16-20 +Foe steps back 5 feet. He is out of +position. +Foe is concerned with his own +preservation. He steps back 5 feet. +Blow to foe's waist. He spins sideways. +Glancing blow takes skin with it. You +have initiative next round. +Strong blow breaks foe's guard. He is +unbalanced. ++2H – π ++4H – (π-10) ++6H – (π-20) ++5H – (-5) +∑∏ – (+10) +21-35 +Foe tries to duck under your strike. +You knock him back. +Foe loses some resolve from your solid +strike. +Disorient foe with a tricky shot. He is at +a loss for words. +Foe goes airborne to evade your strike. +He is stumbling back. +Solid shot breaks foe's ribs. You have +initiative next round. ++3H – π – (+5) ++4H – (π-20) ++5H – ∑ ++4H – ∑∏ ++6H – (-10) +36-45 +Bust foe's shin. You have initiative. Blow to foe's left calf. You gain initiative. Catch foe in lower leg. You gain +initiative, while foe regains footing. +Light swing to foe's leg. Foe's calf is +bruised. You have the initiative. +Blow to upper leg. Minor fracture. You +have initiative. +with leg greaves: +9H +w/o leg greaves: +6H – (-5) +with leg greaves: +9H – 2π +w/o leg greaves: +6H – 2(-20) ++9H – 2(-25) ++10H – (-10) ++12H – (-10) +46-50 +Foe steps under your blow. You +catch him in the back. +Solid blow to back. Foe seeks to avoid +this attack again. He has lost his way. +He leans to your shield side and you hit +him in the back. You have the initiative +for 2 rounds. +Catch foe in shoulder blade. Foe drops +his guard and reels from your blow. +Glancing strike to lower back. Foe turns +away to avoid the damage. Foe uses his +weapon for balance. ++4H – (π-25) ++6H – (π-25) ++5H – ∑∏ ++10H – ∑∏ ++15H – ∑∏ +51-55 +Blow to foe's chest. Foe leans +sideways in pain. +Foe recoils before your blow impacts. +He steps back 5 feet to defend himself. +Hard strike to chest, armor does not +help. +Blow to foe's ribs. It hurts him to raise +his arms. Foe cannot lean over. +Blow to chest. He seeks to regain his +wind and survive your onslaught. ++5H – (π-25) ++6H – 2π ++5H – ∑ – (-10) ++10H – (-15) ++15H – 2∑ – (-15) +56-60 +Blow to foe's waist sends a piece of +equipment flying. Foe recoils. +Strike passes under shield arm and +lands on foe's thigh. Big bruise. +Strike grazes across left thigh and lands +on right. It lands solid. +Miss foe's arm and strike his thigh. He +stumbles and drops something. +Blow to foe's thigh causes his right leg to +falter for a moment. ++5H – (π-25) ++6H – π – (-5) ++6H – π – (-5) – (+10) ++6H – ∑ – (-10) ++10H – ∑∏ – (-10) +61-65 +Strike to weapon forearm. +Blow to foe's forearm. The strike is +solid. The pain is certain. +Catch foe in mid-swing and disarm him. +His weapon tumbles behind you. +Blow to forearm. Blow tears clothing, +but not skin. Arm is bruised. +Strike foe's weapon arm with a titanic +blow. Foe drops his weapon and reels. +with arm greaves: +8H – π +w/o arm greaves: +5H – ∑ ++9H – ∑ – (-10) ++8H – ∑ ++10H – ∑∏ – (-10) ++10H – ∑ – (-15) +66 +Shatter shoulder in foe's shield +arm. Arm is quite useless. Foe +drops shield, if he has one. +Drive elbow backwards and break it. +Arm is useless. Foe drops weapon, +leans way over, and yells out. +That does it for him. Your strike lands +on foe's knee. The knee buckles and foe +goes down hard. +Masterful strike to foe's head. If he has +no helm, he is dead. If he has a helm, he +is knocked out for 4 hours. +Crush what was once foe's head. If foe +has a helm, it is destroyed also.You are +spackled with blood. ++8H – 2∑∏ +3∑∏ ++9H – 3∑∏ – (-90) ++20H ++15H – (+10) +67-70 +Solid strike to foe's chest. Knocks +the breath out of foe. +Bloom! Shot strikes foe's upper chest. +Foe stumbles. +Strike to chest causes a host of trouble. +Blow to shoulder. +Blow to foe's shield arm. If foe has a +shield, it is broken. If not, arm is broken. ++8H – 3∑ – ∏ ++10H – 2∑∏ – (-10) ++10H – 3∑ – 2∏ – (-10) +with shoulder armor: +6H – ∑∏ +w/o shoulder armor: 2∑∏ – (-20) +71-75 +Shot takes foe in lower leg. He fails +to jump over it. +Strike to foe's right achilles tendon. Oh +that hurts ya know! +Strike twists foe's knee. +Blow lands with a crack. Leg bone is +broken. Major cartilage damage. +Blow to foe's hip bonebreaks it. Help! Foe +has fallen and cannot get up. ++5H – 2∑∏ – (-20) ++10H – 2∑ – ∏ – (-35) ++10H – 2∑∏ – (-40) ++12H – 2∑∏ – (-50) ++15H – 3∑ – (-75) +76-80 +Blow to foe's shield arm destroys +shield. If no shield, arm is broken. +Blow to foe's shield arm breaks wrist. +Hand is useless. Foe drops shield. +Blow to foe's weapon arm. A metal +armguard is bent and the arm is useless +until until the armor is removed. +Blow breaks foe's weapon arm. +Sling foe's weapon to the right 5 feet. +Foe's arm is useless. Tendon damage. +Slap foe's arm and elbow around like +string. Joint is shattered. Arm is useless. +Foe should have stayed in bed. ++6H – ∑ ++9H – ∑∏ – (-50) ++8H – ∑∏ ++9H – 2∑∏ +81-85 +Blow to foe's side sends him +stumbling 5 feet to your right. +Blow thunders as it connects. Foe's ribs +crackle in response. It hurts. +Foe yells out before the impact and is +silenced by the blow. Ribs crack. +Blow lands on foe's side. He goes down +hard. Victory is close. +Blow to foe's armpit. Crush ribs and +destroy organs. Foe dies in 3 rounds. ++10H – 2∑∏ – (-20) ++12H – 2∑∏ – (-25) ++12H – 3∑∏ – (-40) ++15H – 3∑∏ – (+10) ++30H +86-90 +Strike foe in lower back. Muscles +and cartilege are damaged. +Foe makes a mistake and pays. You +send him prone with a fell strike. +Tendons are smashed. +Powerful blow sweeps foe onto his back. +Bones break and muscles tear. +Blow to foe's neck. If foe has a throat +protector, he is paralyzed from the neck +down. If not, he dies in two rounds. +Neck strike shatters bone and severs an +artery. Foe cannot breath. Foe is inactive +and suffocates in 12 rounds. ++12H – 3∑∏ – (-25) +4∑∏ – (-30) ++20H – 6∑ – (-50) ++25H + +91-95 +Break foe's nose. +Strike to foe's head. If he has no helm, +he falls into a coma for 3 weeks. +Blow to thigh. Compound fracture +severs an artery. Foe goes down hard +and dies in 12 rounds. +Strike comes down on the shield +shoulder of foe. Arm shatters. Foe dies +from shock and blood loss in 9 rounds. +Blast to foe's back. A bone is driven into +vital organs. Foe is down and dies in six +rounds. +with nose guard: +10H – 2∑∏ +w/o nose guard: +15H – 3∑∏ ++20H – 12∑ ++9H + ++25H +96-99 +Blow to foe's head. If foe has no +helm, he is dead. If foe has a helm, +he is knocked down. +Blast foe's chest. Send ribcage into +heart. Foe drops and dies in 6 rounds. +Blow to foe's abdomen. Strike destroys +a variety of organs. Poor fool expires +after 6 rounds of inactivity. +Crush foe's chest cavity. He grips your +arm, looks into your eyes, then drops +and dies in 3 rounds. +Blow to foe's face. If visored, the visor is +driven into his face and foe dies in 10 +rounds. Without a visor, he dies +instantly. You have half the round left. ++20H – 6∑ +(+20) + +(+25) ++30H – (+20) +100 +Crush foe's jaw. Drive bone through +brain. Foe dies instantly. +Blow snaps neck. Foe is paralyzed from +the shoulders down. +Strike to forehead. Destroy foe's eyes. +Send his helm flying. Foe is spun about. +Blast to foe's heart. It stops. He dies. +You consider yourself to be deadly. +Fine work. You are ready to slay. +Blow turns hip to dust. Foe falls down. +Attempts to stand. Falls again and dies in +6 rounds. ++50H – (+20) ++25H – 15∑ ++30H – 24∑∏ ++25H ++35H – 2∑ – 6(-30) +4.3 Krush critical strike table +A +b +c +d +e +Foe steps right, then left, and almost +evades your blow. +Crush what was once foe’s head; he +dies instantly. If foe has a helm, it is +destroyed also. You are speckled +with blood. + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/krush/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/krush/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/krush/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__01-05.png new file mode 100644 index 0000000..e41bc54 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__06-10.png new file mode 100644 index 0000000..13cef1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__101-150.png new file mode 100644 index 0000000..c25e034 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__11-20.png new file mode 100644 index 0000000..9ca488e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__151-175.png new file mode 100644 index 0000000..45359b0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__176-200.png new file mode 100644 index 0000000..2fa4278 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__201-250.png new file mode 100644 index 0000000..f440367 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__21-30.png new file mode 100644 index 0000000..6f6eb17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__251plus.png new file mode 100644 index 0000000..2651cfa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__31-40.png new file mode 100644 index 0000000..8c6d25a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__41-50.png new file mode 100644 index 0000000..225b3c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__51-65.png new file mode 100644 index 0000000..83c4e5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__66.png new file mode 100644 index 0000000..bede076 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__67-70.png new file mode 100644 index 0000000..4a071e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__71-80.png new file mode 100644 index 0000000..ac85f6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__81-90.png new file mode 100644 index 0000000..997c86e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__91-95.png new file mode 100644 index 0000000..a1d954f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__96-98.png new file mode 100644 index 0000000..c074395 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__99-100.png new file mode 100644 index 0000000..535a282 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__normal__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__01-05.png new file mode 100644 index 0000000..a058c14 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__06-10.png new file mode 100644 index 0000000..acff183 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__101-150.png new file mode 100644 index 0000000..84aa5b7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__11-20.png new file mode 100644 index 0000000..c12d126 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__151-175.png new file mode 100644 index 0000000..7e1f431 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__176-200.png new file mode 100644 index 0000000..699d39f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__201-250.png new file mode 100644 index 0000000..45faf5e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__21-30.png new file mode 100644 index 0000000..a7680f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__251plus.png new file mode 100644 index 0000000..e5f6a0f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__31-40.png new file mode 100644 index 0000000..b7a56d6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__41-50.png new file mode 100644 index 0000000..f4e80ec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__51-65.png new file mode 100644 index 0000000..dd0113c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__66.png new file mode 100644 index 0000000..1af1ee5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__67-70.png new file mode 100644 index 0000000..5c80151 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__71-80.png new file mode 100644 index 0000000..af493be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__81-90.png new file mode 100644 index 0000000..0550069 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__91-95.png new file mode 100644 index 0000000..49c2895 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__96-98.png new file mode 100644 index 0000000..42a4dbc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__99-100.png new file mode 100644 index 0000000..42a0627 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/large__slaying__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__01-05.png new file mode 100644 index 0000000..7eb187d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__06-10.png new file mode 100644 index 0000000..397afe1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__101-150.png new file mode 100644 index 0000000..c330721 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__11-20.png new file mode 100644 index 0000000..cac0d3c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__151-175.png new file mode 100644 index 0000000..9479bc7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__176-200.png new file mode 100644 index 0000000..5f12973 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__201-250.png new file mode 100644 index 0000000..4122d60 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__21-30.png new file mode 100644 index 0000000..f6f2747 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__251plus.png new file mode 100644 index 0000000..6d4f492 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__31-40.png new file mode 100644 index 0000000..75808f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__41-50.png new file mode 100644 index 0000000..68a03df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__51-65.png new file mode 100644 index 0000000..34879c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__66.png new file mode 100644 index 0000000..76623fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__67-70.png new file mode 100644 index 0000000..b736f6b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__71-80.png new file mode 100644 index 0000000..e308b21 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__81-90.png new file mode 100644 index 0000000..d5531fb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__91-95.png new file mode 100644 index 0000000..5294e3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__96-98.png new file mode 100644 index 0000000..48b237f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__99-100.png new file mode 100644 index 0000000..d20128b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__normal__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__01-05.png new file mode 100644 index 0000000..d6302c4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__06-10.png new file mode 100644 index 0000000..7314eba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__101-150.png new file mode 100644 index 0000000..40baaf9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__11-20.png new file mode 100644 index 0000000..9a7e5b9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__151-175.png new file mode 100644 index 0000000..d8fe88c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__176-200.png new file mode 100644 index 0000000..ace404f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__201-250.png new file mode 100644 index 0000000..28894b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__21-30.png new file mode 100644 index 0000000..d0eae30 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__251plus.png new file mode 100644 index 0000000..3e4b00c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__31-40.png new file mode 100644 index 0000000..44b5c3c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__41-50.png new file mode 100644 index 0000000..d78b597 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__51-65.png new file mode 100644 index 0000000..5b29163 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__66.png new file mode 100644 index 0000000..c7efcec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__67-70.png new file mode 100644 index 0000000..0d434b8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__71-80.png new file mode 100644 index 0000000..063f5d6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__81-90.png new file mode 100644 index 0000000..e395452 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__91-95.png new file mode 100644 index 0000000..c66d2bf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__96-98.png new file mode 100644 index 0000000..b097eb3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__99-100.png new file mode 100644 index 0000000..1f73a83 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/cells/super_large__slaying__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/fragments.json new file mode 100644 index 0000000..9de9eeb --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/fragments.json @@ -0,0 +1,3082 @@ +[ + { + "PageNumber": 1, + "Top": 1145, + "Left": 103, + "Width": 18, + "Height": 8, + "Text": "Key:", + "Confidence": null, + "CenterX": 112 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 130, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 134, + "Width": 9, + "Height": 9, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 143, + "Width": 82, + "Height": 8, + "Text": "= must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 234, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 239, + "Width": 9, + "Height": 9, + "Text": "\u220F", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 249, + "Width": 86, + "Height": 8, + "Text": "= no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 292 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 344, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 348, + "Width": 16, + "Height": 9, + "Text": "\u2211 =", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 364, + "Width": 79, + "Height": 8, + "Text": "stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 452, + "Width": 5, + "Height": 8, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 454.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 457, + "Width": 7, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 464, + "Width": 88, + "Height": 8, + "Text": "= bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 561, + "Width": 90, + "Height": 8, + "Text": "(-\u00DF) = foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 1145, + "Left": 660, + "Width": 125, + "Height": 8, + "Text": "(\u002B\u00DF) = attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 1142, + "Left": 837, + "Width": 17, + "Height": 13, + "Text": "93", + "Confidence": null, + "CenterX": 845.5 + }, + { + "PageNumber": 1, + "Top": 131, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "01-05", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 120, + "Left": 189, + "Width": 152, + "Height": 8, + "Text": "Your karma is not strong enough to damage", + "Confidence": null, + "CenterX": 265 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 189, + "Width": 47, + "Height": 8, + "Text": "such a beast.", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 120, + "Left": 361, + "Width": 115, + "Height": 8, + "Text": "Sparks fly. The enchantment fails.", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 361, + "Width": 114, + "Height": 8, + "Text": "You had hoped for more damage.", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 120, + "Left": 534, + "Width": 146, + "Height": 8, + "Text": "The strength of your strike is not up to the", + "Confidence": null, + "CenterX": 607 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 534, + "Width": 34, + "Height": 8, + "Text": "challange.", + "Confidence": null, + "CenterX": 551 + }, + { + "PageNumber": 1, + "Top": 120, + "Left": 707, + "Width": 165, + "Height": 8, + "Text": "You warn foe of his doom with this tiny whisper", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 707, + "Width": 50, + "Height": 8, + "Text": "of your power.", + "Confidence": null, + "CenterX": 732 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 340, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 512, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 519 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 857, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 864 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "06-10", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 189, + "Width": 151, + "Height": 8, + "Text": "It looked powerful but your foe did not even", + "Confidence": null, + "CenterX": 264.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 189, + "Width": 29, + "Height": 8, + "Text": "stumble.", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 361, + "Width": 150, + "Height": 8, + "Text": "Foe throws off the magic that threatens his", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 361, + "Width": 50, + "Height": 8, + "Text": "very existance.", + "Confidence": null, + "CenterX": 386 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 534, + "Width": 151, + "Height": 8, + "Text": "Strike lands with little result. You had better", + "Confidence": null, + "CenterX": 609.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 534, + "Width": 59, + "Height": 8, + "Text": "get serious soon.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 170, + "Left": 707, + "Width": 155, + "Height": 8, + "Text": "Foe evades much of the damage. Maybe next", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 707, + "Width": 19, + "Height": 8, + "Text": "time.", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 340, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 512, + "Width": 14, + "Height": 8, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 519 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 200, + "Left": 857, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 864 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "11-20", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 189, + "Width": 157, + "Height": 8, + "Text": "You are daunted by the beast\u0027s gaze and your", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 189, + "Width": 31, + "Height": 8, + "Text": "aim fails.", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 361, + "Width": 152, + "Height": 8, + "Text": "Strike lands solid. Foe howls out in pain and", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 361, + "Width": 22, + "Height": 8, + "Text": "anger!", + "Confidence": null, + "CenterX": 372 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 534, + "Width": 153, + "Height": 8, + "Text": "The beast is made of stronger stuff than you", + "Confidence": null, + "CenterX": 610.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 534, + "Width": 23, + "Height": 8, + "Text": "hoped.", + "Confidence": null, + "CenterX": 545.5 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 707, + "Width": 137, + "Height": 8, + "Text": "Your blast scrapes along foe\u0027s shoulder", + "Confidence": null, + "CenterX": 775.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 707, + "Width": 100, + "Height": 8, + "Text": "hissing as it touches his skin.", + "Confidence": null, + "CenterX": 757 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 340, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 857, + "Width": 14, + "Height": 8, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 864 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "21-30", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 189, + "Width": 141, + "Height": 8, + "Text": "The strike is powerful, but poorly placed.", + "Confidence": null, + "CenterX": 259.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 189, + "Width": 64, + "Height": 8, + "Text": "Remember, Focus.", + "Confidence": null, + "CenterX": 221 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 361, + "Width": 159, + "Height": 8, + "Text": "Chest strike leaves visible damage. Foe makes", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 361, + "Width": 101, + "Height": 8, + "Text": "a futile attempt to brush it off.", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 534, + "Width": 133, + "Height": 8, + "Text": "Strike glances off foe and damages his", + "Confidence": null, + "CenterX": 600.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 534, + "Width": 48, + "Height": 8, + "Text": "surroundings.", + "Confidence": null, + "CenterX": 558 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 707, + "Width": 152, + "Height": 8, + "Text": "Your strike is solid and flat, foe is burned by", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 707, + "Width": 59, + "Height": 8, + "Text": "the enchantment.", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 340, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "31-40", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 311, + "Left": 189, + "Width": 157, + "Height": 8, + "Text": ".The attack lands well but seems only to scuff", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 311, + "Left": 361, + "Width": 123, + "Height": 8, + "Text": "Firm strike to foe\u0027s lower abdomen.", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 361, + "Width": 122, + "Height": 8, + "Text": "Measurable damage has been done.", + "Confidence": null, + "CenterX": 422 + }, + { + "PageNumber": 1, + "Top": 311, + "Left": 534, + "Width": 148, + "Height": 8, + "Text": "Solid, but nowhere near a vital spot. Bruise", + "Confidence": null, + "CenterX": 608 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 534, + "Width": 59, + "Height": 8, + "Text": "foe\u0027s calf muscle.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 311, + "Left": 707, + "Width": 155, + "Height": 8, + "Text": "Heavy assault yields a measure of damage to", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 707, + "Width": 31, + "Height": 8, + "Text": "foe\u0027s leg.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 340, + "Width": 14, + "Height": 8, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 127, + "Width": 49, + "Height": 16, + "Text": "41- 50", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 189, + "Width": 134, + "Height": 8, + "Text": "Solid attack yields predictable damage.", + "Confidence": null, + "CenterX": 256 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 362, + "Width": 163, + "Height": 8, + "Text": "Your assault entangles foe\u0027s arm for an instant.", + "Confidence": null, + "CenterX": 443.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 361, + "Width": 54, + "Height": 8, + "Text": "Arm is bruised.", + "Confidence": null, + "CenterX": 388 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 534, + "Width": 154, + "Height": 8, + "Text": "Blow is placed solidly against foe\u0027s side. His", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 534, + "Width": 80, + "Height": 8, + "Text": "vitals are beyond reach.", + "Confidence": null, + "CenterX": 574 + }, + { + "PageNumber": 1, + "Top": 357, + "Left": 707, + "Width": 162, + "Height": 8, + "Text": "Strike tears down foe\u0027s back. He ducts down in", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "51-65", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 189, + "Width": 112, + "Height": 8, + "Text": "Weak attack to a vulnerable spot.", + "Confidence": null, + "CenterX": 245 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 189, + "Width": 108, + "Height": 8, + "Text": "Foe is enraged by the close call.", + "Confidence": null, + "CenterX": 243 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 361, + "Width": 148, + "Height": 8, + "Text": "Blow to foe\u0027s back. Foe\u0027s hide is tough, but", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 361, + "Width": 77, + "Height": 8, + "Text": "much damage is done.", + "Confidence": null, + "CenterX": 399.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 534, + "Width": 163, + "Height": 8, + "Text": "Strike threatens foe\u0027s eyes and he flinches. You", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 534, + "Width": 48, + "Height": 8, + "Text": "have initiative.", + "Confidence": null, + "CenterX": 558 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 707, + "Width": 161, + "Height": 8, + "Text": "Blast to foe\u0027s face. Most of the damage misses", + "Confidence": null, + "CenterX": 787.5 + }, + { + "PageNumber": 1, + "Top": 414, + "Left": 707, + "Width": 71, + "Height": 8, + "Text": "him. Some does not.", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B13H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 685, + "Width": 14, + "Height": 8, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 466, + "Left": 142, + "Width": 19, + "Height": 16, + "Text": "66", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 189, + "Width": 157, + "Height": 8, + "Text": "Blast drives into foe\u0027s mouth. The concussion", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 460, + "Left": 189, + "Width": 162, + "Height": 8, + "Text": "knocks him down and puts him into a coma for", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 189, + "Width": 30, + "Height": 8, + "Text": "a month.", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 361, + "Width": 163, + "Height": 8, + "Text": "Assaulting foe\u0027s very living essence, your strike", + "Confidence": null, + "CenterX": 442.5 + }, + { + "PageNumber": 1, + "Top": 460, + "Left": 361, + "Width": 156, + "Height": 8, + "Text": "lands upon his head. His life is stripped from", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 361, + "Width": 75, + "Height": 8, + "Text": "him. He dies instantly.", + "Confidence": null, + "CenterX": 398.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 534, + "Width": 159, + "Height": 8, + "Text": "You find a weak point. Unexpectedly, foe reels", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 460, + "Left": 534, + "Width": 154, + "Height": 8, + "Text": "and falls down. His shoulder is shattered. He", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 534, + "Width": 51, + "Height": 8, + "Text": "gets up slowly.", + "Confidence": null, + "CenterX": 559.5 + }, + { + "PageNumber": 1, + "Top": 450, + "Left": 707, + "Width": 151, + "Height": 8, + "Text": "Collapse foe\u0027s chest with perfect placement.", + "Confidence": null, + "CenterX": 782.5 + }, + { + "PageNumber": 1, + "Top": 460, + "Left": 707, + "Width": 163, + "Height": 8, + "Text": "His lungs are destroyed and his heart stops. He", + "Confidence": null, + "CenterX": 788.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 707, + "Width": 109, + "Height": 8, + "Text": "dies after 6 rounds of wheezing.", + "Confidence": null, + "CenterX": 761.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 508, + "Width": 19, + "Height": 8, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 517.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 655, + "Width": 44, + "Height": 8, + "Text": "\u002B25H \u2013 (-75)", + "Confidence": null, + "CenterX": 677 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 523, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "67-70", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 508, + "Left": 189, + "Width": 155, + "Height": 8, + "Text": "Solid strike on foe\u0027s leg. Foe feels the assault.", + "Confidence": null, + "CenterX": 266.5 + }, + { + "PageNumber": 1, + "Top": 518, + "Left": 189, + "Width": 20, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 508, + "Left": 361, + "Width": 129, + "Height": 8, + "Text": "Attack hammers foe in his shield side.", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 518, + "Left": 361, + "Width": 68, + "Height": 8, + "Text": "He is in much pain .", + "Confidence": null, + "CenterX": 395 + }, + { + "PageNumber": 1, + "Top": 508, + "Left": 534, + "Width": 161, + "Height": 8, + "Text": "Although not deadly, this strike leaves a visible", + "Confidence": null, + "CenterX": 614.5 + }, + { + "PageNumber": 1, + "Top": 518, + "Left": 534, + "Width": 145, + "Height": 8, + "Text": "and encouraging wound. You may win yet.", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 508, + "Left": 707, + "Width": 134, + "Height": 8, + "Text": "Assault bounces off foe\u0027s primary arm.", + "Confidence": null, + "CenterX": 774 + }, + { + "PageNumber": 1, + "Top": 518, + "Left": 707, + "Width": 141, + "Height": 8, + "Text": "Arm is damaged but still functioning. Try", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 707, + "Width": 20, + "Height": 8, + "Text": "again.", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 548, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 548, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 548, + "Left": 681, + "Width": 18, + "Height": 8, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 548, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 580, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "71-80", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 189, + "Width": 155, + "Height": 8, + "Text": "Solid strike to foe\u0027s head hurts him, but he is", + "Confidence": null, + "CenterX": 266.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 189, + "Width": 158, + "Height": 8, + "Text": "still coming. If foe has head gear it is knocked", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 189, + "Width": 11, + "Height": 8, + "Text": "off.", + "Confidence": null, + "CenterX": 194.5 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 361, + "Width": 145, + "Height": 8, + "Text": "Etch a nasty wound in foe\u0027s chest over his", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 361, + "Width": 153, + "Height": 8, + "Text": "vitals. He is upset greatly. You have initiative", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 585, + "Left": 361, + "Width": 44, + "Height": 8, + "Text": "for 6 rounds.", + "Confidence": null, + "CenterX": 383 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 534, + "Width": 148, + "Height": 8, + "Text": "Blow to foe\u0027s upper arm. Discoloration and", + "Confidence": null, + "CenterX": 608 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 534, + "Width": 120, + "Height": 8, + "Text": "various bruises mark your success.", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 565, + "Left": 707, + "Width": 162, + "Height": 8, + "Text": "Solid strike to the chest. Foe steps back 10 feet", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 707, + "Width": 49, + "Height": 8, + "Text": "and rebounds.", + "Confidence": null, + "CenterX": 731.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 487, + "Width": 40, + "Height": 8, + "Text": "\u002B12H \u2013 3\u2211", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 681, + "Width": 18, + "Height": 8, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "81-90", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 621, + "Left": 189, + "Width": 162, + "Height": 8, + "Text": "Strong blast staggers your terrible foe. He is as", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 631, + "Left": 189, + "Width": 157, + "Height": 8, + "Text": "surprised as you are at this success. He loses", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 189, + "Width": 72, + "Height": 8, + "Text": "6 rounds of initiative.", + "Confidence": null, + "CenterX": 225 + }, + { + "PageNumber": 1, + "Top": 621, + "Left": 361, + "Width": 153, + "Height": 8, + "Text": "Blow to foe\u0027s arm joint lands poorly. Foe will", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 631, + "Left": 361, + "Width": 156, + "Height": 8, + "Text": "have a bruise. You think you know what went", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 361, + "Width": 24, + "Height": 8, + "Text": "wrong.", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 621, + "Left": 534, + "Width": 155, + "Height": 8, + "Text": "Your strike hit no vitals, but you can hear the", + "Confidence": null, + "CenterX": 611.5 + }, + { + "PageNumber": 1, + "Top": 631, + "Left": 534, + "Width": 162, + "Height": 8, + "Text": "ribs in foe\u0027s side crackle. Foe fights on in some", + "Confidence": null, + "CenterX": 615 + }, + { + "PageNumber": 1, + "Top": 641, + "Left": 534, + "Width": 17, + "Height": 8, + "Text": "pain.", + "Confidence": null, + "CenterX": 542.5 + }, + { + "PageNumber": 1, + "Top": 621, + "Left": 707, + "Width": 145, + "Height": 8, + "Text": "Sparks fly and smoke rises off foe as your", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 631, + "Left": 707, + "Width": 55, + "Height": 8, + "Text": "assault impacts.", + "Confidence": null, + "CenterX": 734.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 314, + "Width": 42, + "Height": 8, + "Text": "\u002B15H \u2013 3\u2211", + "Confidence": null, + "CenterX": 335 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 487, + "Width": 40, + "Height": 8, + "Text": "\u002B25H \u2013 3\u2211", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 681, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 695, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "91-95", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 189, + "Width": 153, + "Height": 8, + "Text": "Hard and effective, your strike almost brings", + "Confidence": null, + "CenterX": 265.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 189, + "Width": 139, + "Height": 8, + "Text": "foe down. He stumbles, but does not fall.", + "Confidence": null, + "CenterX": 258.5 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 361, + "Width": 152, + "Height": 8, + "Text": "You concentrate the energy of the strike and", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 361, + "Width": 78, + "Height": 8, + "Text": "fracture foe\u0027s leg bone.", + "Confidence": null, + "CenterX": 400 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 534, + "Width": 157, + "Height": 8, + "Text": "Heavy and hard. Your strike is effective. Foe\u0027s", + "Confidence": null, + "CenterX": 612.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 534, + "Width": 75, + "Height": 8, + "Text": "abdomen is damaged.", + "Confidence": null, + "CenterX": 571.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 534, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 543 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 707, + "Width": 158, + "Height": 8, + "Text": "Your attack lands with a beautiful crash. Foe\u0027s", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 707, + "Width": 79, + "Height": 8, + "Text": "leg is heavily damaged.", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 707, + "Width": 127, + "Height": 8, + "Text": "He struggles to keeps his defense up.", + "Confidence": null, + "CenterX": 770.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 307, + "Width": 47, + "Height": 8, + "Text": "\u002B20H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 481, + "Width": 45, + "Height": 8, + "Text": "2\u2211\u03C0 \u2013 (-30)", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 681, + "Width": 18, + "Height": 8, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 824, + "Width": 47, + "Height": 8, + "Text": "\u002B25H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 847.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 130, + "Width": 44, + "Height": 16, + "Text": "96-98", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 735, + "Left": 189, + "Width": 150, + "Height": 8, + "Text": "Strike lands and tears down into foe\u0027s neck.", + "Confidence": null, + "CenterX": 264 + }, + { + "PageNumber": 1, + "Top": 745, + "Left": 189, + "Width": 141, + "Height": 8, + "Text": "This vicious blast crushes foe\u0027s neck and", + "Confidence": null, + "CenterX": 259.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 189, + "Width": 158, + "Height": 8, + "Text": "shatters his spine. He falls unmoving and dies", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 189, + "Width": 41, + "Height": 8, + "Text": "in 3 rounds.", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 735, + "Left": 361, + "Width": 152, + "Height": 8, + "Text": "You are a mighty enchanter. Your strike hits", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 745, + "Left": 361, + "Width": 155, + "Height": 8, + "Text": "foe\u0027s chest and neck. His neck is broken. Foe", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 361, + "Width": 52, + "Height": 8, + "Text": "drops and dies.", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 735, + "Left": 534, + "Width": 160, + "Height": 8, + "Text": "Your onslaught lands against foe\u0027s skull. Brain", + "Confidence": null, + "CenterX": 614 + }, + { + "PageNumber": 1, + "Top": 745, + "Left": 534, + "Width": 153, + "Height": 8, + "Text": "is damaged. Swelling fractures his skull. Foe", + "Confidence": null, + "CenterX": 610.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 534, + "Width": 93, + "Height": 8, + "Text": "drops and dies in 6 rounds.", + "Confidence": null, + "CenterX": 580.5 + }, + { + "PageNumber": 1, + "Top": 735, + "Left": 707, + "Width": 153, + "Height": 8, + "Text": "Shot lands against foe\u0027s chest. Strike infests", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 745, + "Left": 707, + "Width": 162, + "Height": 8, + "Text": "foe with terminal poison. The full burden of the", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 707, + "Width": 120, + "Height": 8, + "Text": "enchantment ends his life instantly.", + "Confidence": null, + "CenterX": 767 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 349, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 508, + "Width": 19, + "Height": 8, + "Text": "(\u002B15)", + "Confidence": null, + "CenterX": 517.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 694, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 696 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 866, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 868 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 137, + "Width": 30, + "Height": 16, + "Text": "99-", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 137, + "Width": 29, + "Height": 16, + "Text": "100", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 189, + "Width": 158, + "Height": 8, + "Text": "You step into the right spot and rip open foe\u0027s", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 813, + "Left": 189, + "Width": 161, + "Height": 8, + "Text": "side. Your blow shatters some ribs. Foe dies in", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 823, + "Left": 189, + "Width": 58, + "Height": 8, + "Text": "6 painful rounds.", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 802, + "Left": 361, + "Width": 151, + "Height": 8, + "Text": "Perfect aim. Foe\u0027s carotid artery and jugular", + "Confidence": null, + "CenterX": 436.5 + }, + { + "PageNumber": 1, + "Top": 813, + "Left": 361, + "Width": 149, + "Height": 8, + "Text": "vein are torn open. Foe drops and dies in 3", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 823, + "Left": 361, + "Width": 26, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 374 + }, + { + "PageNumber": 1, + "Top": 803, + "Left": 534, + "Width": 156, + "Height": 8, + "Text": "Violent strike to foe\u0027s face. His eyes are badly", + "Confidence": null, + "CenterX": 612 + }, + { + "PageNumber": 1, + "Top": 813, + "Left": 534, + "Width": 82, + "Height": 8, + "Text": "damaged. He is blinded.", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 823, + "Left": 534, + "Width": 112, + "Height": 8, + "Text": "He falls over. You have him now.", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 803, + "Left": 707, + "Width": 152, + "Height": 8, + "Text": "Blast to foe\u0027s head. Inner ear destroyed. Foe", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 813, + "Left": 707, + "Width": 85, + "Height": 8, + "Text": "dies in 6 inactive rounds.", + "Confidence": null, + "CenterX": 749.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 349, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 521, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 523 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 649, + "Width": 50, + "Height": 8, + "Text": "12\u2211\u220F \u2013 (-95)", + "Confidence": null, + "CenterX": 674 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 866, + "Left": 131, + "Width": 39, + "Height": 16, + "Text": "101-", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 137, + "Width": 29, + "Height": 16, + "Text": "150", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 189, + "Width": 157, + "Height": 8, + "Text": "Glancing strike to foe\u0027s abdomen loses much", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 189, + "Width": 93, + "Height": 8, + "Text": "of the impact on foe\u0027s hide.", + "Confidence": null, + "CenterX": 235.5 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 361, + "Width": 152, + "Height": 8, + "Text": "Side strike. Attack careens down foe\u0027s chest", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 361, + "Width": 138, + "Height": 8, + "Text": "and leg. Skin is torn away. Foe roars his", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 880, + "Left": 361, + "Width": 30, + "Height": 8, + "Text": "defiance.", + "Confidence": null, + "CenterX": 376 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 534, + "Width": 153, + "Height": 8, + "Text": "Titanic blast sends foe stumbling despite his", + "Confidence": null, + "CenterX": 610.5 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 534, + "Width": 141, + "Height": 8, + "Text": "bulk. He is unable to defend himself for a", + "Confidence": null, + "CenterX": 604.5 + }, + { + "PageNumber": 1, + "Top": 880, + "Left": 534, + "Width": 30, + "Height": 8, + "Text": "moment.", + "Confidence": null, + "CenterX": 549 + }, + { + "PageNumber": 1, + "Top": 860, + "Left": 707, + "Width": 141, + "Height": 8, + "Text": "Foe stumbles 10 feet to his right with the", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 707, + "Width": 132, + "Height": 8, + "Text": "impact of your attack. He is vulnerable.", + "Confidence": null, + "CenterX": 773 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 307, + "Width": 47, + "Height": 8, + "Text": "\u002B30H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 479, + "Width": 47, + "Height": 8, + "Text": "\u002B35H \u2013 5\u2211\u220F", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 652, + "Width": 49, + "Height": 8, + "Text": "\u002B30H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 676.5 + }, + { + "PageNumber": 1, + "Top": 899, + "Left": 824, + "Width": 47, + "Height": 8, + "Text": "\u002B35H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 847.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 131, + "Width": 39, + "Height": 16, + "Text": "151-", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 137, + "Width": 29, + "Height": 16, + "Text": "175", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 189, + "Width": 156, + "Height": 8, + "Text": "Your weapon wounds deep and cuts muscles", + "Confidence": null, + "CenterX": 267 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 189, + "Width": 44, + "Height": 8, + "Text": "and tendons.", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 361, + "Width": 157, + "Height": 8, + "Text": "Fracture a bone in foe\u0027s forearm. It twists in a", + "Confidence": null, + "CenterX": 439.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 361, + "Width": 123, + "Height": 8, + "Text": "painful direction. His guard is down.", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 534, + "Width": 159, + "Height": 8, + "Text": "Side strike. Foe steps to the side and takes the", + "Confidence": null, + "CenterX": 613.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 534, + "Width": 128, + "Height": 8, + "Text": "damage in his ribs. Bones are broken.", + "Confidence": null, + "CenterX": 598 + }, + { + "PageNumber": 1, + "Top": 916, + "Left": 707, + "Width": 146, + "Height": 8, + "Text": "Blast breaks bones and causes bleeding in", + "Confidence": null, + "CenterX": 780 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 707, + "Width": 100, + "Height": 8, + "Text": "foe\u0027s leg. He can still operate.", + "Confidence": null, + "CenterX": 757 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 308, + "Width": 46, + "Height": 8, + "Text": "5\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 454, + "Width": 73, + "Height": 8, + "Text": "\u002B40H \u2013 6\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 490.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 653, + "Width": 46, + "Height": 8, + "Text": "4\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 676 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 836, + "Width": 35, + "Height": 8, + "Text": "5\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 853.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 131, + "Width": 39, + "Height": 16, + "Text": "176-", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 988, + "Left": 137, + "Width": 29, + "Height": 16, + "Text": "200", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 189, + "Width": 159, + "Height": 8, + "Text": "Foe presents a weak spot and you strike. Blow", + "Confidence": null, + "CenterX": 268.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 189, + "Width": 145, + "Height": 8, + "Text": "lands at the base of the neck. Tendons are", + "Confidence": null, + "CenterX": 261.5 + }, + { + "PageNumber": 1, + "Top": 984, + "Left": 189, + "Width": 33, + "Height": 8, + "Text": "damaged.", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 361, + "Width": 131, + "Height": 8, + "Text": "He is knocked down and out. Ribs are", + "Confidence": null, + "CenterX": 426.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 361, + "Width": 145, + "Height": 8, + "Text": "shattered. The concussion causes internal", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 984, + "Left": 361, + "Width": 31, + "Height": 8, + "Text": "bleeding.", + "Confidence": null, + "CenterX": 376.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 534, + "Width": 145, + "Height": 8, + "Text": "Mighty is your strike. Its your turn to give.", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 534, + "Width": 160, + "Height": 8, + "Text": "Foe\u0027s chest tears open and blood sprays on all", + "Confidence": null, + "CenterX": 614 + }, + { + "PageNumber": 1, + "Top": 984, + "Left": 534, + "Width": 40, + "Height": 8, + "Text": "bystanders.", + "Confidence": null, + "CenterX": 554 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 707, + "Width": 151, + "Height": 8, + "Text": "Epic assault to foe\u0027s side sends foe onto his", + "Confidence": null, + "CenterX": 782.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 707, + "Width": 87, + "Height": 8, + "Text": "back. Wounds are severe.", + "Confidence": null, + "CenterX": 750.5 + }, + { + "PageNumber": 1, + "Top": 984, + "Left": 707, + "Width": 115, + "Height": 8, + "Text": "Internal bleeding. He is in trouble.", + "Confidence": null, + "CenterX": 764.5 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 288, + "Width": 66, + "Height": 8, + "Text": "\u002B35H \u2013 (-35) \u2013 10\u222B", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 487, + "Width": 39, + "Height": 8, + "Text": "10\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 638, + "Width": 62, + "Height": 8, + "Text": "\u002B30H \u2013 5\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 669 + }, + { + "PageNumber": 1, + "Top": 1004, + "Left": 806, + "Width": 66, + "Height": 8, + "Text": "\u002B40H \u2013 10\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 839 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 131, + "Width": 39, + "Height": 16, + "Text": "201-", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 1044, + "Left": 137, + "Width": 29, + "Height": 16, + "Text": "250", + "Confidence": null, + "CenterX": 151.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 189, + "Width": 155, + "Height": 8, + "Text": "When your strike lands on foe\u0027s back, bones", + "Confidence": null, + "CenterX": 266.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 189, + "Width": 150, + "Height": 8, + "Text": "crackle and pop. Foe is paralyzed and in a 3", + "Confidence": null, + "CenterX": 264 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 189, + "Width": 65, + "Height": 8, + "Text": "month coma \u002B50H.", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 361, + "Width": 154, + "Height": 8, + "Text": "Assault causes mortal damage. Foe\u0027s organs", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 361, + "Width": 142, + "Height": 8, + "Text": "fail. He is inacitve and dies after 3 rounds.", + "Confidence": null, + "CenterX": 432 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 534, + "Width": 152, + "Height": 8, + "Text": "Snap foe\u0027s head back and fracture his spine.", + "Confidence": null, + "CenterX": 610 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 534, + "Width": 126, + "Height": 8, + "Text": "Foe is paralyzed from the neck down.", + "Confidence": null, + "CenterX": 597 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 707, + "Width": 141, + "Height": 8, + "Text": "Hammer foe\u0027s neck and face. The energy", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 707, + "Width": 154, + "Height": 8, + "Text": "engulfs his throat. Nerves are destroyed. Foe", + "Confidence": null, + "CenterX": 784 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 707, + "Width": 94, + "Height": 8, + "Text": "dies after 9 inactive rounds.", + "Confidence": null, + "CenterX": 754 + }, + { + "PageNumber": 1, + "Top": 1060, + "Left": 349, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 1060, + "Left": 508, + "Width": 18, + "Height": 8, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 1060, + "Left": 681, + "Width": 18, + "Height": 8, + "Text": "\u002B40H", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 1060, + "Left": 853, + "Width": 18, + "Height": 8, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 131, + "Width": 39, + "Height": 16, + "Text": "251\u002B", + "Confidence": null, + "CenterX": 150.5 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 189, + "Width": 159, + "Height": 8, + "Text": "Foe lowers his eyes within your reach and you", + "Confidence": null, + "CenterX": 268.5 + }, + { + "PageNumber": 1, + "Top": 1087, + "Left": 189, + "Width": 135, + "Height": 8, + "Text": "strike with great skill and fury. Foe dies", + "Confidence": null, + "CenterX": 256.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 189, + "Width": 31, + "Height": 8, + "Text": "instantly.", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 361, + "Width": 148, + "Height": 8, + "Text": "Impact of blast drives content of skull in all", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 1087, + "Left": 361, + "Width": 159, + "Height": 8, + "Text": "directions. Foe falls and flails around violently.", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 361, + "Width": 58, + "Height": 8, + "Text": "He dies instantly.", + "Confidence": null, + "CenterX": 390 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 534, + "Width": 162, + "Height": 8, + "Text": "Shatter parts of foe\u0027s skeleton. Heart and lungs", + "Confidence": null, + "CenterX": 615 + }, + { + "PageNumber": 1, + "Top": 1087, + "Left": 534, + "Width": 97, + "Height": 8, + "Text": "are damaged. Foe falls dead.", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 534, + "Width": 118, + "Height": 8, + "Text": "His blood pours out onto the floor.", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 707, + "Width": 160, + "Height": 8, + "Text": "Blast goes in through foe\u0027s eye and comes out", + "Confidence": null, + "CenterX": 787 + }, + { + "PageNumber": 1, + "Top": 1087, + "Left": 707, + "Width": 162, + "Height": 8, + "Text": "ugly. Foe dies instantly. His terrible bulk comes", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 707, + "Width": 52, + "Height": 8, + "Text": "crashing down.", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 336, + "Width": 18, + "Height": 8, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 521, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 523 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 694, + "Width": 4, + "Height": 8, + "Text": "\u2013", + "Confidence": null, + "CenterX": 696 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 853, + "Width": 19, + "Height": 8, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 254, + "Width": 207, + "Height": 14, + "Text": "Large Creatures", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 564, + "Width": 281, + "Height": 14, + "Text": "Super Large Creatures", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 573, + "Width": 85, + "Height": 12, + "Text": "Normal", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 228, + "Width": 85, + "Height": 12, + "Text": "Normal", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 402, + "Width": 81, + "Height": 12, + "Text": "SLAYING", + "Confidence": null, + "CenterX": 442.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 741, + "Width": 81, + "Height": 12, + "Text": "SLAYING", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 38, + "Left": 327, + "Width": 308, + "Height": 19, + "Text": "6.5 CREATURE CRITICAL STRIKES", + "Confidence": null, + "CenterX": 481 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 202, + "Width": 583, + "Height": 18, + "Text": "SPELLS AGAINST CREATURES CRITICAL STRIKE TABLE A-10.10.9", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 188, + "Width": 71, + "Height": 8, + "Text": "scuff your foe\u0027s skin.", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 367, + "Left": 706, + "Width": 79, + "Height": 8, + "Text": "He ducks down in pain.", + "Confidence": null, + "CenterX": 745.5 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 222, + "Width": 553, + "Height": 19, + "Text": "14.5 SPELLS AGAINST CREATURES CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 498.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/pages/page-001.png new file mode 100644 index 0000000..03d7b8a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/parsed-cells.json new file mode 100644 index 0000000..fa406b0 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/parsed-cells.json @@ -0,0 +1,4765 @@ +[ + { + "GroupKey": "large", + "RollBandLabel": "01-05", + "ColumnKey": "NORMAL", + "Lines": [ + "Your karma is not strong enough to damage", + "such a beast.", + "\u002B0H" + ], + "BaseLines": [ + "Your karma is not strong enough to damage", + "such a beast.", + "\u002B0H" + ], + "RawCellText": "Your karma is not strong enough to damage\nsuch a beast.\n\u002B0H", + "DescriptionText": "Your karma is not strong enough to damage such a beast.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 120, + "Width": 165, + "Height": 41 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 480, + "BoundsWidth": 660, + "BoundsHeight": 164, + "CropLeft": 708, + "CropTop": 448, + "CropWidth": 756, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "01-05", + "ColumnKey": "SLAYING", + "Lines": [ + "Sparks fly. The enchantment fails.", + "You had hoped for more damage.", + "\u002B5H" + ], + "BaseLines": [ + "Sparks fly. The enchantment fails.", + "You had hoped for more damage.", + "\u002B5H" + ], + "RawCellText": "Sparks fly. The enchantment fails.\nYou had hoped for more damage.\n\u002B5H", + "DescriptionText": "Sparks fly. The enchantment fails. You had hoped for more damage.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 120, + "Width": 165, + "Height": 41 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 480, + "BoundsWidth": 660, + "BoundsHeight": 164, + "CropLeft": 1396, + "CropTop": 448, + "CropWidth": 756, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "01-05", + "ColumnKey": "NORMAL", + "Lines": [ + "The strength of your strike is not up to the", + "challange.", + "\u002B0H" + ], + "BaseLines": [ + "The strength of your strike is not up to the", + "challange.", + "\u002B0H" + ], + "RawCellText": "The strength of your strike is not up to the\nchallange.\n\u002B0H", + "DescriptionText": "The strength of your strike is not up to the challange.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 120, + "Width": 165, + "Height": 41 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 480, + "BoundsWidth": 660, + "BoundsHeight": 164, + "CropLeft": 2088, + "CropTop": 448, + "CropWidth": 756, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "01-05", + "ColumnKey": "SLAYING", + "Lines": [ + "You warn foe of his doom with this tiny whisper", + "of your power.", + "\u002B3H" + ], + "BaseLines": [ + "You warn foe of his doom with this tiny whisper", + "of your power.", + "\u002B3H" + ], + "RawCellText": "You warn foe of his doom with this tiny whisper\nof your power.\n\u002B3H", + "DescriptionText": "You warn foe of his doom with this tiny whisper of your power.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 120, + "Width": 165, + "Height": 41 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 480, + "BoundsWidth": 660, + "BoundsHeight": 164, + "CropLeft": 2780, + "CropTop": 448, + "CropWidth": 756, + "CropHeight": 228, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "06-10", + "ColumnKey": "NORMAL", + "Lines": [ + "It looked powerful but your foe did not even", + "stumble.", + "\u002B1H" + ], + "BaseLines": [ + "It looked powerful but your foe did not even", + "stumble.", + "\u002B1H" + ], + "RawCellText": "It looked powerful but your foe did not even\nstumble.\n\u002B1H", + "DescriptionText": "It looked powerful but your foe did not even stumble.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 170, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 680, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 708, + "CropTop": 648, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "06-10", + "ColumnKey": "SLAYING", + "Lines": [ + "Foe throws off the magic that threatens his", + "very existance.", + "\u002B9H" + ], + "BaseLines": [ + "Foe throws off the magic that threatens his", + "very existance.", + "\u002B9H" + ], + "RawCellText": "Foe throws off the magic that threatens his\nvery existance.\n\u002B9H", + "DescriptionText": "Foe throws off the magic that threatens his very existance.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 170, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 680, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 1396, + "CropTop": 648, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "06-10", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike lands with little result. You had better", + "get serious soon.", + "\u002B1H" + ], + "BaseLines": [ + "Strike lands with little result. You had better", + "get serious soon.", + "\u002B1H" + ], + "RawCellText": "Strike lands with little result. You had better\nget serious soon.\n\u002B1H", + "DescriptionText": "Strike lands with little result. You had better get serious soon.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 170, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 680, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2088, + "CropTop": 648, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "06-10", + "ColumnKey": "SLAYING", + "Lines": [ + "Foe evades much of the damage. Maybe next", + "time.", + "\u002B5H" + ], + "BaseLines": [ + "Foe evades much of the damage. Maybe next", + "time.", + "\u002B5H" + ], + "RawCellText": "Foe evades much of the damage. Maybe next\ntime.\n\u002B5H", + "DescriptionText": "Foe evades much of the damage. Maybe next time.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 170, + "Width": 164, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 680, + "BoundsWidth": 656, + "BoundsHeight": 152, + "CropLeft": 2780, + "CropTop": 648, + "CropWidth": 752, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "11-20", + "ColumnKey": "NORMAL", + "Lines": [ + "You are daunted by the beast\u0027s gaze and your", + "aim fails.", + "\u002B3H" + ], + "BaseLines": [ + "You are daunted by the beast\u0027s gaze and your", + "aim fails.", + "\u002B3H" + ], + "RawCellText": "You are daunted by the beast\u0027s gaze and your\naim fails.\n\u002B3H", + "DescriptionText": "You are daunted by the beast\u0027s gaze and your aim fails.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 216, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 864, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 708, + "CropTop": 832, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "11-20", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike lands solid. Foe howls out in pain and", + "anger!", + "\u002B12H" + ], + "BaseLines": [ + "Strike lands solid. Foe howls out in pain and", + "anger!", + "\u002B12H" + ], + "RawCellText": "Strike lands solid. Foe howls out in pain and\nanger!\n\u002B12H", + "DescriptionText": "Strike lands solid. Foe howls out in pain and anger!", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 216, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 864, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 1396, + "CropTop": 832, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "11-20", + "ColumnKey": "NORMAL", + "Lines": [ + "The beast is made of stronger stuff than you", + "hoped.", + "\u002B2H" + ], + "BaseLines": [ + "The beast is made of stronger stuff than you", + "hoped.", + "\u002B2H" + ], + "RawCellText": "The beast is made of stronger stuff than you\nhoped.\n\u002B2H", + "DescriptionText": "The beast is made of stronger stuff than you hoped.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 216, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 864, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2088, + "CropTop": 832, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "11-20", + "ColumnKey": "SLAYING", + "Lines": [ + "Your blast scrapes along foe\u0027s shoulder", + "hissing as it touches his skin.", + "\u002B9H" + ], + "BaseLines": [ + "Your blast scrapes along foe\u0027s shoulder", + "hissing as it touches his skin.", + "\u002B9H" + ], + "RawCellText": "Your blast scrapes along foe\u0027s shoulder\nhissing as it touches his skin.\n\u002B9H", + "DescriptionText": "Your blast scrapes along foe\u0027s shoulder hissing as it touches his skin.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 216, + "Width": 164, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 864, + "BoundsWidth": 656, + "BoundsHeight": 152, + "CropLeft": 2780, + "CropTop": 832, + "CropWidth": 752, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "21-30", + "ColumnKey": "NORMAL", + "Lines": [ + "The strike is powerful, but poorly placed.", + "Remember, Focus.", + "\u002B5H" + ], + "BaseLines": [ + "The strike is powerful, but poorly placed.", + "Remember, Focus.", + "\u002B5H" + ], + "RawCellText": "The strike is powerful, but poorly placed.\nRemember, Focus.\n\u002B5H", + "DescriptionText": "The strike is powerful, but poorly placed. Remember, Focus.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 263, + "Width": 165, + "Height": 39 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 1052, + "BoundsWidth": 660, + "BoundsHeight": 156, + "CropLeft": 708, + "CropTop": 1020, + "CropWidth": 756, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "21-30", + "ColumnKey": "SLAYING", + "Lines": [ + "Chest strike leaves visible damage. Foe makes", + "a futile attempt to brush it off.", + "\u002B15H" + ], + "BaseLines": [ + "Chest strike leaves visible damage. Foe makes", + "a futile attempt to brush it off.", + "\u002B15H" + ], + "RawCellText": "Chest strike leaves visible damage. Foe makes\na futile attempt to brush it off.\n\u002B15H", + "DescriptionText": "Chest strike leaves visible damage. Foe makes a futile attempt to brush it off.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 263, + "Width": 165, + "Height": 39 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 1052, + "BoundsWidth": 660, + "BoundsHeight": 156, + "CropLeft": 1396, + "CropTop": 1020, + "CropWidth": 756, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "21-30", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike glances off foe and damages his", + "surroundings.", + "\u002B3H" + ], + "BaseLines": [ + "Strike glances off foe and damages his", + "surroundings.", + "\u002B3H" + ], + "RawCellText": "Strike glances off foe and damages his\nsurroundings.\n\u002B3H", + "DescriptionText": "Strike glances off foe and damages his surroundings.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 263, + "Width": 165, + "Height": 39 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 1052, + "BoundsWidth": 660, + "BoundsHeight": 156, + "CropLeft": 2088, + "CropTop": 1020, + "CropWidth": 756, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "21-30", + "ColumnKey": "SLAYING", + "Lines": [ + "Your strike is solid and flat, foe is burned by", + "the enchantment.", + "\u002B12H" + ], + "BaseLines": [ + "Your strike is solid and flat, foe is burned by", + "the enchantment.", + "\u002B12H" + ], + "RawCellText": "Your strike is solid and flat, foe is burned by\nthe enchantment.\n\u002B12H", + "DescriptionText": "Your strike is solid and flat, foe is burned by the enchantment.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 263, + "Width": 164, + "Height": 39 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 1052, + "BoundsWidth": 656, + "BoundsHeight": 156, + "CropLeft": 2780, + "CropTop": 1020, + "CropWidth": 752, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "31-40", + "ColumnKey": "NORMAL", + "Lines": [ + ".The attack lands well but seems only to scuff", + "scuff your foe\u0027s skin.", + "\u002B7H" + ], + "BaseLines": [ + ".The attack lands well but seems only to scuff", + "scuff your foe\u0027s skin.", + "\u002B7H" + ], + "RawCellText": ".The attack lands well but seems only to scuff\nscuff your foe\u0027s skin.\n\u002B7H", + "DescriptionText": ".The attack lands well but seems only to scuff scuff your foe\u0027s skin.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 188, + "Top": 311, + "Width": 166, + "Height": 37 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 752, + "BoundsTop": 1244, + "BoundsWidth": 664, + "BoundsHeight": 148, + "CropLeft": 704, + "CropTop": 1212, + "CropWidth": 760, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "31-40", + "ColumnKey": "SLAYING", + "Lines": [ + "Firm strike to foe\u0027s lower abdomen.", + "Measurable damage has been done.", + "\u002B18H" + ], + "BaseLines": [ + "Firm strike to foe\u0027s lower abdomen.", + "Measurable damage has been done.", + "\u002B18H" + ], + "RawCellText": "Firm strike to foe\u0027s lower abdomen.\nMeasurable damage has been done.\n\u002B18H", + "DescriptionText": "Firm strike to foe\u0027s lower abdomen. Measurable damage has been done.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 311, + "Width": 165, + "Height": 37 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 1244, + "BoundsWidth": 660, + "BoundsHeight": 148, + "CropLeft": 1396, + "CropTop": 1212, + "CropWidth": 756, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "31-40", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid, but nowhere near a vital spot. Bruise", + "foe\u0027s calf muscle.", + "\u002B5H" + ], + "BaseLines": [ + "Solid, but nowhere near a vital spot. Bruise", + "foe\u0027s calf muscle.", + "\u002B5H" + ], + "RawCellText": "Solid, but nowhere near a vital spot. Bruise\nfoe\u0027s calf muscle.\n\u002B5H", + "DescriptionText": "Solid, but nowhere near a vital spot. Bruise foe\u0027s calf muscle.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 311, + "Width": 165, + "Height": 37 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 1244, + "BoundsWidth": 660, + "BoundsHeight": 148, + "CropLeft": 2088, + "CropTop": 1212, + "CropWidth": 756, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "31-40", + "ColumnKey": "SLAYING", + "Lines": [ + "Heavy assault yields a measure of damage to", + "foe\u0027s leg.", + "\u002B15H" + ], + "BaseLines": [ + "Heavy assault yields a measure of damage to", + "foe\u0027s leg.", + "\u002B15H" + ], + "RawCellText": "Heavy assault yields a measure of damage to\nfoe\u0027s leg.\n\u002B15H", + "DescriptionText": "Heavy assault yields a measure of damage to foe\u0027s leg.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 311, + "Width": 164, + "Height": 37 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 1244, + "BoundsWidth": 656, + "BoundsHeight": 148, + "CropLeft": 2780, + "CropTop": 1212, + "CropWidth": 752, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "41-50", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid attack yields predictable damage.", + "\u002B10H" + ], + "BaseLines": [ + "Solid attack yields predictable damage.", + "\u002B10H" + ], + "RawCellText": "Solid attack yields predictable damage.\n\u002B10H", + "DescriptionText": "Solid attack yields predictable damage.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 357, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 1428, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 708, + "CropTop": 1396, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "41-50", + "ColumnKey": "SLAYING", + "Lines": [ + "Your assault entangles foe\u0027s arm for an instant.", + "Arm is bruised.", + "\u002B20H" + ], + "BaseLines": [ + "Your assault entangles foe\u0027s arm for an instant.", + "Arm is bruised.", + "\u002B20H" + ], + "RawCellText": "Your assault entangles foe\u0027s arm for an instant.\nArm is bruised.\n\u002B20H", + "DescriptionText": "Your assault entangles foe\u0027s arm for an instant. Arm is bruised.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 357, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 1428, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 1396, + "CropTop": 1396, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "41-50", + "ColumnKey": "NORMAL", + "Lines": [ + "Blow is placed solidly against foe\u0027s side. His", + "vitals are beyond reach.", + "\u002B7H" + ], + "BaseLines": [ + "Blow is placed solidly against foe\u0027s side. His", + "vitals are beyond reach.", + "\u002B7H" + ], + "RawCellText": "Blow is placed solidly against foe\u0027s side. His\nvitals are beyond reach.\n\u002B7H", + "DescriptionText": "Blow is placed solidly against foe\u0027s side. His vitals are beyond reach.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 357, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 1428, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2088, + "CropTop": 1396, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "41-50", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike tears down foe\u0027s back. He ducts down in", + "He ducks down in pain.", + "\u002B18H" + ], + "BaseLines": [ + "Strike tears down foe\u0027s back. He ducts down in", + "He ducks down in pain.", + "\u002B18H" + ], + "RawCellText": "Strike tears down foe\u0027s back. He ducts down in\nHe ducks down in pain.\n\u002B18H", + "DescriptionText": "Strike tears down foe\u0027s back. He ducts down in He ducks down in pain.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 706, + "Top": 357, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2824, + "BoundsTop": 1428, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2776, + "CropTop": 1396, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "51-65", + "ColumnKey": "NORMAL", + "Lines": [ + "Weak attack to a vulnerable spot.", + "Foe is enraged by the close call.", + "\u002B13H" + ], + "BaseLines": [ + "Weak attack to a vulnerable spot.", + "Foe is enraged by the close call.", + "\u002B13H" + ], + "RawCellText": "Weak attack to a vulnerable spot.\nFoe is enraged by the close call.\n\u002B13H", + "DescriptionText": "Weak attack to a vulnerable spot. Foe is enraged by the close call.", + "RawAffixText": "\u002B13H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 404, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 1616, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 708, + "CropTop": 1584, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "51-65", + "ColumnKey": "SLAYING", + "Lines": [ + "Blow to foe\u0027s back. Foe\u0027s hide is tough, but", + "much damage is done.", + "\u002B25H" + ], + "BaseLines": [ + "Blow to foe\u0027s back. Foe\u0027s hide is tough, but", + "much damage is done.", + "\u002B25H" + ], + "RawCellText": "Blow to foe\u0027s back. Foe\u0027s hide is tough, but\nmuch damage is done.\n\u002B25H", + "DescriptionText": "Blow to foe\u0027s back. Foe\u0027s hide is tough, but much damage is done.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 404, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 1616, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 1396, + "CropTop": 1584, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "51-65", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike threatens foe\u0027s eyes and he flinches. You", + "have initiative.", + "\u002B7H" + ], + "BaseLines": [ + "Strike threatens foe\u0027s eyes and he flinches. You", + "have initiative.", + "\u002B7H" + ], + "RawCellText": "Strike threatens foe\u0027s eyes and he flinches. You\nhave initiative.\n\u002B7H", + "DescriptionText": "Strike threatens foe\u0027s eyes and he flinches. You have initiative.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 404, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 1616, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2088, + "CropTop": 1584, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "51-65", + "ColumnKey": "SLAYING", + "Lines": [ + "Blast to foe\u0027s face. Most of the damage misses", + "him. Some does not.", + "\u002B20H" + ], + "BaseLines": [ + "Blast to foe\u0027s face. Most of the damage misses", + "him. Some does not.", + "\u002B20H" + ], + "RawCellText": "Blast to foe\u0027s face. Most of the damage misses\nhim. Some does not.\n\u002B20H", + "DescriptionText": "Blast to foe\u0027s face. Most of the damage misses him. Some does not.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 404, + "Width": 164, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 1616, + "BoundsWidth": 656, + "BoundsHeight": 152, + "CropLeft": 2780, + "CropTop": 1584, + "CropWidth": 752, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "66", + "ColumnKey": "NORMAL", + "Lines": [ + "Blast drives into foe\u0027s mouth. The concussion", + "knocks him down and puts him into a coma for", + "a month.", + "\u002B30H" + ], + "BaseLines": [ + "Blast drives into foe\u0027s mouth. The concussion", + "knocks him down and puts him into a coma for", + "a month.", + "\u002B30H" + ], + "RawCellText": "Blast drives into foe\u0027s mouth. The concussion\nknocks him down and puts him into a coma for\na month.\n\u002B30H", + "DescriptionText": "Blast drives into foe\u0027s mouth. The concussion knocks him down and puts him into a coma for a month.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 450, + "Width": 165, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 1800, + "BoundsWidth": 660, + "BoundsHeight": 196, + "CropLeft": 708, + "CropTop": 1768, + "CropWidth": 756, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "66", + "ColumnKey": "SLAYING", + "Lines": [ + "Assaulting foe\u0027s very living essence, your strike", + "lands upon his head. His life is stripped from", + "him. He dies instantly.", + "(\u002B10)" + ], + "BaseLines": [ + "Assaulting foe\u0027s very living essence, your strike", + "lands upon his head. His life is stripped from", + "him. He dies instantly.", + "(\u002B10)" + ], + "RawCellText": "Assaulting foe\u0027s very living essence, your strike\nlands upon his head. His life is stripped from\nhim. He dies instantly.\n(\u002B10)", + "DescriptionText": "Assaulting foe\u0027s very living essence, your strike lands upon his head. His life is stripped from him. He dies instantly.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 450, + "Width": 166, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 1800, + "BoundsWidth": 664, + "BoundsHeight": 196, + "CropLeft": 1396, + "CropTop": 1768, + "CropWidth": 760, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "66", + "ColumnKey": "NORMAL", + "Lines": [ + "You find a weak point. Unexpectedly, foe reels", + "and falls down. His shoulder is shattered. He", + "gets up slowly.", + "\u002B25H \u2013 (-75)" + ], + "BaseLines": [ + "You find a weak point. Unexpectedly, foe reels", + "and falls down. His shoulder is shattered. He", + "gets up slowly.", + "\u002B25H \u2013 (-75)" + ], + "RawCellText": "You find a weak point. Unexpectedly, foe reels\nand falls down. His shoulder is shattered. He\ngets up slowly.\n\u002B25H \u2013 (-75)", + "DescriptionText": "You find a weak point. Unexpectedly, foe reels and falls down. His shoulder is shattered. He gets up slowly.", + "RawAffixText": "\u002B25H \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 450, + "Width": 165, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 1800, + "BoundsWidth": 660, + "BoundsHeight": 196, + "CropLeft": 2088, + "CropTop": 1768, + "CropWidth": 756, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "66", + "ColumnKey": "SLAYING", + "Lines": [ + "Collapse foe\u0027s chest with perfect placement.", + "His lungs are destroyed and his heart stops. He", + "dies after 6 rounds of wheezing.", + "\u002B30H" + ], + "BaseLines": [ + "Collapse foe\u0027s chest with perfect placement.", + "His lungs are destroyed and his heart stops. He", + "dies after 6 rounds of wheezing.", + "\u002B30H" + ], + "RawCellText": "Collapse foe\u0027s chest with perfect placement.\nHis lungs are destroyed and his heart stops. He\ndies after 6 rounds of wheezing.\n\u002B30H", + "DescriptionText": "Collapse foe\u0027s chest with perfect placement. His lungs are destroyed and his heart stops. He dies after 6 rounds of wheezing.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 450, + "Width": 164, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 1800, + "BoundsWidth": 656, + "BoundsHeight": 196, + "CropLeft": 2780, + "CropTop": 1768, + "CropWidth": 752, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "67-70", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid strike on foe\u0027s leg. Foe feels the assault.", + "\u002B15H", + "\u002B15H" + ], + "BaseLines": [ + "Solid strike on foe\u0027s leg. Foe feels the assault.", + "\u002B15H", + "\u002B15H" + ], + "RawCellText": "Solid strike on foe\u0027s leg. Foe feels the assault.\n\u002B15H\n\u002B15H", + "DescriptionText": "Solid strike on foe\u0027s leg. Foe feels the assault.", + "RawAffixText": "\u002B15H\n\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 508, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 2032, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 708, + "CropTop": 2000, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "67-70", + "ColumnKey": "SLAYING", + "Lines": [ + "Attack hammers foe in his shield side.", + "He is in much pain .", + "\u002B30H" + ], + "BaseLines": [ + "Attack hammers foe in his shield side.", + "He is in much pain .", + "\u002B30H" + ], + "RawCellText": "Attack hammers foe in his shield side.\nHe is in much pain .\n\u002B30H", + "DescriptionText": "Attack hammers foe in his shield side. He is in much pain .", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 508, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 2032, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 1396, + "CropTop": 2000, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "67-70", + "ColumnKey": "NORMAL", + "Lines": [ + "Although not deadly, this strike leaves a visible", + "and encouraging wound. You may win yet.", + "\u002B12H" + ], + "BaseLines": [ + "Although not deadly, this strike leaves a visible", + "and encouraging wound. You may win yet.", + "\u002B12H" + ], + "RawCellText": "Although not deadly, this strike leaves a visible\nand encouraging wound. You may win yet.\n\u002B12H", + "DescriptionText": "Although not deadly, this strike leaves a visible and encouraging wound. You may win yet.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 508, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 2032, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 2000, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "67-70", + "ColumnKey": "SLAYING", + "Lines": [ + "Assault bounces off foe\u0027s primary arm.", + "Arm is damaged but still functioning. Try", + "again.", + "\u002B25H" + ], + "BaseLines": [ + "Assault bounces off foe\u0027s primary arm.", + "Arm is damaged but still functioning. Try", + "again.", + "\u002B25H" + ], + "RawCellText": "Assault bounces off foe\u0027s primary arm.\nArm is damaged but still functioning. Try\nagain.\n\u002B25H", + "DescriptionText": "Assault bounces off foe\u0027s primary arm. Arm is damaged but still functioning. Try again.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 508, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 2032, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 2000, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "71-80", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid strike to foe\u0027s head hurts him, but he is", + "still coming. If foe has head gear it is knocked", + "off.", + "\u002B20H" + ], + "BaseLines": [ + "Solid strike to foe\u0027s head hurts him, but he is", + "still coming. If foe has head gear it is knocked", + "off.", + "\u002B20H" + ], + "RawCellText": "Solid strike to foe\u0027s head hurts him, but he is\nstill coming. If foe has head gear it is knocked\noff.\n\u002B20H", + "DescriptionText": "Solid strike to foe\u0027s head hurts him, but he is still coming. If foe has head gear it is knocked off.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 565, + "Width": 165, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 2260, + "BoundsWidth": 660, + "BoundsHeight": 188, + "CropLeft": 708, + "CropTop": 2228, + "CropWidth": 756, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "71-80", + "ColumnKey": "SLAYING", + "Lines": [ + "Etch a nasty wound in foe\u0027s chest over his", + "vitals. He is upset greatly. You have initiative", + "for 6 rounds.", + "\u002B12H \u2013 3\u2211" + ], + "BaseLines": [ + "Etch a nasty wound in foe\u0027s chest over his", + "vitals. He is upset greatly. You have initiative", + "for 6 rounds.", + "\u002B12H \u2013 3\u2211" + ], + "RawCellText": "Etch a nasty wound in foe\u0027s chest over his\nvitals. He is upset greatly. You have initiative\nfor 6 rounds.\n\u002B12H \u2013 3\u2211", + "DescriptionText": "Etch a nasty wound in foe\u0027s chest over his vitals. He is upset greatly. You have initiative for 6 rounds.", + "RawAffixText": "\u002B12H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 565, + "Width": 166, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 2260, + "BoundsWidth": 664, + "BoundsHeight": 188, + "CropLeft": 1396, + "CropTop": 2228, + "CropWidth": 760, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "71-80", + "ColumnKey": "NORMAL", + "Lines": [ + "Blow to foe\u0027s upper arm. Discoloration and", + "various bruises mark your success.", + "\u002B15H" + ], + "BaseLines": [ + "Blow to foe\u0027s upper arm. Discoloration and", + "various bruises mark your success.", + "\u002B15H" + ], + "RawCellText": "Blow to foe\u0027s upper arm. Discoloration and\nvarious bruises mark your success.\n\u002B15H", + "DescriptionText": "Blow to foe\u0027s upper arm. Discoloration and various bruises mark your success.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 565, + "Width": 165, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 2260, + "BoundsWidth": 660, + "BoundsHeight": 188, + "CropLeft": 2088, + "CropTop": 2228, + "CropWidth": 756, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "71-80", + "ColumnKey": "SLAYING", + "Lines": [ + "Solid strike to the chest. Foe steps back 10 feet", + "and rebounds.", + "\u002B25H" + ], + "BaseLines": [ + "Solid strike to the chest. Foe steps back 10 feet", + "and rebounds.", + "\u002B25H" + ], + "RawCellText": "Solid strike to the chest. Foe steps back 10 feet\nand rebounds.\n\u002B25H", + "DescriptionText": "Solid strike to the chest. Foe steps back 10 feet and rebounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 565, + "Width": 164, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 2260, + "BoundsWidth": 656, + "BoundsHeight": 188, + "CropLeft": 2780, + "CropTop": 2228, + "CropWidth": 752, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "81-90", + "ColumnKey": "NORMAL", + "Lines": [ + "Strong blast staggers your terrible foe. He is as", + "surprised as you are at this success. He loses", + "6 rounds of initiative.", + "\u002B15H \u2013 3\u2211" + ], + "BaseLines": [ + "Strong blast staggers your terrible foe. He is as", + "surprised as you are at this success. He loses", + "6 rounds of initiative.", + "\u002B15H \u2013 3\u2211" + ], + "RawCellText": "Strong blast staggers your terrible foe. He is as\nsurprised as you are at this success. He loses\n6 rounds of initiative.\n\u002B15H \u2013 3\u2211", + "DescriptionText": "Strong blast staggers your terrible foe. He is as surprised as you are at this success. He loses 6 rounds of initiative.", + "RawAffixText": "\u002B15H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 621, + "Width": 167, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 2484, + "BoundsWidth": 668, + "BoundsHeight": 196, + "CropLeft": 708, + "CropTop": 2452, + "CropWidth": 764, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "81-90", + "ColumnKey": "SLAYING", + "Lines": [ + "Blow to foe\u0027s arm joint lands poorly. Foe will", + "have a bruise. You think you know what went", + "wrong.", + "\u002B25H \u2013 3\u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s arm joint lands poorly. Foe will", + "have a bruise. You think you know what went", + "wrong.", + "\u002B25H \u2013 3\u2211" + ], + "RawCellText": "Blow to foe\u0027s arm joint lands poorly. Foe will\nhave a bruise. You think you know what went\nwrong.\n\u002B25H \u2013 3\u2211", + "DescriptionText": "Blow to foe\u0027s arm joint lands poorly. Foe will have a bruise. You think you know what went wrong.", + "RawAffixText": "\u002B25H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 621, + "Width": 166, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 2484, + "BoundsWidth": 664, + "BoundsHeight": 196, + "CropLeft": 1396, + "CropTop": 2452, + "CropWidth": 760, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "81-90", + "ColumnKey": "NORMAL", + "Lines": [ + "Your strike hit no vitals, but you can hear the", + "ribs in foe\u0027s side crackle. Foe fights on in some", + "pain.", + "\u002B20H" + ], + "BaseLines": [ + "Your strike hit no vitals, but you can hear the", + "ribs in foe\u0027s side crackle. Foe fights on in some", + "pain.", + "\u002B20H" + ], + "RawCellText": "Your strike hit no vitals, but you can hear the\nribs in foe\u0027s side crackle. Foe fights on in some\npain.\n\u002B20H", + "DescriptionText": "Your strike hit no vitals, but you can hear the ribs in foe\u0027s side crackle. Foe fights on in some pain.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 621, + "Width": 165, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 2484, + "BoundsWidth": 660, + "BoundsHeight": 196, + "CropLeft": 2088, + "CropTop": 2452, + "CropWidth": 756, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "81-90", + "ColumnKey": "SLAYING", + "Lines": [ + "Sparks fly and smoke rises off foe as your", + "assault impacts.", + "\u002B30H" + ], + "BaseLines": [ + "Sparks fly and smoke rises off foe as your", + "assault impacts.", + "\u002B30H" + ], + "RawCellText": "Sparks fly and smoke rises off foe as your\nassault impacts.\n\u002B30H", + "DescriptionText": "Sparks fly and smoke rises off foe as your assault impacts.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 621, + "Width": 164, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 2484, + "BoundsWidth": 656, + "BoundsHeight": 196, + "CropLeft": 2780, + "CropTop": 2452, + "CropWidth": 752, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "91-95", + "ColumnKey": "NORMAL", + "Lines": [ + "Hard and effective, your strike almost brings", + "foe down. He stumbles, but does not fall.", + "\u002B20H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Hard and effective, your strike almost brings", + "foe down. He stumbles, but does not fall.", + "\u002B20H \u2013 2\u2211\u220F" + ], + "RawCellText": "Hard and effective, your strike almost brings\nfoe down. He stumbles, but does not fall.\n\u002B20H \u2013 2\u2211\u220F", + "DescriptionText": "Hard and effective, your strike almost brings foe down. He stumbles, but does not fall.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 679, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 2716, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 708, + "CropTop": 2684, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "91-95", + "ColumnKey": "SLAYING", + "Lines": [ + "You concentrate the energy of the strike and", + "fracture foe\u0027s leg bone.", + "2\u2211\u03C0 \u2013 (-30)" + ], + "BaseLines": [ + "You concentrate the energy of the strike and", + "fracture foe\u0027s leg bone.", + "2\u2211\u03C0 \u2013 (-30)" + ], + "RawCellText": "You concentrate the energy of the strike and\nfracture foe\u0027s leg bone.\n2\u2211\u03C0 \u2013 (-30)", + "DescriptionText": "You concentrate the energy of the strike and fracture foe\u0027s leg bone.", + "RawAffixText": "2\u2211\u03C0 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 679, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 2716, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 1396, + "CropTop": 2684, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "91-95", + "ColumnKey": "NORMAL", + "Lines": [ + "Heavy and hard. Your strike is effective. Foe\u0027s", + "abdomen is damaged.", + "\u002B30H", + "\u002B30H" + ], + "BaseLines": [ + "Heavy and hard. Your strike is effective. Foe\u0027s", + "abdomen is damaged.", + "\u002B30H", + "\u002B30H" + ], + "RawCellText": "Heavy and hard. Your strike is effective. Foe\u0027s\nabdomen is damaged.\n\u002B30H\n\u002B30H", + "DescriptionText": "Heavy and hard. Your strike is effective. Foe\u0027s abdomen is damaged.", + "RawAffixText": "\u002B30H\n\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 679, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 2716, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 2684, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "91-95", + "ColumnKey": "SLAYING", + "Lines": [ + "Your attack lands with a beautiful crash. Foe\u0027s", + "leg is heavily damaged.", + "He struggles to keeps his defense up.", + "\u002B25H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Your attack lands with a beautiful crash. Foe\u0027s", + "leg is heavily damaged.", + "He struggles to keeps his defense up.", + "\u002B25H \u2013 2\u2211\u220F" + ], + "RawCellText": "Your attack lands with a beautiful crash. Foe\u0027s\nleg is heavily damaged.\nHe struggles to keeps his defense up.\n\u002B25H \u2013 2\u2211\u220F", + "DescriptionText": "Your attack lands with a beautiful crash. Foe\u0027s leg is heavily damaged. He struggles to keeps his defense up.", + "RawAffixText": "\u002B25H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 679, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 2716, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 2684, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "96-98", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike lands and tears down into foe\u0027s neck.", + "This vicious blast crushes foe\u0027s neck and", + "shatters his spine. He falls unmoving and dies", + "in 3 rounds.", + "\u2013" + ], + "BaseLines": [ + "Strike lands and tears down into foe\u0027s neck.", + "This vicious blast crushes foe\u0027s neck and", + "shatters his spine. He falls unmoving and dies", + "in 3 rounds.", + "\u2013" + ], + "RawCellText": "Strike lands and tears down into foe\u0027s neck.\nThis vicious blast crushes foe\u0027s neck and\nshatters his spine. He falls unmoving and dies\nin 3 rounds.\n\u2013", + "DescriptionText": "Strike lands and tears down into foe\u0027s neck. This vicious blast crushes foe\u0027s neck and shatters his spine. He falls unmoving and dies in 3 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 735, + "Width": 164, + "Height": 58 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 2940, + "BoundsWidth": 656, + "BoundsHeight": 232, + "CropLeft": 708, + "CropTop": 2908, + "CropWidth": 752, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "96-98", + "ColumnKey": "SLAYING", + "Lines": [ + "You are a mighty enchanter. Your strike hits", + "foe\u0027s chest and neck. His neck is broken. Foe", + "drops and dies.", + "(\u002B15)" + ], + "BaseLines": [ + "You are a mighty enchanter. Your strike hits", + "foe\u0027s chest and neck. His neck is broken. Foe", + "drops and dies.", + "(\u002B15)" + ], + "RawCellText": "You are a mighty enchanter. Your strike hits\nfoe\u0027s chest and neck. His neck is broken. Foe\ndrops and dies.\n(\u002B15)", + "DescriptionText": "You are a mighty enchanter. Your strike hits foe\u0027s chest and neck. His neck is broken. Foe drops and dies.", + "RawAffixText": "(\u002B15)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 735, + "Width": 166, + "Height": 58 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 2940, + "BoundsWidth": 664, + "BoundsHeight": 232, + "CropLeft": 1396, + "CropTop": 2908, + "CropWidth": 760, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "96-98", + "ColumnKey": "NORMAL", + "Lines": [ + "Your onslaught lands against foe\u0027s skull. Brain", + "is damaged. Swelling fractures his skull. Foe", + "drops and dies in 6 rounds.", + "\u2013" + ], + "BaseLines": [ + "Your onslaught lands against foe\u0027s skull. Brain", + "is damaged. Swelling fractures his skull. Foe", + "drops and dies in 6 rounds.", + "\u2013" + ], + "RawCellText": "Your onslaught lands against foe\u0027s skull. Brain\nis damaged. Swelling fractures his skull. Foe\ndrops and dies in 6 rounds.\n\u2013", + "DescriptionText": "Your onslaught lands against foe\u0027s skull. Brain is damaged. Swelling fractures his skull. Foe drops and dies in 6 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 735, + "Width": 164, + "Height": 58 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 2940, + "BoundsWidth": 656, + "BoundsHeight": 232, + "CropLeft": 2088, + "CropTop": 2908, + "CropWidth": 752, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "96-98", + "ColumnKey": "SLAYING", + "Lines": [ + "Shot lands against foe\u0027s chest. Strike infests", + "foe with terminal poison. The full burden of the", + "enchantment ends his life instantly.", + "\u2013" + ], + "BaseLines": [ + "Shot lands against foe\u0027s chest. Strike infests", + "foe with terminal poison. The full burden of the", + "enchantment ends his life instantly.", + "\u2013" + ], + "RawCellText": "Shot lands against foe\u0027s chest. Strike infests\nfoe with terminal poison. The full burden of the\nenchantment ends his life instantly.\n\u2013", + "DescriptionText": "Shot lands against foe\u0027s chest. Strike infests foe with terminal poison. The full burden of the enchantment ends his life instantly.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 735, + "Width": 163, + "Height": 58 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 2940, + "BoundsWidth": 652, + "BoundsHeight": 232, + "CropLeft": 2780, + "CropTop": 2908, + "CropWidth": 748, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "99-100", + "ColumnKey": "NORMAL", + "Lines": [ + "You step into the right spot and rip open foe\u0027s", + "side. Your blow shatters some ribs. Foe dies in", + "6 painful rounds.", + "\u2013" + ], + "BaseLines": [ + "You step into the right spot and rip open foe\u0027s", + "side. Your blow shatters some ribs. Foe dies in", + "6 painful rounds.", + "\u2013" + ], + "RawCellText": "You step into the right spot and rip open foe\u0027s\nside. Your blow shatters some ribs. Foe dies in\n6 painful rounds.\n\u2013", + "DescriptionText": "You step into the right spot and rip open foe\u0027s side. Your blow shatters some ribs. Foe dies in 6 painful rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 802, + "Width": 164, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 3208, + "BoundsWidth": 656, + "BoundsHeight": 196, + "CropLeft": 708, + "CropTop": 3176, + "CropWidth": 752, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "99-100", + "ColumnKey": "SLAYING", + "Lines": [ + "Perfect aim. Foe\u0027s carotid artery and jugular", + "vein are torn open. Foe drops and dies in 3", + "rounds.", + "\u2013" + ], + "BaseLines": [ + "Perfect aim. Foe\u0027s carotid artery and jugular", + "vein are torn open. Foe drops and dies in 3", + "rounds.", + "\u2013" + ], + "RawCellText": "Perfect aim. Foe\u0027s carotid artery and jugular\nvein are torn open. Foe drops and dies in 3\nrounds.\n\u2013", + "DescriptionText": "Perfect aim. Foe\u0027s carotid artery and jugular vein are torn open. Foe drops and dies in 3 rounds.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 802, + "Width": 164, + "Height": 49 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 3208, + "BoundsWidth": 656, + "BoundsHeight": 196, + "CropLeft": 1396, + "CropTop": 3176, + "CropWidth": 752, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "99-100", + "ColumnKey": "NORMAL", + "Lines": [ + "Violent strike to foe\u0027s face. His eyes are badly", + "damaged. He is blinded.", + "He falls over. You have him now.", + "12\u2211\u220F \u2013 (-95)" + ], + "BaseLines": [ + "Violent strike to foe\u0027s face. His eyes are badly", + "damaged. He is blinded.", + "He falls over. You have him now.", + "12\u2211\u220F \u2013 (-95)" + ], + "RawCellText": "Violent strike to foe\u0027s face. His eyes are badly\ndamaged. He is blinded.\nHe falls over. You have him now.\n12\u2211\u220F \u2013 (-95)", + "DescriptionText": "Violent strike to foe\u0027s face. His eyes are badly damaged. He is blinded. He falls over. You have him now.", + "RawAffixText": "12\u2211\u220F \u2013 (-95)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 803, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 3212, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 3180, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "99-100", + "ColumnKey": "SLAYING", + "Lines": [ + "Blast to foe\u0027s head. Inner ear destroyed. Foe", + "dies in 6 inactive rounds.", + "\u002B20H" + ], + "BaseLines": [ + "Blast to foe\u0027s head. Inner ear destroyed. Foe", + "dies in 6 inactive rounds.", + "\u002B20H" + ], + "RawCellText": "Blast to foe\u0027s head. Inner ear destroyed. Foe\ndies in 6 inactive rounds.\n\u002B20H", + "DescriptionText": "Blast to foe\u0027s head. Inner ear destroyed. Foe dies in 6 inactive rounds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 803, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 3212, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 3180, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "101-150", + "ColumnKey": "NORMAL", + "Lines": [ + "Glancing strike to foe\u0027s abdomen loses much", + "of the impact on foe\u0027s hide.", + "\u002B30H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Glancing strike to foe\u0027s abdomen loses much", + "of the impact on foe\u0027s hide.", + "\u002B30H \u2013 3\u2211\u220F" + ], + "RawCellText": "Glancing strike to foe\u0027s abdomen loses much\nof the impact on foe\u0027s hide.\n\u002B30H \u2013 3\u2211\u220F", + "DescriptionText": "Glancing strike to foe\u0027s abdomen loses much of the impact on foe\u0027s hide.", + "RawAffixText": "\u002B30H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 860, + "Width": 165, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 3440, + "BoundsWidth": 660, + "BoundsHeight": 188, + "CropLeft": 708, + "CropTop": 3408, + "CropWidth": 756, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "101-150", + "ColumnKey": "SLAYING", + "Lines": [ + "Side strike. Attack careens down foe\u0027s chest", + "and leg. Skin is torn away. Foe roars his", + "defiance.", + "\u002B35H \u2013 5\u2211\u220F" + ], + "BaseLines": [ + "Side strike. Attack careens down foe\u0027s chest", + "and leg. Skin is torn away. Foe roars his", + "defiance.", + "\u002B35H \u2013 5\u2211\u220F" + ], + "RawCellText": "Side strike. Attack careens down foe\u0027s chest\nand leg. Skin is torn away. Foe roars his\ndefiance.\n\u002B35H \u2013 5\u2211\u220F", + "DescriptionText": "Side strike. Attack careens down foe\u0027s chest and leg. Skin is torn away. Foe roars his defiance.", + "RawAffixText": "\u002B35H \u2013 5\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 860, + "Width": 165, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 3440, + "BoundsWidth": 660, + "BoundsHeight": 188, + "CropLeft": 1396, + "CropTop": 3408, + "CropWidth": 756, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "101-150", + "ColumnKey": "NORMAL", + "Lines": [ + "Titanic blast sends foe stumbling despite his", + "bulk. He is unable to defend himself for a", + "moment.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Titanic blast sends foe stumbling despite his", + "bulk. He is unable to defend himself for a", + "moment.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "RawCellText": "Titanic blast sends foe stumbling despite his\nbulk. He is unable to defend himself for a\nmoment.\n\u002B30H \u2013 2\u2211\u220F", + "DescriptionText": "Titanic blast sends foe stumbling despite his bulk. He is unable to defend himself for a moment.", + "RawAffixText": "\u002B30H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 860, + "Width": 167, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 3440, + "BoundsWidth": 668, + "BoundsHeight": 188, + "CropLeft": 2088, + "CropTop": 3408, + "CropWidth": 764, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "101-150", + "ColumnKey": "SLAYING", + "Lines": [ + "Foe stumbles 10 feet to his right with the", + "impact of your attack. He is vulnerable.", + "\u002B35H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Foe stumbles 10 feet to his right with the", + "impact of your attack. He is vulnerable.", + "\u002B35H \u2013 3\u2211\u220F" + ], + "RawCellText": "Foe stumbles 10 feet to his right with the\nimpact of your attack. He is vulnerable.\n\u002B35H \u2013 3\u2211\u220F", + "DescriptionText": "Foe stumbles 10 feet to his right with the impact of your attack. He is vulnerable.", + "RawAffixText": "\u002B35H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 860, + "Width": 164, + "Height": 47 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 3440, + "BoundsWidth": 656, + "BoundsHeight": 188, + "CropLeft": 2780, + "CropTop": 3408, + "CropWidth": 752, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "151-175", + "ColumnKey": "NORMAL", + "Lines": [ + "Your weapon wounds deep and cuts muscles", + "and tendons.", + "5\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Your weapon wounds deep and cuts muscles", + "and tendons.", + "5\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Your weapon wounds deep and cuts muscles\nand tendons.\n5\u2211\u220F \u2013 (-20)", + "DescriptionText": "Your weapon wounds deep and cuts muscles and tendons.", + "RawAffixText": "5\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 916, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 3664, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 708, + "CropTop": 3632, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "151-175", + "ColumnKey": "SLAYING", + "Lines": [ + "Fracture a bone in foe\u0027s forearm. It twists in a", + "painful direction. His guard is down.", + "\u002B40H \u2013 6\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Fracture a bone in foe\u0027s forearm. It twists in a", + "painful direction. His guard is down.", + "\u002B40H \u2013 6\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Fracture a bone in foe\u0027s forearm. It twists in a\npainful direction. His guard is down.\n\u002B40H \u2013 6\u2211\u220F \u2013 (-25)", + "DescriptionText": "Fracture a bone in foe\u0027s forearm. It twists in a painful direction. His guard is down.", + "RawAffixText": "\u002B40H \u2013 6\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 916, + "Width": 166, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 3664, + "BoundsWidth": 664, + "BoundsHeight": 152, + "CropLeft": 1396, + "CropTop": 3632, + "CropWidth": 760, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "151-175", + "ColumnKey": "NORMAL", + "Lines": [ + "Side strike. Foe steps to the side and takes the", + "damage in his ribs. Bones are broken.", + "4\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Side strike. Foe steps to the side and takes the", + "damage in his ribs. Bones are broken.", + "4\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Side strike. Foe steps to the side and takes the\ndamage in his ribs. Bones are broken.\n4\u2211\u220F \u2013 (-20)", + "DescriptionText": "Side strike. Foe steps to the side and takes the damage in his ribs. Bones are broken.", + "RawAffixText": "4\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 916, + "Width": 165, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 3664, + "BoundsWidth": 660, + "BoundsHeight": 152, + "CropLeft": 2088, + "CropTop": 3632, + "CropWidth": 756, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "151-175", + "ColumnKey": "SLAYING", + "Lines": [ + "Blast breaks bones and causes bleeding in", + "foe\u0027s leg. He can still operate.", + "5\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Blast breaks bones and causes bleeding in", + "foe\u0027s leg. He can still operate.", + "5\u222B \u2013 (-20)" + ], + "RawCellText": "Blast breaks bones and causes bleeding in\nfoe\u0027s leg. He can still operate.\n5\u222B \u2013 (-20)", + "DescriptionText": "Blast breaks bones and causes bleeding in foe\u0027s leg. He can still operate.", + "RawAffixText": "5\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 916, + "Width": 164, + "Height": 38 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 3664, + "BoundsWidth": 656, + "BoundsHeight": 152, + "CropLeft": 2780, + "CropTop": 3632, + "CropWidth": 752, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "176-200", + "ColumnKey": "NORMAL", + "Lines": [ + "Foe presents a weak spot and you strike. Blow", + "lands at the base of the neck. Tendons are", + "damaged.", + "\u002B35H \u2013 (-35) \u2013 10\u222B" + ], + "BaseLines": [ + "Foe presents a weak spot and you strike. Blow", + "lands at the base of the neck. Tendons are", + "damaged.", + "\u002B35H \u2013 (-35) \u2013 10\u222B" + ], + "RawCellText": "Foe presents a weak spot and you strike. Blow\nlands at the base of the neck. Tendons are\ndamaged.\n\u002B35H \u2013 (-35) \u2013 10\u222B", + "DescriptionText": "Foe presents a weak spot and you strike. Blow lands at the base of the neck. Tendons are damaged.", + "RawAffixText": "\u002B35H \u2013 (-35) \u2013 10\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -35, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-35)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 964, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 3856, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 708, + "CropTop": 3824, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "176-200", + "ColumnKey": "SLAYING", + "Lines": [ + "He is knocked down and out. Ribs are", + "shattered. The concussion causes internal", + "bleeding.", + "10\u222B \u2013 (-50)" + ], + "BaseLines": [ + "He is knocked down and out. Ribs are", + "shattered. The concussion causes internal", + "bleeding.", + "10\u222B \u2013 (-50)" + ], + "RawCellText": "He is knocked down and out. Ribs are\nshattered. The concussion causes internal\nbleeding.\n10\u222B \u2013 (-50)", + "DescriptionText": "He is knocked down and out. Ribs are shattered. The concussion causes internal bleeding.", + "RawAffixText": "10\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 964, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 3856, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 1396, + "CropTop": 3824, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "176-200", + "ColumnKey": "NORMAL", + "Lines": [ + "Mighty is your strike. Its your turn to give.", + "Foe\u0027s chest tears open and blood sprays on all", + "bystanders.", + "\u002B30H \u2013 5\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Mighty is your strike. Its your turn to give.", + "Foe\u0027s chest tears open and blood sprays on all", + "bystanders.", + "\u002B30H \u2013 5\u222B \u2013 (-30)" + ], + "RawCellText": "Mighty is your strike. Its your turn to give.\nFoe\u0027s chest tears open and blood sprays on all\nbystanders.\n\u002B30H \u2013 5\u222B \u2013 (-30)", + "DescriptionText": "Mighty is your strike. Its your turn to give. Foe\u0027s chest tears open and blood sprays on all bystanders.", + "RawAffixText": "\u002B30H \u2013 5\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 964, + "Width": 166, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 3856, + "BoundsWidth": 664, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 3824, + "CropWidth": 760, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "176-200", + "ColumnKey": "SLAYING", + "Lines": [ + "Epic assault to foe\u0027s side sends foe onto his", + "back. Wounds are severe.", + "Internal bleeding. He is in trouble.", + "\u002B40H \u2013 10\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Epic assault to foe\u0027s side sends foe onto his", + "back. Wounds are severe.", + "Internal bleeding. He is in trouble.", + "\u002B40H \u2013 10\u222B \u2013 (-50)" + ], + "RawCellText": "Epic assault to foe\u0027s side sends foe onto his\nback. Wounds are severe.\nInternal bleeding. He is in trouble.\n\u002B40H \u2013 10\u222B \u2013 (-50)", + "DescriptionText": "Epic assault to foe\u0027s side sends foe onto his back. Wounds are severe. Internal bleeding. He is in trouble.", + "RawAffixText": "\u002B40H \u2013 10\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 964, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 3856, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 3824, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "201-250", + "ColumnKey": "NORMAL", + "Lines": [ + "When your strike lands on foe\u0027s back, bones", + "crackle and pop. Foe is paralyzed and in a 3", + "month coma \u002B50H.", + "\u2013" + ], + "BaseLines": [ + "When your strike lands on foe\u0027s back, bones", + "crackle and pop. Foe is paralyzed and in a 3", + "month coma \u002B50H.", + "\u2013" + ], + "RawCellText": "When your strike lands on foe\u0027s back, bones\ncrackle and pop. Foe is paralyzed and in a 3\nmonth coma \u002B50H.\n\u2013", + "DescriptionText": "When your strike lands on foe\u0027s back, bones crackle and pop. Foe is paralyzed and in a 3 month coma \u002B50H.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 1020, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 4080, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 708, + "CropTop": 4048, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "201-250", + "ColumnKey": "SLAYING", + "Lines": [ + "Assault causes mortal damage. Foe\u0027s organs", + "fail. He is inacitve and dies after 3 rounds.", + "\u002B50H" + ], + "BaseLines": [ + "Assault causes mortal damage. Foe\u0027s organs", + "fail. He is inacitve and dies after 3 rounds.", + "\u002B50H" + ], + "RawCellText": "Assault causes mortal damage. Foe\u0027s organs\nfail. He is inacitve and dies after 3 rounds.\n\u002B50H", + "DescriptionText": "Assault causes mortal damage. Foe\u0027s organs fail. He is inacitve and dies after 3 rounds.", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 1020, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 4080, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 1396, + "CropTop": 4048, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "201-250", + "ColumnKey": "NORMAL", + "Lines": [ + "Snap foe\u0027s head back and fracture his spine.", + "Foe is paralyzed from the neck down.", + "\u002B40H" + ], + "BaseLines": [ + "Snap foe\u0027s head back and fracture his spine.", + "Foe is paralyzed from the neck down.", + "\u002B40H" + ], + "RawCellText": "Snap foe\u0027s head back and fracture his spine.\nFoe is paralyzed from the neck down.\n\u002B40H", + "DescriptionText": "Snap foe\u0027s head back and fracture his spine. Foe is paralyzed from the neck down.", + "RawAffixText": "\u002B40H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 1020, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 4080, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 4048, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "201-250", + "ColumnKey": "SLAYING", + "Lines": [ + "Hammer foe\u0027s neck and face. The energy", + "engulfs his throat. Nerves are destroyed. Foe", + "dies after 9 inactive rounds.", + "\u002B50H" + ], + "BaseLines": [ + "Hammer foe\u0027s neck and face. The energy", + "engulfs his throat. Nerves are destroyed. Foe", + "dies after 9 inactive rounds.", + "\u002B50H" + ], + "RawCellText": "Hammer foe\u0027s neck and face. The energy\nengulfs his throat. Nerves are destroyed. Foe\ndies after 9 inactive rounds.\n\u002B50H", + "DescriptionText": "Hammer foe\u0027s neck and face. The energy engulfs his throat. Nerves are destroyed. Foe dies after 9 inactive rounds.", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 1020, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 4080, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 4048, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "251\u002B", + "ColumnKey": "NORMAL", + "Lines": [ + "Foe lowers his eyes within your reach and you", + "strike with great skill and fury. Foe dies", + "instantly.", + "\u002B20H" + ], + "BaseLines": [ + "Foe lowers his eyes within your reach and you", + "strike with great skill and fury. Foe dies", + "instantly.", + "\u002B20H" + ], + "RawCellText": "Foe lowers his eyes within your reach and you\nstrike with great skill and fury. Foe dies\ninstantly.\n\u002B20H", + "DescriptionText": "Foe lowers his eyes within your reach and you strike with great skill and fury. Foe dies instantly.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 189, + "Top": 1077, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__normal__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 756, + "BoundsTop": 4308, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 708, + "CropTop": 4276, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "large", + "RollBandLabel": "251\u002B", + "ColumnKey": "SLAYING", + "Lines": [ + "Impact of blast drives content of skull in all", + "directions. Foe falls and flails around violently.", + "He dies instantly.", + "\u2013" + ], + "BaseLines": [ + "Impact of blast drives content of skull in all", + "directions. Foe falls and flails around violently.", + "He dies instantly.", + "\u2013" + ], + "RawCellText": "Impact of blast drives content of skull in all\ndirections. Foe falls and flails around violently.\nHe dies instantly.\n\u2013", + "DescriptionText": "Impact of blast drives content of skull in all directions. Foe falls and flails around violently. He dies instantly.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 361, + "Top": 1077, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/large__slaying__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1444, + "BoundsTop": 4308, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 1396, + "CropTop": 4276, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "251\u002B", + "ColumnKey": "NORMAL", + "Lines": [ + "Shatter parts of foe\u0027s skeleton. Heart and lungs", + "are damaged. Foe falls dead.", + "His blood pours out onto the floor.", + "\u2013" + ], + "BaseLines": [ + "Shatter parts of foe\u0027s skeleton. Heart and lungs", + "are damaged. Foe falls dead.", + "His blood pours out onto the floor.", + "\u2013" + ], + "RawCellText": "Shatter parts of foe\u0027s skeleton. Heart and lungs\nare damaged. Foe falls dead.\nHis blood pours out onto the floor.\n\u2013", + "DescriptionText": "Shatter parts of foe\u0027s skeleton. Heart and lungs are damaged. Foe falls dead. His blood pours out onto the floor.", + "RawAffixText": "\u2013", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 534, + "Top": 1077, + "Width": 164, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__normal__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2136, + "BoundsTop": 4308, + "BoundsWidth": 656, + "BoundsHeight": 192, + "CropLeft": 2088, + "CropTop": 4276, + "CropWidth": 752, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": "super_large", + "RollBandLabel": "251\u002B", + "ColumnKey": "SLAYING", + "Lines": [ + "Blast goes in through foe\u0027s eye and comes out", + "ugly. Foe dies instantly. His terrible bulk comes", + "crashing down.", + "(\u002B20)" + ], + "BaseLines": [ + "Blast goes in through foe\u0027s eye and comes out", + "ugly. Foe dies instantly. His terrible bulk comes", + "crashing down.", + "(\u002B20)" + ], + "RawCellText": "Blast goes in through foe\u0027s eye and comes out\nugly. Foe dies instantly. His terrible bulk comes\ncrashing down.\n(\u002B20)", + "DescriptionText": "Blast goes in through foe\u0027s eye and comes out ugly. Foe dies instantly. His terrible bulk comes crashing down.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 707, + "Top": 1077, + "Width": 165, + "Height": 48 + }, + "SourceImagePath": "large_creature_magic/cells/super_large__slaying__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2828, + "BoundsTop": 4308, + "BoundsWidth": 660, + "BoundsHeight": 192, + "CropLeft": 2780, + "CropTop": 4276, + "CropWidth": 756, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/source.xml b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/source.xml new file mode 100644 index 0000000..eb71d8e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/source.xml @@ -0,0 +1,330 @@ + + + + + + + + + + + + + + + +Key: +ß +π += must parry ß rounds; +ß + += no parry for ß rounds; +ß +∑ = + stunned for ß rounds; +ß + += bleed ß hits per round; +(-ß) = foe has -ß penalty; +(+ß) = attacker gets +ß next round. +93 +01-05 +Your karma is not strong enough to damage +such a beast. +Sparks fly. The enchantment fails. +You had hoped for more damage. +The strength of your strike is not up to the +challange. +You warn foe of his doom with this tiny whisper +of your power. ++0H ++5H ++0H ++3H +06-10 +It looked powerful but your foe did not even +stumble. +Foe throws off the magic that threatens his +very existance. +Strike lands with little result. You had better +get serious soon. +Foe evades much of the damage. Maybe next +time. ++1H ++9H ++1H ++5H +11-20 +You are daunted by the beast's gaze and your +aim fails. +Strike lands solid. Foe howls out in pain and +anger! +The beast is made of stronger stuff than you +hoped. +Your blast scrapes along foe's shoulder +hissing as it touches his skin. ++3H ++12H ++2H ++9H +21-30 +The strike is powerful, but poorly placed. +Remember, Focus. +Chest strike leaves visible damage. Foe makes +a futile attempt to brush it off. +Strike glances off foe and damages his +surroundings. +Your strike is solid and flat, foe is burned by +the enchantment. ++5H ++15H ++3H ++12H +31-40 +.The attack lands well but seems only to scuff +your foe's skin. +Firm strike to foe's lower abdomen. +Measurable damage has been done. +Solid, but nowhere near a vital spot. Bruise +foe's calf muscle. +Heavy assault yields a measure of damage to +foe's leg. ++7H ++18H ++5H ++15H +41- 50 +Solid attack yields predictable damage. +Your assault entangles foe's arm for an instant. +Arm is bruised. +Blow is placed solidly against foe's side. His +vitals are beyond reach. +Strike tears down foe's back. He ducts down in +pain. ++10H ++20H ++7H ++18H +51-65 +Weak attack to a vulnerable spot. +Foe is enraged by the close call. +Blow to foe's back. Foe's hide is tough, but +much damage is done. +Strike threatens foe's eyes and he flinches. You +have initiative. +Blast to foe's face. Most of the damage misses +him. Some does not. ++13H ++25H ++7H ++20H +66 +Blast drives into foe's mouth. The concussion +knocks him down and puts him into a coma for +a month. +Assaulting foe's very living essence, your strike +lands upon his head. His life is stripped from +him. He dies instantly. +You find a weak point. Unexpectedly, foe reels +and falls down. His shoulder is shattered. He +gets up slowly. +Collapse foe's chest with perfect placement. +His lungs are destroyed and his heart stops. He +dies after 6 rounds of wheezing. ++30H +(+10) ++25H – (-75) ++30H +67-70 +Solid strike on foe's leg. Foe feels the assault. ++15H +Attack hammers foe in his shield side. +He is in much pain . +Although not deadly, this strike leaves a visible +and encouraging wound. You may win yet. +Assault bounces off foe's primary arm. +Arm is damaged but still functioning. Try +again. ++15H ++30H ++12H ++25H +71-80 +Solid strike to foe's head hurts him, but he is +still coming. If foe has head gear it is knocked +off. +Etch a nasty wound in foe's chest over his +vitals. He is upset greatly. You have initiative +for 6 rounds. +Blow to foe's upper arm. Discoloration and +various bruises mark your success. +Solid strike to the chest. Foe steps back 10 feet +and rebounds. ++20H ++12H – 3∑ ++15H ++25H +81-90 +Strong blast staggers your terrible foe. He is as +surprised as you are at this success. He loses +6 rounds of initiative. +Blow to foe's arm joint lands poorly. Foe will +have a bruise. You think you know what went +wrong. +Your strike hit no vitals, but you can hear the +ribs in foe's side crackle. Foe fights on in some +pain. +Sparks fly and smoke rises off foe as your +assault impacts. ++15H – 3∑ ++25H – 3∑ ++20H ++30H +91-95 +Hard and effective, your strike almost brings +foe down. He stumbles, but does not fall. +You concentrate the energy of the strike and +fracture foe's leg bone. +Heavy and hard. Your strike is effective. Foe's +abdomen is damaged. ++30H +Your attack lands with a beautiful crash. Foe's +leg is heavily damaged. +He struggles to keeps his defense up. ++20H – 2∑∏ +2∑π – (-30) ++30H ++25H – 2∑∏ +96-98 +Strike lands and tears down into foe's neck. +This vicious blast crushes foe's neck and +shatters his spine. He falls unmoving and dies +in 3 rounds. +You are a mighty enchanter. Your strike hits +foe's chest and neck. His neck is broken. Foe +drops and dies. +Your onslaught lands against foe's skull. Brain +is damaged. Swelling fractures his skull. Foe +drops and dies in 6 rounds. +Shot lands against foe's chest. Strike infests +foe with terminal poison. The full burden of the +enchantment ends his life instantly. + +(+15) + + +99- +100 +You step into the right spot and rip open foe's +side. Your blow shatters some ribs. Foe dies in +6 painful rounds. +Perfect aim. Foe's carotid artery and jugular +vein are torn open. Foe drops and dies in 3 +rounds. +Violent strike to foe's face. His eyes are badly +damaged. He is blinded. +He falls over. You have him now. +Blast to foe's head. Inner ear destroyed. Foe +dies in 6 inactive rounds. + + +12∑∏ – (-95) ++20H +101- +150 +Glancing strike to foe's abdomen loses much +of the impact on foe's hide. +Side strike. Attack careens down foe's chest +and leg. Skin is torn away. Foe roars his +defiance. +Titanic blast sends foe stumbling despite his +bulk. He is unable to defend himself for a +moment. +Foe stumbles 10 feet to his right with the +impact of your attack. He is vulnerable. ++30H – 3∑∏ ++35H – 5∑∏ ++30H – 2∑∏ ++35H – 3∑∏ +151- +175 +Your weapon wounds deep and cuts muscles +and tendons. +Fracture a bone in foe's forearm. It twists in a +painful direction. His guard is down. +Side strike. Foe steps to the side and takes the +damage in his ribs. Bones are broken. +Blast breaks bones and causes bleeding in +foe's leg. He can still operate. +5∑∏ – (-20) ++40H – 6∑∏ – (-25) +4∑∏ – (-20) +5∫ – (-20) +176- +200 +Foe presents a weak spot and you strike. Blow +lands at the base of the neck. Tendons are +damaged. +He is knocked down and out. Ribs are +shattered. The concussion causes internal +bleeding. +Mighty is your strike. Its your turn to give. +Foe's chest tears open and blood sprays on all +bystanders. +Epic assault to foe's side sends foe onto his +back. Wounds are severe. +Internal bleeding. He is in trouble. ++35H – (-35) – 10∫ +10∫ – (-50) ++30H – 5∫ – (-30) ++40H – 10∫ – (-50) +201- +250 +When your strike lands on foe's back, bones +crackle and pop. Foe is paralyzed and in a 3 +month coma +50H. +Assault causes mortal damage. Foe's organs +fail. He is inacitve and dies after 3 rounds. +Snap foe's head back and fracture his spine. +Foe is paralyzed from the neck down. +Hammer foe's neck and face. The energy +engulfs his throat. Nerves are destroyed. Foe +dies after 9 inactive rounds. + ++50H ++40H ++50H +251+ +Foe lowers his eyes within your reach and you +strike with great skill and fury. Foe dies +instantly. +Impact of blast drives content of skull in all +directions. Foe falls and flails around violently. +He dies instantly. +Shatter parts of foe's skeleton. Heart and lungs +are damaged. Foe falls dead. +His blood pours out onto the floor. +Blast goes in through foe's eye and comes out +ugly. Foe dies instantly. His terrible bulk comes +crashing down. ++20H + + +(+20) +Large Creatures +Super Large Creatures +Normal +Normal +SLAYING +SLAYING +6.5 CREATURE CRITICAL STRIKES +SPELLS AGAINST CREATURES CRITICAL STRIKE TABLE A-10.10.9 +The attack lands well but seems only to +scuff your foe’s skin. +. +Strike tears down foe’s back. +He ducks down in pain. +14.5 SPELLS AGAINST CREATURES CRITICAL STRIKE TABLE + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/validation-report.json new file mode 100644 index 0000000..66e7f77 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_magic/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 76 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__01-05.png new file mode 100644 index 0000000..c497772 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__06-10.png new file mode 100644 index 0000000..421fb8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__101-150.png new file mode 100644 index 0000000..07ed1b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__11-20.png new file mode 100644 index 0000000..8ec2edd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__151-175.png new file mode 100644 index 0000000..f5427c4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__176-200.png new file mode 100644 index 0000000..cbe9fde Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__201-250.png new file mode 100644 index 0000000..28e546b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__21-30.png new file mode 100644 index 0000000..5a8a903 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__251plus.png new file mode 100644 index 0000000..f41f74a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__31-40.png new file mode 100644 index 0000000..b97a47c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__41-50.png new file mode 100644 index 0000000..f0912e2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__51-65.png new file mode 100644 index 0000000..da14419 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__66.png new file mode 100644 index 0000000..c701245 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__67-70.png new file mode 100644 index 0000000..10b99e1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__71-80.png new file mode 100644 index 0000000..4cd883c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__81-90.png new file mode 100644 index 0000000..b6417f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__91-95.png new file mode 100644 index 0000000..e3d79ac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__96-98.png new file mode 100644 index 0000000..06da7bb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__99-100.png new file mode 100644 index 0000000..da3834d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__holy_arms__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__01-05.png new file mode 100644 index 0000000..3b13fcc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__06-10.png new file mode 100644 index 0000000..8cdfcde Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__101-150.png new file mode 100644 index 0000000..9161d38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__11-20.png new file mode 100644 index 0000000..d4bb9d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__151-175.png new file mode 100644 index 0000000..f57af9f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__176-200.png new file mode 100644 index 0000000..764a649 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__201-250.png new file mode 100644 index 0000000..2b5518f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__21-30.png new file mode 100644 index 0000000..98d0a1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__251plus.png new file mode 100644 index 0000000..7e4c9a7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__31-40.png new file mode 100644 index 0000000..3640994 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__41-50.png new file mode 100644 index 0000000..2fd549c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__51-65.png new file mode 100644 index 0000000..c0ae0a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__66.png new file mode 100644 index 0000000..e138d0d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__67-70.png new file mode 100644 index 0000000..8e8c845 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__71-80.png new file mode 100644 index 0000000..b32357e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__81-90.png new file mode 100644 index 0000000..8824fd0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__91-95.png new file mode 100644 index 0000000..4b529dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__96-98.png new file mode 100644 index 0000000..c62c4c1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__99-100.png new file mode 100644 index 0000000..09c1edd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__magic__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__01-05.png new file mode 100644 index 0000000..38541b8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__06-10.png new file mode 100644 index 0000000..c638ccf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__101-150.png new file mode 100644 index 0000000..eb2f28a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__11-20.png new file mode 100644 index 0000000..6720623 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__151-175.png new file mode 100644 index 0000000..e211672 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__176-200.png new file mode 100644 index 0000000..807896d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__201-250.png new file mode 100644 index 0000000..7d13110 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__21-30.png new file mode 100644 index 0000000..faf2559 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__251plus.png new file mode 100644 index 0000000..4aa10b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__31-40.png new file mode 100644 index 0000000..8318d84 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__41-50.png new file mode 100644 index 0000000..78cfec2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__51-65.png new file mode 100644 index 0000000..cd9cf61 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__66.png new file mode 100644 index 0000000..e46e224 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__67-70.png new file mode 100644 index 0000000..1a905aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__71-80.png new file mode 100644 index 0000000..3daa6dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__81-90.png new file mode 100644 index 0000000..74eaa77 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__91-95.png new file mode 100644 index 0000000..aa3334b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__96-98.png new file mode 100644 index 0000000..1d19501 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__99-100.png new file mode 100644 index 0000000..c5f2ee1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__mithril__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__01-05.png new file mode 100644 index 0000000..1f51fce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__06-10.png new file mode 100644 index 0000000..f2132e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__101-150.png new file mode 100644 index 0000000..41a22e8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__11-20.png new file mode 100644 index 0000000..953c7dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__151-175.png new file mode 100644 index 0000000..1d9626b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__176-200.png new file mode 100644 index 0000000..4bcda8d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__201-250.png new file mode 100644 index 0000000..067df31 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__21-30.png new file mode 100644 index 0000000..c450cfc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__251plus.png new file mode 100644 index 0000000..50fd19b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__31-40.png new file mode 100644 index 0000000..7369d21 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__41-50.png new file mode 100644 index 0000000..f74fa4e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__51-65.png new file mode 100644 index 0000000..fb2d711 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__66.png new file mode 100644 index 0000000..309b658 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__67-70.png new file mode 100644 index 0000000..08a97f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__71-80.png new file mode 100644 index 0000000..337fe57 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__81-90.png new file mode 100644 index 0000000..9e7d6d6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__91-95.png new file mode 100644 index 0000000..0e91e94 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__96-98.png new file mode 100644 index 0000000..512dad9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__99-100.png new file mode 100644 index 0000000..a7a22ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__normal__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__01-05.png new file mode 100644 index 0000000..4b253f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__06-10.png new file mode 100644 index 0000000..5a7c866 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__101-150.png new file mode 100644 index 0000000..70f3218 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__11-20.png new file mode 100644 index 0000000..82f5360 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__151-175.png new file mode 100644 index 0000000..524899f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__176-200.png new file mode 100644 index 0000000..5c48014 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__201-250.png new file mode 100644 index 0000000..9db9366 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__21-30.png new file mode 100644 index 0000000..3a55f97 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__251plus.png new file mode 100644 index 0000000..c9860ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__31-40.png new file mode 100644 index 0000000..0d11b2c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__41-50.png new file mode 100644 index 0000000..c2c5caf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__51-65.png new file mode 100644 index 0000000..40d9aa1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__66.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__66.png new file mode 100644 index 0000000..3d9211f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__67-70.png new file mode 100644 index 0000000..1383f01 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__71-80.png new file mode 100644 index 0000000..a6121e9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__81-90.png new file mode 100644 index 0000000..9a6dae6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__91-95.png new file mode 100644 index 0000000..8f6341a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__96-98.png new file mode 100644 index 0000000..87751aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__99-100.png new file mode 100644 index 0000000..3d2c073 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/cells/none__slaying__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/fragments.json new file mode 100644 index 0000000..617c9f2 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/fragments.json @@ -0,0 +1,4052 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 852, + "Width": 15, + "Height": 13, + "Text": "97", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 102, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "01-05", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 91, + "Left": 162, + "Width": 115, + "Height": 9, + "Text": "Weapon shatters on foe\u0027s solid", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 162, + "Width": 19, + "Height": 9, + "Text": "form.", + "Confidence": null, + "CenterX": 171.5 + }, + { + "PageNumber": 1, + "Top": 91, + "Left": 294, + "Width": 131, + "Height": 9, + "Text": "You fumble your weapon (roll on the", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 294, + "Width": 48, + "Height": 9, + "Text": "fumble table).", + "Confidence": null, + "CenterX": 318 + }, + { + "PageNumber": 1, + "Top": 91, + "Left": 440, + "Width": 138, + "Height": 9, + "Text": "Your weapon bites hard, but you move", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 440, + "Width": 77, + "Height": 9, + "Text": "poorly. Lose initiative.", + "Confidence": null, + "CenterX": 478.5 + }, + { + "PageNumber": 1, + "Top": 91, + "Left": 590, + "Width": 123, + "Height": 9, + "Text": "Glancing blow shakes you up. You", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 590, + "Width": 110, + "Height": 9, + "Text": "suffer a -10 penalty next round.", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 91, + "Left": 739, + "Width": 140, + "Height": 9, + "Text": "Blade touches foe\u0027s exposed skin. Your", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 101, + "Left": 739, + "Width": 54, + "Height": 9, + "Text": "weapon hisses.", + "Confidence": null, + "CenterX": 766 + }, + { + "PageNumber": 1, + "Top": 119, + "Left": 268, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 119, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 119, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 119, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 119, + "Left": 871, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 878 + }, + { + "PageNumber": 1, + "Top": 144, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "06-10", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 133, + "Left": 162, + "Width": 55, + "Height": 9, + "Text": "Solid, but futile.", + "Confidence": null, + "CenterX": 189.5 + }, + { + "PageNumber": 1, + "Top": 133, + "Left": 294, + "Width": 115, + "Height": 9, + "Text": "Blow to foe\u0027s side. Pretty sparks.", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 133, + "Left": 440, + "Width": 140, + "Height": 9, + "Text": "Your weapon glances off foe\u0027s side and", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 440, + "Width": 99, + "Height": 9, + "Text": "leaves a measurable wound.", + "Confidence": null, + "CenterX": 489.5 + }, + { + "PageNumber": 1, + "Top": 133, + "Left": 590, + "Width": 120, + "Height": 9, + "Text": "Your swing lands lightly. You had", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 590, + "Width": 58, + "Height": 9, + "Text": "hoped for better.", + "Confidence": null, + "CenterX": 619 + }, + { + "PageNumber": 1, + "Top": 133, + "Left": 739, + "Width": 135, + "Height": 9, + "Text": "Your blow is solid, but lands on a well", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 739, + "Width": 52, + "Height": 9, + "Text": "protected area.", + "Confidence": null, + "CenterX": 765 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 273, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 419, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 426 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 568, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 717, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 724 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 867, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 876.5 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 114, + "Width": 33, + "Height": 12, + "Text": "11-20", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 162, + "Width": 115, + "Height": 9, + "Text": "Hardly enough for victory. Weak", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 162, + "Width": 38, + "Height": 9, + "Text": "side strike.", + "Confidence": null, + "CenterX": 181 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 294, + "Width": 124, + "Height": 9, + "Text": "Your blade guides itself in, but you", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 294, + "Width": 77, + "Height": 9, + "Text": "miss the opportunity.", + "Confidence": null, + "CenterX": 332.5 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 440, + "Width": 125, + "Height": 9, + "Text": "Blow shoulder. It\u0027s well placed, but", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 440, + "Width": 127, + "Height": 9, + "Text": "you\u0027ll need a lucky shot at this pace.", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 590, + "Width": 133, + "Height": 9, + "Text": "Your strike lands solid and righteous.", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 590, + "Width": 125, + "Height": 9, + "Text": "You wish it had landed a little more.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 739, + "Width": 128, + "Height": 9, + "Text": "A mortal blow poorly placed. Maybe", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 739, + "Width": 86, + "Height": 9, + "Text": "you\u0027re holding it wrong?", + "Confidence": null, + "CenterX": 782 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 273, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 419, + "Width": 14, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 426 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 568, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 575 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 867, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 876.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "21-30", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 162, + "Width": 128, + "Height": 9, + "Text": "Strong blow to foe\u0027s forearm yields", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 162, + "Width": 43, + "Height": 9, + "Text": "its measure.", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 294, + "Width": 142, + "Height": 9, + "Text": "You give out an epic strike, but foe is an", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 294, + "Width": 50, + "Height": 9, + "Text": "epic creature.", + "Confidence": null, + "CenterX": 319 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 440, + "Width": 142, + "Height": 9, + "Text": "You strike is solid, but your grip fails on", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 440, + "Width": 26, + "Height": 9, + "Text": "impact.", + "Confidence": null, + "CenterX": 453 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 590, + "Width": 142, + "Height": 9, + "Text": "You trip foe and slam his shin with your", + "Confidence": null, + "CenterX": 661 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 590, + "Width": 117, + "Height": 9, + "Text": "weapon. You are not being noble.", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 221, + "Left": 739, + "Width": 149, + "Height": 9, + "Text": "Bruise to foe\u0027s shoulder is made worse by", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 739, + "Width": 126, + "Height": 9, + "Text": "your weapon\u0027s strong enchantment.", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 273, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 867, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 876.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "31-40", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 162, + "Width": 104, + "Height": 9, + "Text": "Strike to beast\u0027s chest. Some", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 162, + "Width": 120, + "Height": 9, + "Text": "unseen piece of protection blocks", + "Confidence": null, + "CenterX": 222 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 162, + "Width": 41, + "Height": 9, + "Text": "your attack.", + "Confidence": null, + "CenterX": 182.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 294, + "Width": 143, + "Height": 9, + "Text": "Hard strike to foe\u0027s thigh. It glances off.", + "Confidence": null, + "CenterX": 365.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 294, + "Width": 136, + "Height": 9, + "Text": "You really wish that had landed better.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 440, + "Width": 130, + "Height": 9, + "Text": "Your strike lands in a critical spot on", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 440, + "Width": 122, + "Height": 9, + "Text": "foe\u0027s abdomen. You are unable to", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 440, + "Width": 133, + "Height": 9, + "Text": "mortally wound him, for the moment.", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 590, + "Width": 141, + "Height": 9, + "Text": "Your weapon sparks against the beast\u0027s", + "Confidence": null, + "CenterX": 660.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 590, + "Width": 139, + "Height": 9, + "Text": "hide and he realizes its mighty blessing.", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 739, + "Width": 135, + "Height": 9, + "Text": "Your weapon strikes foe like a clap of", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 739, + "Width": 131, + "Height": 9, + "Text": "thunder, clawing at his very essence.", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 302, + "Left": 268, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 302, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 302, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 302, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 302, + "Left": 867, + "Width": 21, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 877.5 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "41-50", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 162, + "Width": 113, + "Height": 9, + "Text": "Strike lands upon foe\u0027s side. He", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 162, + "Width": 111, + "Height": 9, + "Text": "responds by leaping back away", + "Confidence": null, + "CenterX": 217.5 + }, + { + "PageNumber": 1, + "Top": 337, + "Left": 162, + "Width": 34, + "Height": 9, + "Text": "from you.", + "Confidence": null, + "CenterX": 179 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 294, + "Width": 133, + "Height": 9, + "Text": "Your blade bites into foe\u0027s skin with a", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 294, + "Width": 131, + "Height": 9, + "Text": "hiss. Foe roars out at you. You ready", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 337, + "Left": 294, + "Width": 104, + "Height": 9, + "Text": "yourself for what comes next.", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 440, + "Width": 120, + "Height": 9, + "Text": "Hack at foe\u0027s neck, landing on his", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 440, + "Width": 131, + "Height": 9, + "Text": "shoulder. He moves before the strike", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 337, + "Left": 440, + "Width": 45, + "Height": 9, + "Text": "bites deeper.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 590, + "Width": 122, + "Height": 9, + "Text": "Heavy blow with all of your weight", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 590, + "Width": 101, + "Height": 9, + "Text": "behind it hits foe in his side.", + "Confidence": null, + "CenterX": 640.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 739, + "Width": 126, + "Height": 9, + "Text": "Your weapon drives deep into foe\u0027s", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 327, + "Left": 739, + "Width": 132, + "Height": 9, + "Text": "abdomen. Blood pours out of foe. He", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 337, + "Left": 739, + "Width": 131, + "Height": 9, + "Text": "looks looks like a statue in a fountain.", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 268, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 833, + "Width": 53, + "Height": 9, + "Text": "\u002B12H \u2013 \u220F \u2013 5\u222B", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "51-65", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 162, + "Width": 113, + "Height": 9, + "Text": "Blow crashes into foe\u0027s leg. The", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 162, + "Width": 120, + "Height": 9, + "Text": "damage is obvious by the look on", + "Confidence": null, + "CenterX": 222 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 162, + "Width": 29, + "Height": 9, + "Text": "his face.", + "Confidence": null, + "CenterX": 176.5 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 294, + "Width": 126, + "Height": 9, + "Text": "Blow to foe\u0027s back. It concerns him", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 294, + "Width": 66, + "Height": 9, + "Text": "greatly. Good luck.", + "Confidence": null, + "CenterX": 327 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 440, + "Width": 138, + "Height": 9, + "Text": "Grip foe\u0027s hide for leverage, before you", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 440, + "Width": 136, + "Height": 9, + "Text": "strike. Blow lands solid, but he throws", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 440, + "Width": 34, + "Height": 9, + "Text": "you clear.", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 590, + "Width": 116, + "Height": 9, + "Text": "Strike lands lightly against foe\u0027s", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 590, + "Width": 133, + "Height": 9, + "Text": "shoulder. You have the initiative for 3", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 590, + "Width": 131, + "Height": 9, + "Text": "rounds. Foe\u0027s blood gets all over you.", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 370, + "Left": 739, + "Width": 132, + "Height": 9, + "Text": "Cave in the side of foe\u0027s head. Foe is", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 739, + "Width": 141, + "Height": 9, + "Text": "down and dies in 2 rounds. Your foot is", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 739, + "Width": 105, + "Height": 9, + "Text": "pinned under him for a round.", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 268, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 402, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 679, + "Width": 52, + "Height": 9, + "Text": "\u002B10H \u2013 \u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 408, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 440, + "Left": 123, + "Width": 15, + "Height": 12, + "Text": "66", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 162, + "Width": 111, + "Height": 9, + "Text": "Well placed strike to foe\u0027s neck", + "Confidence": null, + "CenterX": 217.5 + }, + { + "PageNumber": 1, + "Top": 433, + "Left": 162, + "Width": 116, + "Height": 9, + "Text": "severs the jugular vein. Foe falls", + "Confidence": null, + "CenterX": 220 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 162, + "Width": 74, + "Height": 9, + "Text": "and dies in 6 rounds.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 294, + "Width": 124, + "Height": 9, + "Text": "Vicious strike to abdomenal region", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 433, + "Left": 294, + "Width": 133, + "Height": 9, + "Text": "destroys a variety of organs. Foe falls", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 294, + "Width": 135, + "Height": 9, + "Text": "over with a crash. He dies in 3 rounds.", + "Confidence": null, + "CenterX": 361.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 440, + "Width": 137, + "Height": 9, + "Text": "Strike to foe\u0027s heart. He dies instantly.", + "Confidence": null, + "CenterX": 508.5 + }, + { + "PageNumber": 1, + "Top": 433, + "Left": 440, + "Width": 143, + "Height": 9, + "Text": "You hit him one more time to make sure", + "Confidence": null, + "CenterX": 511.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 440, + "Width": 91, + "Height": 9, + "Text": "he is dead. Very clean kill.", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 590, + "Width": 133, + "Height": 9, + "Text": "Drive home your attack right between", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 433, + "Left": 590, + "Width": 136, + "Height": 9, + "Text": "your foe\u0027s eyes. He dies instantly. You", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 590, + "Width": 83, + "Height": 9, + "Text": "have half the round left.", + "Confidence": null, + "CenterX": 631.5 + }, + { + "PageNumber": 1, + "Top": 424, + "Left": 739, + "Width": 109, + "Height": 9, + "Text": "Chest wound knocks foe down.", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 277, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 572, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 837, + "Width": 48, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 494, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "67-70", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 162, + "Width": 125, + "Height": 9, + "Text": "Foe\u0027s leg catches your failing strike", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 487, + "Left": 162, + "Width": 110, + "Height": 9, + "Text": "at the right moment. The leg is", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 162, + "Width": 49, + "Height": 9, + "Text": "bruised badly.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 294, + "Width": 134, + "Height": 9, + "Text": "Blow to thigh leaves a bad bruise. Foe", + "Confidence": null, + "CenterX": 361 + }, + { + "PageNumber": 1, + "Top": 487, + "Left": 294, + "Width": 140, + "Height": 9, + "Text": "almost falls over on you. You leap clear.", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 440, + "Width": 138, + "Height": 9, + "Text": "Strike to foe\u0027s thigh. Despite his size, it", + "Confidence": null, + "CenterX": 509 + }, + { + "PageNumber": 1, + "Top": 487, + "Left": 440, + "Width": 141, + "Height": 9, + "Text": "sends him back. Your Mithril bites deep", + "Confidence": null, + "CenterX": 510.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 440, + "Width": 97, + "Height": 9, + "Text": "and leaves a painful wound.", + "Confidence": null, + "CenterX": 488.5 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 590, + "Width": 131, + "Height": 9, + "Text": "Foe loses his footing with your solid", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 487, + "Left": 590, + "Width": 143, + "Height": 9, + "Text": "strike. He takes time to gain his balance.", + "Confidence": null, + "CenterX": 661.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 590, + "Width": 88, + "Height": 9, + "Text": "You are in good position.", + "Confidence": null, + "CenterX": 634 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 739, + "Width": 132, + "Height": 9, + "Text": "Plunge weapon into foe\u0027s heart. Your", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 487, + "Left": 739, + "Width": 131, + "Height": 9, + "Text": "weapon seems to know the way. The", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 497, + "Left": 739, + "Width": 121, + "Height": 9, + "Text": "wound is instantly mortal. He dies.", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 268, + "Width": 21, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 486, + "Width": 96, + "Height": 9, + "Text": "\u002B15H \u2013 2\u2211 \u2013 (-20) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 653, + "Width": 78, + "Height": 9, + "Text": "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 516, + "Left": 838, + "Width": 47, + "Height": 9, + "Text": "\u002B20H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 861.5 + }, + { + "PageNumber": 1, + "Top": 547, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "71-80", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 530, + "Left": 162, + "Width": 102, + "Height": 9, + "Text": "Arm strike gives foe a bruise.", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 530, + "Left": 294, + "Width": 123, + "Height": 9, + "Text": "Minor forearm wound. The beast\u0027s", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 540, + "Left": 294, + "Width": 123, + "Height": 9, + "Text": "guard is down for an instant. Press", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 294, + "Width": 41, + "Height": 9, + "Text": "your attack.", + "Confidence": null, + "CenterX": 314.5 + }, + { + "PageNumber": 1, + "Top": 530, + "Left": 440, + "Width": 130, + "Height": 9, + "Text": "Tear him up! Your strike lands along", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 540, + "Left": 440, + "Width": 121, + "Height": 9, + "Text": "foe\u0027s arm. The wound is bleeding", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 440, + "Width": 129, + "Height": 9, + "Text": "everywhere. It\u0027s all over you, as well.", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 530, + "Left": 590, + "Width": 131, + "Height": 9, + "Text": "Tear open foe\u0027s leg with a brutal side", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 540, + "Left": 590, + "Width": 137, + "Height": 9, + "Text": "swing. Foe is unbalanced and bleeding.", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 590, + "Width": 76, + "Height": 9, + "Text": "His guard goes down.", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 530, + "Left": 739, + "Width": 138, + "Height": 9, + "Text": "Strike comes up under foe\u0027s arm. Blow", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 540, + "Left": 739, + "Width": 123, + "Height": 9, + "Text": "breaks bones in upper arm. Arm is", + "Confidence": null, + "CenterX": 800.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 739, + "Width": 98, + "Height": 9, + "Text": "useless. Foe stumbles back.", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 568, + "Left": 268, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 568, + "Left": 385, + "Width": 48, + "Height": 9, + "Text": "\u002B13H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 409 + }, + { + "PageNumber": 1, + "Top": 568, + "Left": 516, + "Width": 66, + "Height": 9, + "Text": "\u002B20H \u2013 2\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 549 + }, + { + "PageNumber": 1, + "Top": 568, + "Left": 647, + "Width": 84, + "Height": 9, + "Text": "\u002B9H \u2013 \u2211\u220F \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 689 + }, + { + "PageNumber": 1, + "Top": 568, + "Left": 844, + "Width": 41, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211", + "Confidence": null, + "CenterX": 864.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "81-90", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 584, + "Left": 162, + "Width": 106, + "Height": 9, + "Text": "Strong blast to foe\u0027s stomach", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 162, + "Width": 124, + "Height": 9, + "Text": "staggers foe. His guard drops for a", + "Confidence": null, + "CenterX": 224 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 162, + "Width": 101, + "Height": 9, + "Text": "moment. You have a chance.", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 584, + "Left": 294, + "Width": 120, + "Height": 9, + "Text": "Hard blow to foe\u0027s back. If foe has", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 294, + "Width": 140, + "Height": 9, + "Text": "wings they are damaged. If not, foe has", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 294, + "Width": 42, + "Height": 9, + "Text": "broken ribs.", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 584, + "Left": 440, + "Width": 134, + "Height": 9, + "Text": "Reverse your strike to catch foe in his", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 440, + "Width": 123, + "Height": 9, + "Text": "lower leg. He stumbles back out of", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 440, + "Width": 24, + "Height": 9, + "Text": "reach.", + "Confidence": null, + "CenterX": 452 + }, + { + "PageNumber": 1, + "Top": 584, + "Left": 590, + "Width": 132, + "Height": 9, + "Text": "With a mighty cross swing you strike", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 590, + "Width": 129, + "Height": 9, + "Text": "foe\u0027s head. If he has a helm (or hard", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 590, + "Width": 135, + "Height": 9, + "Text": "head) you knock him out. If he has no", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 590, + "Width": 122, + "Height": 9, + "Text": "helm, you behead him and he dies.", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 584, + "Left": 739, + "Width": 149, + "Height": 9, + "Text": "You see the opportunity you have needed.", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 739, + "Width": 147, + "Height": 9, + "Text": "A legendary strike to foe\u0027s chest destroys", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 739, + "Width": 137, + "Height": 9, + "Text": "heart and other vital organs. He drops", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 613, + "Left": 739, + "Width": 63, + "Height": 9, + "Text": "and dies instantly.", + "Confidence": null, + "CenterX": 770.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 209, + "Width": 78, + "Height": 9, + "Text": "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 248 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 377, + "Width": 59, + "Height": 9, + "Text": "\u002B22H \u2013 3\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 496, + "Width": 86, + "Height": 9, + "Text": "\u002B15H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 539 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 838, + "Width": 47, + "Height": 9, + "Text": "\u002B25H \u2013 (\u002B15)", + "Confidence": null, + "CenterX": 861.5 + }, + { + "PageNumber": 1, + "Top": 663, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "91-95", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 162, + "Width": 114, + "Height": 9, + "Text": "Strong blow to foe\u0027s leg yields a", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 162, + "Width": 111, + "Height": 9, + "Text": "gaping wound. If foe has blood,", + "Confidence": null, + "CenterX": 217.5 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 162, + "Width": 62, + "Height": 9, + "Text": "you see a lot of it.", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 294, + "Width": 121, + "Height": 9, + "Text": "You strike at foe\u0027s face. It hits and", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 294, + "Width": 96, + "Height": 9, + "Text": "causes him some difficulty.", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 440, + "Width": 136, + "Height": 9, + "Text": "Weapon impacts upon foe\u0027s head with", + "Confidence": null, + "CenterX": 508 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 440, + "Width": 144, + "Height": 9, + "Text": "unmatched force. Foe comes over and is", + "Confidence": null, + "CenterX": 512 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 440, + "Width": 45, + "Height": 9, + "Text": "knocked out.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 590, + "Width": 117, + "Height": 9, + "Text": "Your victory strike. Your weapon", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 590, + "Width": 141, + "Height": 9, + "Text": "crashes into foe\u0027s chest and downs him", + "Confidence": null, + "CenterX": 660.5 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 590, + "Width": 118, + "Height": 9, + "Text": "for 2 rounds. He dies in 6 rounds.", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 739, + "Width": 141, + "Height": 9, + "Text": "Blow to foe\u0027s leg slashes an artery open.", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 739, + "Width": 138, + "Height": 9, + "Text": "Foe falls gripping his leg. He is inactive", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 739, + "Width": 114, + "Height": 9, + "Text": "for 12 sad rounds and then dies.", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 684, + "Left": 203, + "Width": 84, + "Height": 9, + "Text": "\u002B18H \u2013 3\u2211 \u2013 5\u222B \u2013(-10)", + "Confidence": null, + "CenterX": 245 + }, + { + "PageNumber": 1, + "Top": 684, + "Left": 347, + "Width": 87, + "Height": 9, + "Text": "\u002B5H \u2013 3\u222B \u2013 (-25) \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 390.5 + }, + { + "PageNumber": 1, + "Top": 684, + "Left": 535, + "Width": 47, + "Height": 9, + "Text": "\u002B30H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 558.5 + }, + { + "PageNumber": 1, + "Top": 684, + "Left": 722, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 726.5 + }, + { + "PageNumber": 1, + "Top": 684, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 721, + "Left": 114, + "Width": 34, + "Height": 12, + "Text": "96-98", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 162, + "Width": 109, + "Height": 9, + "Text": "Plunge your weapon into foe\u0027s", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 162, + "Width": 119, + "Height": 9, + "Text": "heart. Foe dies instantly, and falls", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 720, + "Left": 162, + "Width": 102, + "Height": 9, + "Text": "on you. You are pinned for 6", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 162, + "Width": 64, + "Height": 9, + "Text": "rounds and \u002B20H!", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 294, + "Width": 136, + "Height": 9, + "Text": "Your weapon plunges into foe\u0027s chest.", + "Confidence": null, + "CenterX": 362 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 294, + "Width": 129, + "Height": 9, + "Text": "He drops and dies in 3 rounds. Your", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 720, + "Left": 294, + "Width": 133, + "Height": 9, + "Text": "weapon is stuck in him for 12 rounds.", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 440, + "Width": 132, + "Height": 9, + "Text": "Strike foe in his head and destroy his", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 440, + "Width": 120, + "Height": 9, + "Text": "brain. If that\u0027s not power, what is?", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 720, + "Left": 440, + "Width": 120, + "Height": 9, + "Text": "You have half the round left to act.", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 590, + "Width": 142, + "Height": 9, + "Text": "Strike foe in his ear. He dies next round.", + "Confidence": null, + "CenterX": 661 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 590, + "Width": 136, + "Height": 9, + "Text": "You are very confident in your combat", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 720, + "Left": 590, + "Width": 20, + "Height": 9, + "Text": "skills.", + "Confidence": null, + "CenterX": 600 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 739, + "Width": 142, + "Height": 9, + "Text": "True to its name, your weapon slays foe", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 739, + "Width": 145, + "Height": 9, + "Text": "by crushing his skull. Parts of bone fly in", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 720, + "Left": 739, + "Width": 129, + "Height": 9, + "Text": "all directions. Not a pretty sight. Foe", + "Confidence": null, + "CenterX": 803.5 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 739, + "Width": 104, + "Height": 9, + "Text": "drops instantly to the ground.", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 277, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 572, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 684, + "Width": 47, + "Height": 9, + "Text": "\u002B15H \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 707.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 120, + "Width": 19, + "Height": 12, + "Text": "99-", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 792, + "Left": 120, + "Width": 22, + "Height": 12, + "Text": "100", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 162, + "Width": 126, + "Height": 9, + "Text": "Strike through foe\u0027s lungs. Foe falls", + "Confidence": null, + "CenterX": 225 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 162, + "Width": 107, + "Height": 9, + "Text": "down and dies after 6 rounds.", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 783, + "Left": 162, + "Width": 65, + "Height": 9, + "Text": "Allies get a bonus!", + "Confidence": null, + "CenterX": 194.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 294, + "Width": 138, + "Height": 9, + "Text": "Hard but flat strike. Your weapon takes", + "Confidence": null, + "CenterX": 363 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 294, + "Width": 133, + "Height": 9, + "Text": "much of the impact. In addition to his", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 783, + "Left": 294, + "Width": 110, + "Height": 9, + "Text": "wound, your weapon is broken.", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 440, + "Width": 143, + "Height": 9, + "Text": "You find a weak point and hammer foe\u0027s", + "Confidence": null, + "CenterX": 511.5 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 440, + "Width": 132, + "Height": 9, + "Text": "neck. Your weapon sticks in foe for 2", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 783, + "Left": 440, + "Width": 132, + "Height": 9, + "Text": "rounds, while he struggles to breathe.", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 440, + "Width": 70, + "Height": 9, + "Text": "He dies in 6 rounds.", + "Confidence": null, + "CenterX": 475 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 590, + "Width": 132, + "Height": 9, + "Text": "Your precision surgery blinds foe. He", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 590, + "Width": 125, + "Height": 9, + "Text": "quickly loses his direction and is in", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 783, + "Left": 590, + "Width": 27, + "Height": 9, + "Text": "trouble.", + "Confidence": null, + "CenterX": 603.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 739, + "Width": 135, + "Height": 9, + "Text": "Strike foe in his face. His cheek bones", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 739, + "Width": 137, + "Height": 9, + "Text": "collapse. His neck is a bloody pulp. He", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 783, + "Left": 739, + "Width": 148, + "Height": 9, + "Text": "dies a round later. Your weapon is lodged", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 739, + "Width": 22, + "Height": 9, + "Text": "in foe.", + "Confidence": null, + "CenterX": 750 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 240, + "Width": 47, + "Height": 9, + "Text": "\u002B24H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 390, + "Width": 44, + "Height": 9, + "Text": "\u002B35H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 412 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 532, + "Width": 50, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 557 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 656, + "Width": 75, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (-100)", + "Confidence": null, + "CenterX": 693.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 841, + "Left": 116, + "Width": 27, + "Height": 12, + "Text": "101-", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 120, + "Width": 22, + "Height": 12, + "Text": "150", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 162, + "Width": 125, + "Height": 9, + "Text": "Awesome strike to shoulder sends", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 162, + "Width": 106, + "Height": 9, + "Text": "foe stumbling. He has trouble", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 162, + "Width": 86, + "Height": 9, + "Text": "getting his balance back.", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 294, + "Width": 131, + "Height": 9, + "Text": "Strike foe in the side of his head. Foe", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 294, + "Width": 140, + "Height": 9, + "Text": "stumbles back a few feet before he falls", + "Confidence": null, + "CenterX": 364 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 294, + "Width": 126, + "Height": 9, + "Text": "to the ground. He is out for 3 hours.", + "Confidence": null, + "CenterX": 357 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 440, + "Width": 131, + "Height": 9, + "Text": "Catch foe in chin with all your weight", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 440, + "Width": 132, + "Height": 9, + "Text": "behind the weapon. Head snaps back", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 440, + "Width": 144, + "Height": 9, + "Text": "and chin shatters. Foe is knocked out for", + "Confidence": null, + "CenterX": 512 + }, + { + "PageNumber": 1, + "Top": 856, + "Left": 440, + "Width": 30, + "Height": 9, + "Text": "30 days.", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 590, + "Width": 129, + "Height": 9, + "Text": "You miss foe\u0027s weapon arm, but the", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 590, + "Width": 134, + "Height": 9, + "Text": "strike lands on foe\u0027s knee. The results", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 590, + "Width": 52, + "Height": 9, + "Text": "are acceptable.", + "Confidence": null, + "CenterX": 616 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 739, + "Width": 143, + "Height": 9, + "Text": "Sever a vein in foe\u0027s forelimb. He falls to", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 739, + "Width": 151, + "Height": 9, + "Text": "his knees. Blood is everywhere. He dies in", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 739, + "Width": 36, + "Height": 9, + "Text": "6 rounds.", + "Confidence": null, + "CenterX": 757 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 212, + "Width": 75, + "Height": 9, + "Text": "\u002B50H \u2013 3\u2211\u220F \u2013 (-35)", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 387, + "Width": 47, + "Height": 9, + "Text": "\u002B20H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 410.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 563, + "Width": 19, + "Height": 9, + "Text": "\u002B60H", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 650, + "Width": 81, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 690.5 + }, + { + "PageNumber": 1, + "Top": 874, + "Left": 815, + "Width": 71, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211\u220F \u2013 12\u222B", + "Confidence": null, + "CenterX": 850.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 116, + "Width": 27, + "Height": 12, + "Text": "151-", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 918, + "Left": 120, + "Width": 22, + "Height": 12, + "Text": "175", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 162, + "Width": 125, + "Height": 9, + "Text": "Strike drives bone into kidneys and", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 162, + "Width": 103, + "Height": 9, + "Text": "liver. Foe drops and dies in 6", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 162, + "Width": 71, + "Height": 9, + "Text": "rounds. What a pity.", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 294, + "Width": 142, + "Height": 9, + "Text": "Strike shatters foe\u0027s jaw and sends it up", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 294, + "Width": 142, + "Height": 9, + "Text": "into his brain. Foe is dead before he hits", + "Confidence": null, + "CenterX": 365 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 294, + "Width": 116, + "Height": 9, + "Text": "the ground. Half round left to act.", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 440, + "Width": 143, + "Height": 9, + "Text": "Strike foe in the abdomen. The wound is", + "Confidence": null, + "CenterX": 511.5 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 440, + "Width": 145, + "Height": 9, + "Text": "mortal. A variety of important organs are", + "Confidence": null, + "CenterX": 512.5 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 440, + "Width": 128, + "Height": 9, + "Text": "destroyed on impact. Foe drops and", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 919, + "Left": 440, + "Width": 68, + "Height": 9, + "Text": "dies after 6 rounds.", + "Confidence": null, + "CenterX": 474 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 590, + "Width": 142, + "Height": 9, + "Text": "Smooth strike to foe\u0027s cheek. Just as he", + "Confidence": null, + "CenterX": 661 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 590, + "Width": 131, + "Height": 9, + "Text": "was about to deal you a deadly blow,", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 590, + "Width": 140, + "Height": 9, + "Text": "you crush the side of his head. He dies.", + "Confidence": null, + "CenterX": 660 + }, + { + "PageNumber": 1, + "Top": 919, + "Left": 590, + "Width": 99, + "Height": 9, + "Text": "You have half the round left.", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 890, + "Left": 739, + "Width": 127, + "Height": 9, + "Text": "You almost sever foe\u0027s head, with a", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 739, + "Width": 139, + "Height": 9, + "Text": "mighty blow to his neck. Foe is inactive", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 739, + "Width": 74, + "Height": 9, + "Text": "and dies in 5 rounds.", + "Confidence": null, + "CenterX": 776 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 277, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 424, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 428.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 572, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 721, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 725.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 867, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 876.5 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 114, + "Width": 30, + "Height": 12, + "Text": "176 -", + "Confidence": null, + "CenterX": 129 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 120, + "Width": 22, + "Height": 12, + "Text": "200", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 162, + "Width": 110, + "Height": 9, + "Text": "Strike to bowels destroys foe\u0027s", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 962, + "Left": 162, + "Width": 125, + "Height": 9, + "Text": "abdomenal areas. Foe\u0027s blood is all", + "Confidence": null, + "CenterX": 224.5 + }, + { + "PageNumber": 1, + "Top": 972, + "Left": 162, + "Width": 112, + "Height": 9, + "Text": "over you. Foe dies in 12 rounds.", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 294, + "Width": 133, + "Height": 9, + "Text": "Shot along side foe\u0027s head penetrates", + "Confidence": null, + "CenterX": 360.5 + }, + { + "PageNumber": 1, + "Top": 962, + "Left": 294, + "Width": 110, + "Height": 9, + "Text": "his ear and he dies in 3 rounds.", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 972, + "Left": 294, + "Width": 86, + "Height": 9, + "Text": "You are mighty in battle.", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 440, + "Width": 141, + "Height": 9, + "Text": "Death comes swiftly! Your strike severs", + "Confidence": null, + "CenterX": 510.5 + }, + { + "PageNumber": 1, + "Top": 962, + "Left": 440, + "Width": 131, + "Height": 9, + "Text": "an artery in foe\u0027s leg. Foe fights for 2", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 972, + "Left": 440, + "Width": 116, + "Height": 9, + "Text": "rounds, then drops and dies in 6", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 440, + "Width": 27, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 590, + "Width": 143, + "Height": 9, + "Text": "Strike penetrates to foe\u0027s spine. Spine is", + "Confidence": null, + "CenterX": 661.5 + }, + { + "PageNumber": 1, + "Top": 962, + "Left": 590, + "Width": 130, + "Height": 9, + "Text": "broken and foe is paralyzed from the", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 972, + "Left": 590, + "Width": 133, + "Height": 9, + "Text": "waist down. You will not have trouble", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 590, + "Width": 38, + "Height": 9, + "Text": "killing him.", + "Confidence": null, + "CenterX": 609 + }, + { + "PageNumber": 1, + "Top": 952, + "Left": 739, + "Width": 141, + "Height": 9, + "Text": "Strike to abdomen damages a variety of", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 962, + "Left": 739, + "Width": 144, + "Height": 9, + "Text": "organs. Internal bleeding will kill foe in 4", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 972, + "Left": 739, + "Width": 136, + "Height": 9, + "Text": "rounds. You have half the round to act.", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 240, + "Width": 47, + "Height": 9, + "Text": "\u002B35H \u2013 (\u002B15)", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 387, + "Width": 47, + "Height": 9, + "Text": "\u002B10H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 410.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 536, + "Width": 45, + "Height": 9, + "Text": "\u002B5H \u2013 2(-20)", + "Confidence": null, + "CenterX": 558.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 713, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 867, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 876.5 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 116, + "Width": 27, + "Height": 12, + "Text": "201-", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 1044, + "Left": 120, + "Width": 22, + "Height": 12, + "Text": "250", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 1016, + "Left": 162, + "Width": 128, + "Height": 9, + "Text": "Blow to foe\u0027s forearm severs a vein.", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 1026, + "Left": 162, + "Width": 117, + "Height": 9, + "Text": "Foe dies in 7 rounds from shock", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 162, + "Width": 122, + "Height": 9, + "Text": "and blood loss. He is still standing.", + "Confidence": null, + "CenterX": 223 + }, + { + "PageNumber": 1, + "Top": 1016, + "Left": 294, + "Width": 129, + "Height": 9, + "Text": "Strike to foe\u0027s back. Hit severs spine.", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 1026, + "Left": 294, + "Width": 130, + "Height": 9, + "Text": "Foe is paralyzed from the neck down.", + "Confidence": null, + "CenterX": 359 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 294, + "Width": 106, + "Height": 9, + "Text": "Sadly, your weapon is broken.", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 1016, + "Left": 440, + "Width": 134, + "Height": 9, + "Text": "Heart strike. Your foe dies in true epic", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 1026, + "Left": 440, + "Width": 137, + "Height": 9, + "Text": "form. He tumbles backwards and lands", + "Confidence": null, + "CenterX": 508.5 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 440, + "Width": 132, + "Height": 9, + "Text": "with a thunderous sound. Your strike", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 440, + "Width": 135, + "Height": 9, + "Text": "knocks you to your knees. Foe is dead.", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 1016, + "Left": 590, + "Width": 139, + "Height": 9, + "Text": "Your weapon swings out and hammers", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 1026, + "Left": 590, + "Width": 128, + "Height": 9, + "Text": "foe\u0027s evil heart. He expires and your", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 590, + "Width": 134, + "Height": 9, + "Text": "sword sings a joyful note. All who see", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 590, + "Width": 124, + "Height": 9, + "Text": "your mighty deed are inspired by it.", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 1016, + "Left": 739, + "Width": 143, + "Height": 9, + "Text": "Snap foe\u0027s head and break his neck. Foe", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 1026, + "Left": 739, + "Width": 140, + "Height": 9, + "Text": "drops and dies. You may direct another", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 1036, + "Left": 739, + "Width": 117, + "Height": 9, + "Text": "attack at anything you can reach.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 220, + "Width": 68, + "Height": 9, + "Text": "\u002B15H \u2013 6\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 254 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 415, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 530, + "Width": 51, + "Height": 9, + "Text": "\u002B20H \u2013 2(\u002B15)", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 680, + "Width": 51, + "Height": 9, + "Text": "\u002B25H \u2013 3(\u002B20)", + "Confidence": null, + "CenterX": 705.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 116, + "Width": 30, + "Height": 12, + "Text": "251\u002B", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 162, + "Width": 123, + "Height": 9, + "Text": "You grapple your foe and deal him", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 162, + "Width": 114, + "Height": 9, + "Text": "a mighty blow. You are knocked", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 162, + "Width": 88, + "Height": 9, + "Text": "out. Foe is also impaired.", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 294, + "Width": 129, + "Height": 9, + "Text": "Strike through foe\u0027s eye proves fatal.", + "Confidence": null, + "CenterX": 358.5 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 294, + "Width": 137, + "Height": 9, + "Text": "He dies immediately. You avoid his fall.", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 440, + "Width": 131, + "Height": 9, + "Text": "You blind foe with a vicious crossing", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 440, + "Width": 140, + "Height": 9, + "Text": "strike to the eyes. He grips his face and", + "Confidence": null, + "CenterX": 510 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 440, + "Width": 61, + "Height": 9, + "Text": "falls to his kness.", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 590, + "Width": 140, + "Height": 9, + "Text": "Strike to foe\u0027s ribs puntures a lung. Foe", + "Confidence": null, + "CenterX": 660 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 590, + "Width": 141, + "Height": 9, + "Text": "is knocked out. Your weapon is stuck in", + "Confidence": null, + "CenterX": 660.5 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 590, + "Width": 98, + "Height": 9, + "Text": "foe for 6 rounds. Good luck.", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 739, + "Width": 142, + "Height": 9, + "Text": "Drive foe\u0027s eyes back into his skull, with", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 739, + "Width": 150, + "Height": 9, + "Text": "a cross strike. Foe is blind and prone. Foe", + "Confidence": null, + "CenterX": 814 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 739, + "Width": 144, + "Height": 9, + "Text": "is in pain. He does not even try to get up.", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 1118, + "Left": 239, + "Width": 48, + "Height": 9, + "Text": "\u002B35H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 263 + }, + { + "PageNumber": 1, + "Top": 1118, + "Left": 387, + "Width": 47, + "Height": 9, + "Text": "\u002B20H \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 410.5 + }, + { + "PageNumber": 1, + "Top": 1118, + "Left": 510, + "Width": 72, + "Height": 9, + "Text": "\u002B10H \u2013 6\u2211 \u2013 (-100)", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 1118, + "Left": 721, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 725.5 + }, + { + "PageNumber": 1, + "Top": 1118, + "Left": 836, + "Width": 50, + "Height": 9, + "Text": "\u002B6H \u2013 24\u2211\u220F", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 37, + "Left": 258, + "Width": 479, + "Height": 13, + "Text": "4.4 large creature critical strike table", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 178, + "Width": 88, + "Height": 12, + "Text": "normal", + "Confidence": null, + "CenterX": 222 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 330, + "Width": 69, + "Height": 12, + "Text": "magic", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 467, + "Width": 89, + "Height": 12, + "Text": "mithril", + "Confidence": null, + "CenterX": 511.5 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 603, + "Width": 114, + "Height": 12, + "Text": "holy arms", + "Confidence": null, + "CenterX": 660 + }, + { + "PageNumber": 1, + "Top": 69, + "Left": 770, + "Width": 85, + "Height": 12, + "Text": "slaying", + "Confidence": null, + "CenterX": 812.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/pages/page-001.png new file mode 100644 index 0000000..60750ec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/parsed-cells.json new file mode 100644 index 0000000..74ea4f6 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/parsed-cells.json @@ -0,0 +1,6304 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "NORMAL", + "Lines": [ + "Weapon shatters on foe\u0027s solid", + "form.", + "\u002B12H" + ], + "BaseLines": [ + "Weapon shatters on foe\u0027s solid", + "form.", + "\u002B12H" + ], + "RawCellText": "Weapon shatters on foe\u0027s solid\nform.\n\u002B12H", + "DescriptionText": "Weapon shatters on foe\u0027s solid form.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 91, + "Width": 125, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 364, + "BoundsWidth": 500, + "BoundsHeight": 148, + "CropLeft": 600, + "CropTop": 332, + "CropWidth": 596, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "MAGIC", + "Lines": [ + "You fumble your weapon (roll on the", + "fumble table).", + "\u002B15H" + ], + "BaseLines": [ + "You fumble your weapon (roll on the", + "fumble table).", + "\u002B15H" + ], + "RawCellText": "You fumble your weapon (roll on the\nfumble table).\n\u002B15H", + "DescriptionText": "You fumble your weapon (roll on the fumble table).", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 91, + "Width": 140, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 364, + "BoundsWidth": 560, + "BoundsHeight": 148, + "CropLeft": 1128, + "CropTop": 332, + "CropWidth": 656, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your weapon bites hard, but you move", + "poorly. Lose initiative.", + "\u002B18H" + ], + "BaseLines": [ + "Your weapon bites hard, but you move", + "poorly. Lose initiative.", + "\u002B18H" + ], + "RawCellText": "Your weapon bites hard, but you move\npoorly. Lose initiative.\n\u002B18H", + "DescriptionText": "Your weapon bites hard, but you move poorly. Lose initiative.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 91, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 364, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 332, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Glancing blow shakes you up. You", + "suffer a -10 penalty next round.", + "\u002B20H" + ], + "BaseLines": [ + "Glancing blow shakes you up. You", + "suffer a -10 penalty next round.", + "\u002B20H" + ], + "RawCellText": "Glancing blow shakes you up. You\nsuffer a -10 penalty next round.\n\u002B20H", + "DescriptionText": "Glancing blow shakes you up. You suffer a -10 penalty next round.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 91, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 364, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 332, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "SLAYING", + "Lines": [ + "Blade touches foe\u0027s exposed skin. Your", + "weapon hisses.", + "\u002B5H" + ], + "BaseLines": [ + "Blade touches foe\u0027s exposed skin. Your", + "weapon hisses.", + "\u002B5H" + ], + "RawCellText": "Blade touches foe\u0027s exposed skin. Your\nweapon hisses.\n\u002B5H", + "DescriptionText": "Blade touches foe\u0027s exposed skin. Your weapon hisses.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 91, + "Width": 146, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 364, + "BoundsWidth": 584, + "BoundsHeight": 148, + "CropLeft": 2908, + "CropTop": 332, + "CropWidth": 680, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid, but futile.", + "\u002B3H" + ], + "BaseLines": [ + "Solid, but futile.", + "\u002B3H" + ], + "RawCellText": "Solid, but futile.\n\u002B3H", + "DescriptionText": "Solid, but futile.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 133, + "Width": 125, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 532, + "BoundsWidth": 500, + "BoundsHeight": 148, + "CropLeft": 600, + "CropTop": 500, + "CropWidth": 596, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to foe\u0027s side. Pretty sparks.", + "\u002B4H" + ], + "BaseLines": [ + "Blow to foe\u0027s side. Pretty sparks.", + "\u002B4H" + ], + "RawCellText": "Blow to foe\u0027s side. Pretty sparks.\n\u002B4H", + "DescriptionText": "Blow to foe\u0027s side. Pretty sparks.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 133, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 532, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1128, + "CropTop": 500, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your weapon glances off foe\u0027s side and", + "leaves a measurable wound.", + "\u002B5H" + ], + "BaseLines": [ + "Your weapon glances off foe\u0027s side and", + "leaves a measurable wound.", + "\u002B5H" + ], + "RawCellText": "Your weapon glances off foe\u0027s side and\nleaves a measurable wound.\n\u002B5H", + "DescriptionText": "Your weapon glances off foe\u0027s side and leaves a measurable wound.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 133, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 532, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 500, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your swing lands lightly. You had", + "hoped for better.", + "\u002B9H" + ], + "BaseLines": [ + "Your swing lands lightly. You had", + "hoped for better.", + "\u002B9H" + ], + "RawCellText": "Your swing lands lightly. You had\nhoped for better.\n\u002B9H", + "DescriptionText": "Your swing lands lightly. You had hoped for better.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 133, + "Width": 141, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 532, + "BoundsWidth": 564, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 500, + "CropWidth": 660, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "SLAYING", + "Lines": [ + "Your blow is solid, but lands on a well", + "protected area.", + "\u002B10H" + ], + "BaseLines": [ + "Your blow is solid, but lands on a well", + "protected area.", + "\u002B10H" + ], + "RawCellText": "Your blow is solid, but lands on a well\nprotected area.\n\u002B10H", + "DescriptionText": "Your blow is solid, but lands on a well protected area.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 133, + "Width": 147, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 532, + "BoundsWidth": 588, + "BoundsHeight": 148, + "CropLeft": 2908, + "CropTop": 500, + "CropWidth": 684, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "NORMAL", + "Lines": [ + "Hardly enough for victory. Weak", + "side strike.", + "\u002B6H" + ], + "BaseLines": [ + "Hardly enough for victory. Weak", + "side strike.", + "\u002B6H" + ], + "RawCellText": "Hardly enough for victory. Weak\nside strike.\n\u002B6H", + "DescriptionText": "Hardly enough for victory. Weak side strike.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 177, + "Width": 125, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 708, + "BoundsWidth": 500, + "BoundsHeight": 148, + "CropLeft": 600, + "CropTop": 676, + "CropWidth": 596, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "MAGIC", + "Lines": [ + "Your blade guides itself in, but you", + "miss the opportunity.", + "\u002B8H" + ], + "BaseLines": [ + "Your blade guides itself in, but you", + "miss the opportunity.", + "\u002B8H" + ], + "RawCellText": "Your blade guides itself in, but you\nmiss the opportunity.\n\u002B8H", + "DescriptionText": "Your blade guides itself in, but you miss the opportunity.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 177, + "Width": 139, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 708, + "BoundsWidth": 556, + "BoundsHeight": 148, + "CropLeft": 1128, + "CropTop": 676, + "CropWidth": 652, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "MITHRIL", + "Lines": [ + "Blow shoulder. It\u0027s well placed, but", + "you\u0027ll need a lucky shot at this pace.", + "\u002B9H" + ], + "BaseLines": [ + "Blow shoulder. It\u0027s well placed, but", + "you\u0027ll need a lucky shot at this pace.", + "\u002B9H" + ], + "RawCellText": "Blow shoulder. It\u0027s well placed, but\nyou\u0027ll need a lucky shot at this pace.\n\u002B9H", + "DescriptionText": "Blow shoulder. It\u0027s well placed, but you\u0027ll need a lucky shot at this pace.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 177, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 708, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 676, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your strike lands solid and righteous.", + "You wish it had landed a little more.", + "\u002B12H" + ], + "BaseLines": [ + "Your strike lands solid and righteous.", + "You wish it had landed a little more.", + "\u002B12H" + ], + "RawCellText": "Your strike lands solid and righteous.\nYou wish it had landed a little more.\n\u002B12H", + "DescriptionText": "Your strike lands solid and righteous. You wish it had landed a little more.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 177, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 708, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 676, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "SLAYING", + "Lines": [ + "A mortal blow poorly placed. Maybe", + "you\u0027re holding it wrong?", + "\u002B15H" + ], + "BaseLines": [ + "A mortal blow poorly placed. Maybe", + "you\u0027re holding it wrong?", + "\u002B15H" + ], + "RawCellText": "A mortal blow poorly placed. Maybe\nyou\u0027re holding it wrong?\n\u002B15H", + "DescriptionText": "A mortal blow poorly placed. Maybe you\u0027re holding it wrong?", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 177, + "Width": 147, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 708, + "BoundsWidth": 588, + "BoundsHeight": 148, + "CropLeft": 2908, + "CropTop": 676, + "CropWidth": 684, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "NORMAL", + "Lines": [ + "Strong blow to foe\u0027s forearm yields", + "its measure.", + "\u002B9H" + ], + "BaseLines": [ + "Strong blow to foe\u0027s forearm yields", + "its measure.", + "\u002B9H" + ], + "RawCellText": "Strong blow to foe\u0027s forearm yields\nits measure.\n\u002B9H", + "DescriptionText": "Strong blow to foe\u0027s forearm yields its measure.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 221, + "Width": 128, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 884, + "BoundsWidth": 512, + "BoundsHeight": 148, + "CropLeft": 600, + "CropTop": 852, + "CropWidth": 608, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "MAGIC", + "Lines": [ + "You give out an epic strike, but foe is an", + "epic creature.", + "\u002B10H" + ], + "BaseLines": [ + "You give out an epic strike, but foe is an", + "epic creature.", + "\u002B10H" + ], + "RawCellText": "You give out an epic strike, but foe is an\nepic creature.\n\u002B10H", + "DescriptionText": "You give out an epic strike, but foe is an epic creature.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 221, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 884, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 1128, + "CropTop": 852, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "MITHRIL", + "Lines": [ + "You strike is solid, but your grip fails on", + "impact.", + "\u002B12H" + ], + "BaseLines": [ + "You strike is solid, but your grip fails on", + "impact.", + "\u002B12H" + ], + "RawCellText": "You strike is solid, but your grip fails on\nimpact.\n\u002B12H", + "DescriptionText": "You strike is solid, but your grip fails on impact.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 221, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 884, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 1712, + "CropTop": 852, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You trip foe and slam his shin with your", + "weapon. You are not being noble.", + "\u002B15H" + ], + "BaseLines": [ + "You trip foe and slam his shin with your", + "weapon. You are not being noble.", + "\u002B15H" + ], + "RawCellText": "You trip foe and slam his shin with your\nweapon. You are not being noble.\n\u002B15H", + "DescriptionText": "You trip foe and slam his shin with your weapon. You are not being noble.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 221, + "Width": 142, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 884, + "BoundsWidth": 568, + "BoundsHeight": 148, + "CropLeft": 2312, + "CropTop": 852, + "CropWidth": 664, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "SLAYING", + "Lines": [ + "Bruise to foe\u0027s shoulder is made worse by", + "your weapon\u0027s strong enchantment.", + "\u002B20H" + ], + "BaseLines": [ + "Bruise to foe\u0027s shoulder is made worse by", + "your weapon\u0027s strong enchantment.", + "\u002B20H" + ], + "RawCellText": "Bruise to foe\u0027s shoulder is made worse by\nyour weapon\u0027s strong enchantment.\n\u002B20H", + "DescriptionText": "Bruise to foe\u0027s shoulder is made worse by your weapon\u0027s strong enchantment.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 221, + "Width": 149, + "Height": 37 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 884, + "BoundsWidth": 596, + "BoundsHeight": 148, + "CropLeft": 2908, + "CropTop": 852, + "CropWidth": 692, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike to beast\u0027s chest. Some", + "unseen piece of protection blocks", + "your attack.", + "\u002B12H" + ], + "BaseLines": [ + "Strike to beast\u0027s chest. Some", + "unseen piece of protection blocks", + "your attack.", + "\u002B12H" + ], + "RawCellText": "Strike to beast\u0027s chest. Some\nunseen piece of protection blocks\nyour attack.\n\u002B12H", + "DescriptionText": "Strike to beast\u0027s chest. Some unseen piece of protection blocks your attack.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 263, + "Width": 125, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 1052, + "BoundsWidth": 500, + "BoundsHeight": 192, + "CropLeft": 600, + "CropTop": 1020, + "CropWidth": 596, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "MAGIC", + "Lines": [ + "Hard strike to foe\u0027s thigh. It glances off.", + "You really wish that had landed better.", + "\u002B15H" + ], + "BaseLines": [ + "Hard strike to foe\u0027s thigh. It glances off.", + "You really wish that had landed better.", + "\u002B15H" + ], + "RawCellText": "Hard strike to foe\u0027s thigh. It glances off.\nYou really wish that had landed better.\n\u002B15H", + "DescriptionText": "Hard strike to foe\u0027s thigh. It glances off. You really wish that had landed better.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 263, + "Width": 143, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 1052, + "BoundsWidth": 572, + "BoundsHeight": 192, + "CropLeft": 1128, + "CropTop": 1020, + "CropWidth": 668, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your strike lands in a critical spot on", + "foe\u0027s abdomen. You are unable to", + "mortally wound him, for the moment.", + "\u002B20H" + ], + "BaseLines": [ + "Your strike lands in a critical spot on", + "foe\u0027s abdomen. You are unable to", + "mortally wound him, for the moment.", + "\u002B20H" + ], + "RawCellText": "Your strike lands in a critical spot on\nfoe\u0027s abdomen. You are unable to\nmortally wound him, for the moment.\n\u002B20H", + "DescriptionText": "Your strike lands in a critical spot on foe\u0027s abdomen. You are unable to mortally wound him, for the moment.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 263, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1052, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 1712, + "CropTop": 1020, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your weapon sparks against the beast\u0027s", + "hide and he realizes its mighty blessing.", + "\u002B25H" + ], + "BaseLines": [ + "Your weapon sparks against the beast\u0027s", + "hide and he realizes its mighty blessing.", + "\u002B25H" + ], + "RawCellText": "Your weapon sparks against the beast\u0027s\nhide and he realizes its mighty blessing.\n\u002B25H", + "DescriptionText": "Your weapon sparks against the beast\u0027s hide and he realizes its mighty blessing.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 263, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1052, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 2312, + "CropTop": 1020, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "SLAYING", + "Lines": [ + "Your weapon strikes foe like a clap of", + "thunder, clawing at his very essence.", + "\u002B30H" + ], + "BaseLines": [ + "Your weapon strikes foe like a clap of", + "thunder, clawing at his very essence.", + "\u002B30H" + ], + "RawCellText": "Your weapon strikes foe like a clap of\nthunder, clawing at his very essence.\n\u002B30H", + "DescriptionText": "Your weapon strikes foe like a clap of thunder, clawing at his very essence.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 263, + "Width": 149, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 1052, + "BoundsWidth": 596, + "BoundsHeight": 192, + "CropLeft": 2908, + "CropTop": 1020, + "CropWidth": 692, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike lands upon foe\u0027s side. He", + "responds by leaping back away", + "from you.", + "\u002B15H" + ], + "BaseLines": [ + "Strike lands upon foe\u0027s side. He", + "responds by leaping back away", + "from you.", + "\u002B15H" + ], + "RawCellText": "Strike lands upon foe\u0027s side. He\nresponds by leaping back away\nfrom you.\n\u002B15H", + "DescriptionText": "Strike lands upon foe\u0027s side. He responds by leaping back away from you.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 317, + "Width": 125, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 1268, + "BoundsWidth": 500, + "BoundsHeight": 192, + "CropLeft": 600, + "CropTop": 1236, + "CropWidth": 596, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "MAGIC", + "Lines": [ + "Your blade bites into foe\u0027s skin with a", + "hiss. Foe roars out at you. You ready", + "yourself for what comes next.", + "\u002B18H" + ], + "BaseLines": [ + "Your blade bites into foe\u0027s skin with a", + "hiss. Foe roars out at you. You ready", + "yourself for what comes next.", + "\u002B18H" + ], + "RawCellText": "Your blade bites into foe\u0027s skin with a\nhiss. Foe roars out at you. You ready\nyourself for what comes next.\n\u002B18H", + "DescriptionText": "Your blade bites into foe\u0027s skin with a hiss. Foe roars out at you. You ready yourself for what comes next.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 317, + "Width": 140, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 1268, + "BoundsWidth": 560, + "BoundsHeight": 192, + "CropLeft": 1128, + "CropTop": 1236, + "CropWidth": 656, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "MITHRIL", + "Lines": [ + "Hack at foe\u0027s neck, landing on his", + "shoulder. He moves before the strike", + "bites deeper.", + "\u002B25H" + ], + "BaseLines": [ + "Hack at foe\u0027s neck, landing on his", + "shoulder. He moves before the strike", + "bites deeper.", + "\u002B25H" + ], + "RawCellText": "Hack at foe\u0027s neck, landing on his\nshoulder. He moves before the strike\nbites deeper.\n\u002B25H", + "DescriptionText": "Hack at foe\u0027s neck, landing on his shoulder. He moves before the strike bites deeper.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 317, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1268, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 1712, + "CropTop": 1236, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Heavy blow with all of your weight", + "behind it hits foe in his side.", + "\u002B30H" + ], + "BaseLines": [ + "Heavy blow with all of your weight", + "behind it hits foe in his side.", + "\u002B30H" + ], + "RawCellText": "Heavy blow with all of your weight\nbehind it hits foe in his side.\n\u002B30H", + "DescriptionText": "Heavy blow with all of your weight behind it hits foe in his side.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 317, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1268, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 2312, + "CropTop": 1236, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "SLAYING", + "Lines": [ + "Your weapon drives deep into foe\u0027s", + "abdomen. Blood pours out of foe. He", + "looks looks like a statue in a fountain.", + "\u002B12H \u2013 \u220F \u2013 5\u222B" + ], + "BaseLines": [ + "Your weapon drives deep into foe\u0027s", + "abdomen. Blood pours out of foe. He", + "looks looks like a statue in a fountain.", + "\u002B12H \u2013 \u220F \u2013 5\u222B" + ], + "RawCellText": "Your weapon drives deep into foe\u0027s\nabdomen. Blood pours out of foe. He\nlooks looks like a statue in a fountain.\n\u002B12H \u2013 \u220F \u2013 5\u222B", + "DescriptionText": "Your weapon drives deep into foe\u0027s abdomen. Blood pours out of foe. He looks looks like a statue in a fountain.", + "RawAffixText": "\u002B12H \u2013 \u220F \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 317, + "Width": 147, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 1268, + "BoundsWidth": 588, + "BoundsHeight": 192, + "CropLeft": 2908, + "CropTop": 1236, + "CropWidth": 684, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "NORMAL", + "Lines": [ + "Blow crashes into foe\u0027s leg. The", + "damage is obvious by the look on", + "his face.", + "\u002B20H" + ], + "BaseLines": [ + "Blow crashes into foe\u0027s leg. The", + "damage is obvious by the look on", + "his face.", + "\u002B20H" + ], + "RawCellText": "Blow crashes into foe\u0027s leg. The\ndamage is obvious by the look on\nhis face.\n\u002B20H", + "DescriptionText": "Blow crashes into foe\u0027s leg. The damage is obvious by the look on his face.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 370, + "Width": 125, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 1480, + "BoundsWidth": 500, + "BoundsHeight": 188, + "CropLeft": 600, + "CropTop": 1448, + "CropWidth": 596, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to foe\u0027s back. It concerns him", + "greatly. Good luck.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s back. It concerns him", + "greatly. Good luck.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Blow to foe\u0027s back. It concerns him\ngreatly. Good luck.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Blow to foe\u0027s back. It concerns him greatly. Good luck.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 370, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 1480, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 1128, + "CropTop": 1448, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "MITHRIL", + "Lines": [ + "Grip foe\u0027s hide for leverage, before you", + "strike. Blow lands solid, but he throws", + "you clear.", + "\u002B30H" + ], + "BaseLines": [ + "Grip foe\u0027s hide for leverage, before you", + "strike. Blow lands solid, but he throws", + "you clear.", + "\u002B30H" + ], + "RawCellText": "Grip foe\u0027s hide for leverage, before you\nstrike. Blow lands solid, but he throws\nyou clear.\n\u002B30H", + "DescriptionText": "Grip foe\u0027s hide for leverage, before you strike. Blow lands solid, but he throws you clear.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 370, + "Width": 142, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1480, + "BoundsWidth": 568, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 1448, + "CropWidth": 664, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike lands lightly against foe\u0027s", + "shoulder. You have the initiative for 3", + "rounds. Foe\u0027s blood gets all over you.", + "\u002B10H \u2013 \u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Strike lands lightly against foe\u0027s", + "shoulder. You have the initiative for 3", + "rounds. Foe\u0027s blood gets all over you.", + "\u002B10H \u2013 \u03C0 \u2013 2\u222B" + ], + "RawCellText": "Strike lands lightly against foe\u0027s\nshoulder. You have the initiative for 3\nrounds. Foe\u0027s blood gets all over you.\n\u002B10H \u2013 \u03C0 \u2013 2\u222B", + "DescriptionText": "Strike lands lightly against foe\u0027s shoulder. You have the initiative for 3 rounds. Foe\u0027s blood gets all over you.", + "RawAffixText": "\u002B10H \u2013 \u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 370, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1480, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 1448, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "SLAYING", + "Lines": [ + "Cave in the side of foe\u0027s head. Foe is", + "down and dies in 2 rounds. Your foot is", + "pinned under him for a round.", + "\u2014" + ], + "BaseLines": [ + "Cave in the side of foe\u0027s head. Foe is", + "down and dies in 2 rounds. Your foot is", + "pinned under him for a round.", + "\u2014" + ], + "RawCellText": "Cave in the side of foe\u0027s head. Foe is\ndown and dies in 2 rounds. Your foot is\npinned under him for a round.\n\u2014", + "DescriptionText": "Cave in the side of foe\u0027s head. Foe is down and dies in 2 rounds. Your foot is pinned under him for a round.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 370, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 1480, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 2908, + "CropTop": 1448, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "NORMAL", + "Lines": [ + "Well placed strike to foe\u0027s neck", + "severs the jugular vein. Foe falls", + "and dies in 6 rounds.", + "\u2014" + ], + "BaseLines": [ + "Well placed strike to foe\u0027s neck", + "severs the jugular vein. Foe falls", + "and dies in 6 rounds.", + "\u2014" + ], + "RawCellText": "Well placed strike to foe\u0027s neck\nsevers the jugular vein. Foe falls\nand dies in 6 rounds.\n\u2014", + "DescriptionText": "Well placed strike to foe\u0027s neck severs the jugular vein. Foe falls and dies in 6 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 424, + "Width": 124, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 1696, + "BoundsWidth": 496, + "BoundsHeight": 188, + "CropLeft": 600, + "CropTop": 1664, + "CropWidth": 592, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "MAGIC", + "Lines": [ + "Vicious strike to abdomenal region", + "destroys a variety of organs. Foe falls", + "over with a crash. He dies in 3 rounds.", + "\u002B30H" + ], + "BaseLines": [ + "Vicious strike to abdomenal region", + "destroys a variety of organs. Foe falls", + "over with a crash. He dies in 3 rounds.", + "\u002B30H" + ], + "RawCellText": "Vicious strike to abdomenal region\ndestroys a variety of organs. Foe falls\nover with a crash. He dies in 3 rounds.\n\u002B30H", + "DescriptionText": "Vicious strike to abdomenal region destroys a variety of organs. Foe falls over with a crash. He dies in 3 rounds.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 424, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 1696, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 1128, + "CropTop": 1664, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "MITHRIL", + "Lines": [ + "Strike to foe\u0027s heart. He dies instantly.", + "You hit him one more time to make sure", + "he is dead. Very clean kill.", + "\u2014" + ], + "BaseLines": [ + "Strike to foe\u0027s heart. He dies instantly.", + "You hit him one more time to make sure", + "he is dead. Very clean kill.", + "\u2014" + ], + "RawCellText": "Strike to foe\u0027s heart. He dies instantly.\nYou hit him one more time to make sure\nhe is dead. Very clean kill.\n\u2014", + "DescriptionText": "Strike to foe\u0027s heart. He dies instantly. You hit him one more time to make sure he is dead. Very clean kill.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 424, + "Width": 143, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1696, + "BoundsWidth": 572, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 1664, + "CropWidth": 668, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Drive home your attack right between", + "your foe\u0027s eyes. He dies instantly. You", + "have half the round left.", + "\u002B20H" + ], + "BaseLines": [ + "Drive home your attack right between", + "your foe\u0027s eyes. He dies instantly. You", + "have half the round left.", + "\u002B20H" + ], + "RawCellText": "Drive home your attack right between\nyour foe\u0027s eyes. He dies instantly. You\nhave half the round left.\n\u002B20H", + "DescriptionText": "Drive home your attack right between your foe\u0027s eyes. He dies instantly. You have half the round left.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 424, + "Width": 142, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1696, + "BoundsWidth": 568, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 1664, + "CropWidth": 664, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "SLAYING", + "Lines": [ + "Chest wound knocks foe down.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Chest wound knocks foe down.", + "\u002B10H \u2013 2\u2211\u220F" + ], + "RawCellText": "Chest wound knocks foe down.\n\u002B10H \u2013 2\u2211\u220F", + "DescriptionText": "Chest wound knocks foe down.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 424, + "Width": 146, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 1696, + "BoundsWidth": 584, + "BoundsHeight": 188, + "CropLeft": 2908, + "CropTop": 1664, + "CropWidth": 680, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "NORMAL", + "Lines": [ + "Foe\u0027s leg catches your failing strike", + "at the right moment. The leg is", + "bruised badly.", + "\u002B25H" + ], + "BaseLines": [ + "Foe\u0027s leg catches your failing strike", + "at the right moment. The leg is", + "bruised badly.", + "\u002B25H" + ], + "RawCellText": "Foe\u0027s leg catches your failing strike\nat the right moment. The leg is\nbruised badly.\n\u002B25H", + "DescriptionText": "Foe\u0027s leg catches your failing strike at the right moment. The leg is bruised badly.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 477, + "Width": 127, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 1908, + "BoundsWidth": 508, + "BoundsHeight": 192, + "CropLeft": 600, + "CropTop": 1876, + "CropWidth": 604, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to thigh leaves a bad bruise. Foe", + "almost falls over on you. You leap clear.", + "\u002B30H" + ], + "BaseLines": [ + "Blow to thigh leaves a bad bruise. Foe", + "almost falls over on you. You leap clear.", + "\u002B30H" + ], + "RawCellText": "Blow to thigh leaves a bad bruise. Foe\nalmost falls over on you. You leap clear.\n\u002B30H", + "DescriptionText": "Blow to thigh leaves a bad bruise. Foe almost falls over on you. You leap clear.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 477, + "Width": 140, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 1908, + "BoundsWidth": 560, + "BoundsHeight": 192, + "CropLeft": 1128, + "CropTop": 1876, + "CropWidth": 656, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "MITHRIL", + "Lines": [ + "Strike to foe\u0027s thigh. Despite his size, it", + "sends him back. Your Mithril bites deep", + "and leaves a painful wound.", + "\u002B15H \u2013 2\u2211 \u2013 (-20) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strike to foe\u0027s thigh. Despite his size, it", + "sends him back. Your Mithril bites deep", + "and leaves a painful wound.", + "\u002B15H \u2013 2\u2211 \u2013 (-20) \u2013 (\u002B10)" + ], + "RawCellText": "Strike to foe\u0027s thigh. Despite his size, it\nsends him back. Your Mithril bites deep\nand leaves a painful wound.\n\u002B15H \u2013 2\u2211 \u2013 (-20) \u2013 (\u002B10)", + "DescriptionText": "Strike to foe\u0027s thigh. Despite his size, it sends him back. Your Mithril bites deep and leaves a painful wound.", + "RawAffixText": "\u002B15H \u2013 2\u2211 \u2013 (-20) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 477, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 1908, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 1712, + "CropTop": 1876, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Foe loses his footing with your solid", + "strike. He takes time to gain his balance.", + "You are in good position.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe loses his footing with your solid", + "strike. He takes time to gain his balance.", + "You are in good position.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Foe loses his footing with your solid\nstrike. He takes time to gain his balance.\nYou are in good position.\n\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Foe loses his footing with your solid strike. He takes time to gain his balance. You are in good position.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 477, + "Width": 143, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 1908, + "BoundsWidth": 572, + "BoundsHeight": 192, + "CropLeft": 2312, + "CropTop": 1876, + "CropWidth": 668, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "SLAYING", + "Lines": [ + "Plunge weapon into foe\u0027s heart. Your", + "weapon seems to know the way. The", + "wound is instantly mortal. He dies.", + "\u002B20H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Plunge weapon into foe\u0027s heart. Your", + "weapon seems to know the way. The", + "wound is instantly mortal. He dies.", + "\u002B20H \u2013 (\u002B10)" + ], + "RawCellText": "Plunge weapon into foe\u0027s heart. Your\nweapon seems to know the way. The\nwound is instantly mortal. He dies.\n\u002B20H \u2013 (\u002B10)", + "DescriptionText": "Plunge weapon into foe\u0027s heart. Your weapon seems to know the way. The wound is instantly mortal. He dies.", + "RawAffixText": "\u002B20H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 477, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 1908, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 2908, + "CropTop": 1876, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "NORMAL", + "Lines": [ + "Arm strike gives foe a bruise.", + "\u002B30H" + ], + "BaseLines": [ + "Arm strike gives foe a bruise.", + "\u002B30H" + ], + "RawCellText": "Arm strike gives foe a bruise.\n\u002B30H", + "DescriptionText": "Arm strike gives foe a bruise.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 530, + "Width": 125, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 2120, + "BoundsWidth": 500, + "BoundsHeight": 188, + "CropLeft": 600, + "CropTop": 2088, + "CropWidth": 596, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "MAGIC", + "Lines": [ + "Minor forearm wound. The beast\u0027s", + "guard is down for an instant. Press", + "your attack.", + "\u002B13H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Minor forearm wound. The beast\u0027s", + "guard is down for an instant. Press", + "your attack.", + "\u002B13H \u2013 3\u2211\u220F" + ], + "RawCellText": "Minor forearm wound. The beast\u0027s\nguard is down for an instant. Press\nyour attack.\n\u002B13H \u2013 3\u2211\u220F", + "DescriptionText": "Minor forearm wound. The beast\u0027s guard is down for an instant. Press your attack.", + "RawAffixText": "\u002B13H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 530, + "Width": 139, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 2120, + "BoundsWidth": 556, + "BoundsHeight": 188, + "CropLeft": 1128, + "CropTop": 2088, + "CropWidth": 652, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "MITHRIL", + "Lines": [ + "Tear him up! Your strike lands along", + "foe\u0027s arm. The wound is bleeding", + "everywhere. It\u0027s all over you, as well.", + "\u002B20H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Tear him up! Your strike lands along", + "foe\u0027s arm. The wound is bleeding", + "everywhere. It\u0027s all over you, as well.", + "\u002B20H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Tear him up! Your strike lands along\nfoe\u0027s arm. The wound is bleeding\neverywhere. It\u0027s all over you, as well.\n\u002B20H \u2013 2\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Tear him up! Your strike lands along foe\u0027s arm. The wound is bleeding everywhere. It\u0027s all over you, as well.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 530, + "Width": 142, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2120, + "BoundsWidth": 568, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 2088, + "CropWidth": 664, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Tear open foe\u0027s leg with a brutal side", + "swing. Foe is unbalanced and bleeding.", + "His guard goes down.", + "\u002B9H \u2013 \u2211\u220F \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Tear open foe\u0027s leg with a brutal side", + "swing. Foe is unbalanced and bleeding.", + "His guard goes down.", + "\u002B9H \u2013 \u2211\u220F \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "Tear open foe\u0027s leg with a brutal side\nswing. Foe is unbalanced and bleeding.\nHis guard goes down.\n\u002B9H \u2013 \u2211\u220F \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "Tear open foe\u0027s leg with a brutal side swing. Foe is unbalanced and bleeding. His guard goes down.", + "RawAffixText": "\u002B9H \u2013 \u2211\u220F \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 530, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2120, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 2088, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike comes up under foe\u0027s arm. Blow", + "breaks bones in upper arm. Arm is", + "useless. Foe stumbles back.", + "\u002B15H \u2013 3\u2211" + ], + "BaseLines": [ + "Strike comes up under foe\u0027s arm. Blow", + "breaks bones in upper arm. Arm is", + "useless. Foe stumbles back.", + "\u002B15H \u2013 3\u2211" + ], + "RawCellText": "Strike comes up under foe\u0027s arm. Blow\nbreaks bones in upper arm. Arm is\nuseless. Foe stumbles back.\n\u002B15H \u2013 3\u2211", + "DescriptionText": "Strike comes up under foe\u0027s arm. Blow breaks bones in upper arm. Arm is useless. Foe stumbles back.", + "RawAffixText": "\u002B15H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 530, + "Width": 146, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 2120, + "BoundsWidth": 584, + "BoundsHeight": 188, + "CropLeft": 2908, + "CropTop": 2088, + "CropWidth": 680, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "NORMAL", + "Lines": [ + "Strong blast to foe\u0027s stomach", + "staggers foe. His guard drops for a", + "moment. You have a chance.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strong blast to foe\u0027s stomach", + "staggers foe. His guard drops for a", + "moment. You have a chance.", + "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Strong blast to foe\u0027s stomach\nstaggers foe. His guard drops for a\nmoment. You have a chance.\n\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Strong blast to foe\u0027s stomach staggers foe. His guard drops for a moment. You have a chance.", + "RawAffixText": "\u002B20H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 584, + "Width": 125, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 2336, + "BoundsWidth": 500, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 2304, + "CropWidth": 596, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "MAGIC", + "Lines": [ + "Hard blow to foe\u0027s back. If foe has", + "wings they are damaged. If not, foe has", + "broken ribs.", + "\u002B22H \u2013 3\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Hard blow to foe\u0027s back. If foe has", + "wings they are damaged. If not, foe has", + "broken ribs.", + "\u002B22H \u2013 3\u2211 \u2013 \u220F" + ], + "RawCellText": "Hard blow to foe\u0027s back. If foe has\nwings they are damaged. If not, foe has\nbroken ribs.\n\u002B22H \u2013 3\u2211 \u2013 \u220F", + "DescriptionText": "Hard blow to foe\u0027s back. If foe has wings they are damaged. If not, foe has broken ribs.", + "RawAffixText": "\u002B22H \u2013 3\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 22, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B22H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 584, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 2336, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 2304, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "MITHRIL", + "Lines": [ + "Reverse your strike to catch foe in his", + "lower leg. He stumbles back out of", + "reach.", + "\u002B15H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Reverse your strike to catch foe in his", + "lower leg. He stumbles back out of", + "reach.", + "\u002B15H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Reverse your strike to catch foe in his\nlower leg. He stumbles back out of\nreach.\n\u002B15H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Reverse your strike to catch foe in his lower leg. He stumbles back out of reach.", + "RawAffixText": "\u002B15H \u2013 2\u2211 \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 584, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2336, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 2304, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "With a mighty cross swing you strike", + "foe\u0027s head. If he has a helm (or hard", + "head) you knock him out. If he has no", + "helm, you behead him and he dies.", + "\u002B30H" + ], + "BaseLines": [ + "With a mighty cross swing you strike", + "foe\u0027s head. If he has a helm (or hard", + "head) you knock him out. If he has no", + "helm, you behead him and he dies.", + "\u002B30H" + ], + "RawCellText": "With a mighty cross swing you strike\nfoe\u0027s head. If he has a helm (or hard\nhead) you knock him out. If he has no\nhelm, you behead him and he dies.\n\u002B30H", + "DescriptionText": "With a mighty cross swing you strike foe\u0027s head. If he has a helm (or hard head) you knock him out. If he has no helm, you behead him and he dies.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 584, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2336, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 2304, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "SLAYING", + "Lines": [ + "You see the opportunity you have needed.", + "A legendary strike to foe\u0027s chest destroys", + "heart and other vital organs. He drops", + "and dies instantly.", + "\u002B25H \u2013 (\u002B15)" + ], + "BaseLines": [ + "You see the opportunity you have needed.", + "A legendary strike to foe\u0027s chest destroys", + "heart and other vital organs. He drops", + "and dies instantly.", + "\u002B25H \u2013 (\u002B15)" + ], + "RawCellText": "You see the opportunity you have needed.\nA legendary strike to foe\u0027s chest destroys\nheart and other vital organs. He drops\nand dies instantly.\n\u002B25H \u2013 (\u002B15)", + "DescriptionText": "You see the opportunity you have needed. A legendary strike to foe\u0027s chest destroys heart and other vital organs. He drops and dies instantly.", + "RawAffixText": "\u002B25H \u2013 (\u002B15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 584, + "Width": 149, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 2336, + "BoundsWidth": 596, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 2304, + "CropWidth": 692, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "NORMAL", + "Lines": [ + "Strong blow to foe\u0027s leg yields a", + "gaping wound. If foe has blood,", + "you see a lot of it.", + "\u002B18H \u2013 3\u2211 \u2013 5\u222B \u2013(-10)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s leg yields a", + "gaping wound. If foe has blood,", + "you see a lot of it.", + "\u002B18H \u2013 3\u2211 \u2013 5\u222B \u2013(-10)" + ], + "RawCellText": "Strong blow to foe\u0027s leg yields a\ngaping wound. If foe has blood,\nyou see a lot of it.\n\u002B18H \u2013 3\u2211 \u2013 5\u222B \u2013(-10)", + "DescriptionText": "Strong blow to foe\u0027s leg yields a gaping wound. If foe has blood, you see a lot of it.", + "RawAffixText": "\u002B18H \u2013 3\u2211 \u2013 5\u222B \u2013(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 646, + "Width": 125, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 2584, + "BoundsWidth": 500, + "BoundsHeight": 188, + "CropLeft": 600, + "CropTop": 2552, + "CropWidth": 596, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "MAGIC", + "Lines": [ + "You strike at foe\u0027s face. It hits and", + "causes him some difficulty.", + "\u002B5H \u2013 3\u222B \u2013 (-25) \u2013 (\u002B20)" + ], + "BaseLines": [ + "You strike at foe\u0027s face. It hits and", + "causes him some difficulty.", + "\u002B5H \u2013 3\u222B \u2013 (-25) \u2013 (\u002B20)" + ], + "RawCellText": "You strike at foe\u0027s face. It hits and\ncauses him some difficulty.\n\u002B5H \u2013 3\u222B \u2013 (-25) \u2013 (\u002B20)", + "DescriptionText": "You strike at foe\u0027s face. It hits and causes him some difficulty.", + "RawAffixText": "\u002B5H \u2013 3\u222B \u2013 (-25) \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 646, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 2584, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 1128, + "CropTop": 2552, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "MITHRIL", + "Lines": [ + "Weapon impacts upon foe\u0027s head with", + "unmatched force. Foe comes over and is", + "knocked out.", + "\u002B30H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Weapon impacts upon foe\u0027s head with", + "unmatched force. Foe comes over and is", + "knocked out.", + "\u002B30H \u2013 (\u002B10)" + ], + "RawCellText": "Weapon impacts upon foe\u0027s head with\nunmatched force. Foe comes over and is\nknocked out.\n\u002B30H \u2013 (\u002B10)", + "DescriptionText": "Weapon impacts upon foe\u0027s head with unmatched force. Foe comes over and is knocked out.", + "RawAffixText": "\u002B30H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 646, + "Width": 144, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2584, + "BoundsWidth": 576, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 2552, + "CropWidth": 672, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your victory strike. Your weapon", + "crashes into foe\u0027s chest and downs him", + "for 2 rounds. He dies in 6 rounds.", + "\u2014" + ], + "BaseLines": [ + "Your victory strike. Your weapon", + "crashes into foe\u0027s chest and downs him", + "for 2 rounds. He dies in 6 rounds.", + "\u2014" + ], + "RawCellText": "Your victory strike. Your weapon\ncrashes into foe\u0027s chest and downs him\nfor 2 rounds. He dies in 6 rounds.\n\u2014", + "DescriptionText": "Your victory strike. Your weapon crashes into foe\u0027s chest and downs him for 2 rounds. He dies in 6 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 646, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2584, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 2552, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "SLAYING", + "Lines": [ + "Blow to foe\u0027s leg slashes an artery open.", + "Foe falls gripping his leg. He is inactive", + "for 12 sad rounds and then dies.", + "\u2014" + ], + "BaseLines": [ + "Blow to foe\u0027s leg slashes an artery open.", + "Foe falls gripping his leg. He is inactive", + "for 12 sad rounds and then dies.", + "\u2014" + ], + "RawCellText": "Blow to foe\u0027s leg slashes an artery open.\nFoe falls gripping his leg. He is inactive\nfor 12 sad rounds and then dies.\n\u2014", + "DescriptionText": "Blow to foe\u0027s leg slashes an artery open. Foe falls gripping his leg. He is inactive for 12 sad rounds and then dies.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 646, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 2584, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 2908, + "CropTop": 2552, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "NORMAL", + "Lines": [ + "Plunge your weapon into foe\u0027s", + "heart. Foe dies instantly, and falls", + "on you. You are pinned for 6", + "rounds and \u002B20H!", + "\u2014" + ], + "BaseLines": [ + "Plunge your weapon into foe\u0027s", + "heart. Foe dies instantly, and falls", + "on you. You are pinned for 6", + "rounds and \u002B20H!", + "\u2014" + ], + "RawCellText": "Plunge your weapon into foe\u0027s\nheart. Foe dies instantly, and falls\non you. You are pinned for 6\nrounds and \u002B20H!\n\u2014", + "DescriptionText": "Plunge your weapon into foe\u0027s heart. Foe dies instantly, and falls on you. You are pinned for 6 rounds and \u002B20H!", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 700, + "Width": 124, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 2800, + "BoundsWidth": 496, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 2768, + "CropWidth": 592, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "MAGIC", + "Lines": [ + "Your weapon plunges into foe\u0027s chest.", + "He drops and dies in 3 rounds. Your", + "weapon is stuck in him for 12 rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Your weapon plunges into foe\u0027s chest.", + "He drops and dies in 3 rounds. Your", + "weapon is stuck in him for 12 rounds.", + "\u002B25H" + ], + "RawCellText": "Your weapon plunges into foe\u0027s chest.\nHe drops and dies in 3 rounds. Your\nweapon is stuck in him for 12 rounds.\n\u002B25H", + "DescriptionText": "Your weapon plunges into foe\u0027s chest. He drops and dies in 3 rounds. Your weapon is stuck in him for 12 rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 700, + "Width": 140, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 2800, + "BoundsWidth": 560, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 2768, + "CropWidth": 656, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "MITHRIL", + "Lines": [ + "Strike foe in his head and destroy his", + "brain. If that\u0027s not power, what is?", + "You have half the round left to act.", + "\u2014" + ], + "BaseLines": [ + "Strike foe in his head and destroy his", + "brain. If that\u0027s not power, what is?", + "You have half the round left to act.", + "\u2014" + ], + "RawCellText": "Strike foe in his head and destroy his\nbrain. If that\u0027s not power, what is?\nYou have half the round left to act.\n\u2014", + "DescriptionText": "Strike foe in his head and destroy his brain. If that\u0027s not power, what is? You have half the round left to act.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 700, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 2800, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 2768, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike foe in his ear. He dies next round.", + "You are very confident in your combat", + "skills.", + "\u002B15H \u2013 (\u002B25)" + ], + "BaseLines": [ + "Strike foe in his ear. He dies next round.", + "You are very confident in your combat", + "skills.", + "\u002B15H \u2013 (\u002B25)" + ], + "RawCellText": "Strike foe in his ear. He dies next round.\nYou are very confident in your combat\nskills.\n\u002B15H \u2013 (\u002B25)", + "DescriptionText": "Strike foe in his ear. He dies next round. You are very confident in your combat skills.", + "RawAffixText": "\u002B15H \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 700, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 2800, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 2768, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "SLAYING", + "Lines": [ + "True to its name, your weapon slays foe", + "by crushing his skull. Parts of bone fly in", + "all directions. Not a pretty sight. Foe", + "drops instantly to the ground.", + "\u2014" + ], + "BaseLines": [ + "True to its name, your weapon slays foe", + "by crushing his skull. Parts of bone fly in", + "all directions. Not a pretty sight. Foe", + "drops instantly to the ground.", + "\u2014" + ], + "RawCellText": "True to its name, your weapon slays foe\nby crushing his skull. Parts of bone fly in\nall directions. Not a pretty sight. Foe\ndrops instantly to the ground.\n\u2014", + "DescriptionText": "True to its name, your weapon slays foe by crushing his skull. Parts of bone fly in all directions. Not a pretty sight. Foe drops instantly to the ground.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 700, + "Width": 145, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 2800, + "BoundsWidth": 580, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 2768, + "CropWidth": 676, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike through foe\u0027s lungs. Foe falls", + "down and dies after 6 rounds.", + "Allies get a bonus!", + "\u002B24H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Strike through foe\u0027s lungs. Foe falls", + "down and dies after 6 rounds.", + "Allies get a bonus!", + "\u002B24H \u2013 (\u002B20)" + ], + "RawCellText": "Strike through foe\u0027s lungs. Foe falls\ndown and dies after 6 rounds.\nAllies get a bonus!\n\u002B24H \u2013 (\u002B20)", + "DescriptionText": "Strike through foe\u0027s lungs. Foe falls down and dies after 6 rounds. Allies get a bonus!", + "RawAffixText": "\u002B24H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 764, + "Width": 126, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 3056, + "BoundsWidth": 504, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 3024, + "CropWidth": 600, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "MAGIC", + "Lines": [ + "Hard but flat strike. Your weapon takes", + "much of the impact. In addition to his", + "wound, your weapon is broken.", + "\u002B35H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Hard but flat strike. Your weapon takes", + "much of the impact. In addition to his", + "wound, your weapon is broken.", + "\u002B35H \u2013 \u2211\u220F" + ], + "RawCellText": "Hard but flat strike. Your weapon takes\nmuch of the impact. In addition to his\nwound, your weapon is broken.\n\u002B35H \u2013 \u2211\u220F", + "DescriptionText": "Hard but flat strike. Your weapon takes much of the impact. In addition to his wound, your weapon is broken.", + "RawAffixText": "\u002B35H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 764, + "Width": 140, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 3056, + "BoundsWidth": 560, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 3024, + "CropWidth": 656, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "MITHRIL", + "Lines": [ + "You find a weak point and hammer foe\u0027s", + "neck. Your weapon sticks in foe for 2", + "rounds, while he struggles to breathe.", + "He dies in 6 rounds.", + "\u002B20H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "You find a weak point and hammer foe\u0027s", + "neck. Your weapon sticks in foe for 2", + "rounds, while he struggles to breathe.", + "He dies in 6 rounds.", + "\u002B20H \u2013 6\u2211\u220F" + ], + "RawCellText": "You find a weak point and hammer foe\u0027s\nneck. Your weapon sticks in foe for 2\nrounds, while he struggles to breathe.\nHe dies in 6 rounds.\n\u002B20H \u2013 6\u2211\u220F", + "DescriptionText": "You find a weak point and hammer foe\u0027s neck. Your weapon sticks in foe for 2 rounds, while he struggles to breathe. He dies in 6 rounds.", + "RawAffixText": "\u002B20H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 764, + "Width": 143, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3056, + "BoundsWidth": 572, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 3024, + "CropWidth": 668, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your precision surgery blinds foe. He", + "quickly loses his direction and is in", + "trouble.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-100)" + ], + "BaseLines": [ + "Your precision surgery blinds foe. He", + "quickly loses his direction and is in", + "trouble.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-100)" + ], + "RawCellText": "Your precision surgery blinds foe. He\nquickly loses his direction and is in\ntrouble.\n\u002B5H \u2013 2\u2211\u220F \u2013 (-100)", + "DescriptionText": "Your precision surgery blinds foe. He quickly loses his direction and is in trouble.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (-100)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -100, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-100)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 764, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3056, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 3024, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike foe in his face. His cheek bones", + "collapse. His neck is a bloody pulp. He", + "dies a round later. Your weapon is lodged", + "in foe.", + "\u2014" + ], + "BaseLines": [ + "Strike foe in his face. His cheek bones", + "collapse. His neck is a bloody pulp. He", + "dies a round later. Your weapon is lodged", + "in foe.", + "\u2014" + ], + "RawCellText": "Strike foe in his face. His cheek bones\ncollapse. His neck is a bloody pulp. He\ndies a round later. Your weapon is lodged\nin foe.\n\u2014", + "DescriptionText": "Strike foe in his face. His cheek bones collapse. His neck is a bloody pulp. He dies a round later. Your weapon is lodged in foe.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 764, + "Width": 148, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 3056, + "BoundsWidth": 592, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 3024, + "CropWidth": 688, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "NORMAL", + "Lines": [ + "Awesome strike to shoulder sends", + "foe stumbling. He has trouble", + "getting his balance back.", + "\u002B50H \u2013 3\u2211\u220F \u2013 (-35)" + ], + "BaseLines": [ + "Awesome strike to shoulder sends", + "foe stumbling. He has trouble", + "getting his balance back.", + "\u002B50H \u2013 3\u2211\u220F \u2013 (-35)" + ], + "RawCellText": "Awesome strike to shoulder sends\nfoe stumbling. He has trouble\ngetting his balance back.\n\u002B50H \u2013 3\u2211\u220F \u2013 (-35)", + "DescriptionText": "Awesome strike to shoulder sends foe stumbling. He has trouble getting his balance back.", + "RawAffixText": "\u002B50H \u2013 3\u2211\u220F \u2013 (-35)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -35, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-35)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 826, + "Width": 125, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 3304, + "BoundsWidth": 500, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 3272, + "CropWidth": 596, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "MAGIC", + "Lines": [ + "Strike foe in the side of his head. Foe", + "stumbles back a few feet before he falls", + "to the ground. He is out for 3 hours.", + "\u002B20H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strike foe in the side of his head. Foe", + "stumbles back a few feet before he falls", + "to the ground. He is out for 3 hours.", + "\u002B20H \u2013 (\u002B10)" + ], + "RawCellText": "Strike foe in the side of his head. Foe\nstumbles back a few feet before he falls\nto the ground. He is out for 3 hours.\n\u002B20H \u2013 (\u002B10)", + "DescriptionText": "Strike foe in the side of his head. Foe stumbles back a few feet before he falls to the ground. He is out for 3 hours.", + "RawAffixText": "\u002B20H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 826, + "Width": 140, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 3304, + "BoundsWidth": 560, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 3272, + "CropWidth": 656, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "MITHRIL", + "Lines": [ + "Catch foe in chin with all your weight", + "behind the weapon. Head snaps back", + "and chin shatters. Foe is knocked out for", + "30 days.", + "\u002B60H" + ], + "BaseLines": [ + "Catch foe in chin with all your weight", + "behind the weapon. Head snaps back", + "and chin shatters. Foe is knocked out for", + "30 days.", + "\u002B60H" + ], + "RawCellText": "Catch foe in chin with all your weight\nbehind the weapon. Head snaps back\nand chin shatters. Foe is knocked out for\n30 days.\n\u002B60H", + "DescriptionText": "Catch foe in chin with all your weight behind the weapon. Head snaps back and chin shatters. Foe is knocked out for 30 days.", + "RawAffixText": "\u002B60H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 60, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B60H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 826, + "Width": 144, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3304, + "BoundsWidth": 576, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 3272, + "CropWidth": 672, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You miss foe\u0027s weapon arm, but the", + "strike lands on foe\u0027s knee. The results", + "are acceptable.", + "\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "BaseLines": [ + "You miss foe\u0027s weapon arm, but the", + "strike lands on foe\u0027s knee. The results", + "are acceptable.", + "\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "RawCellText": "You miss foe\u0027s weapon arm, but the\nstrike lands on foe\u0027s knee. The results\nare acceptable.\n\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "DescriptionText": "You miss foe\u0027s weapon arm, but the strike lands on foe\u0027s knee. The results are acceptable.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 826, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3304, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 3272, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "SLAYING", + "Lines": [ + "Sever a vein in foe\u0027s forelimb. He falls to", + "his knees. Blood is everywhere. He dies in", + "6 rounds.", + "\u002B20H \u2013 6\u2211\u220F \u2013 12\u222B" + ], + "BaseLines": [ + "Sever a vein in foe\u0027s forelimb. He falls to", + "his knees. Blood is everywhere. He dies in", + "6 rounds.", + "\u002B20H \u2013 6\u2211\u220F \u2013 12\u222B" + ], + "RawCellText": "Sever a vein in foe\u0027s forelimb. He falls to\nhis knees. Blood is everywhere. He dies in\n6 rounds.\n\u002B20H \u2013 6\u2211\u220F \u2013 12\u222B", + "DescriptionText": "Sever a vein in foe\u0027s forelimb. He falls to his knees. Blood is everywhere. He dies in 6 rounds.", + "RawAffixText": "\u002B20H \u2013 6\u2211\u220F \u2013 12\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 12, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 826, + "Width": 151, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 3304, + "BoundsWidth": 604, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 3272, + "CropWidth": 700, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike drives bone into kidneys and", + "liver. Foe drops and dies in 6", + "rounds. What a pity.", + "\u2014" + ], + "BaseLines": [ + "Strike drives bone into kidneys and", + "liver. Foe drops and dies in 6", + "rounds. What a pity.", + "\u2014" + ], + "RawCellText": "Strike drives bone into kidneys and\nliver. Foe drops and dies in 6\nrounds. What a pity.\n\u2014", + "DescriptionText": "Strike drives bone into kidneys and liver. Foe drops and dies in 6 rounds. What a pity.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 890, + "Width": 125, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 3560, + "BoundsWidth": 500, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 3528, + "CropWidth": 596, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "MAGIC", + "Lines": [ + "Strike shatters foe\u0027s jaw and sends it up", + "into his brain. Foe is dead before he hits", + "the ground. Half round left to act.", + "\u2014" + ], + "BaseLines": [ + "Strike shatters foe\u0027s jaw and sends it up", + "into his brain. Foe is dead before he hits", + "the ground. Half round left to act.", + "\u2014" + ], + "RawCellText": "Strike shatters foe\u0027s jaw and sends it up\ninto his brain. Foe is dead before he hits\nthe ground. Half round left to act.\n\u2014", + "DescriptionText": "Strike shatters foe\u0027s jaw and sends it up into his brain. Foe is dead before he hits the ground. Half round left to act.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 890, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 3560, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 3528, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "MITHRIL", + "Lines": [ + "Strike foe in the abdomen. The wound is", + "mortal. A variety of important organs are", + "destroyed on impact. Foe drops and", + "dies after 6 rounds.", + "\u2014" + ], + "BaseLines": [ + "Strike foe in the abdomen. The wound is", + "mortal. A variety of important organs are", + "destroyed on impact. Foe drops and", + "dies after 6 rounds.", + "\u2014" + ], + "RawCellText": "Strike foe in the abdomen. The wound is\nmortal. A variety of important organs are\ndestroyed on impact. Foe drops and\ndies after 6 rounds.\n\u2014", + "DescriptionText": "Strike foe in the abdomen. The wound is mortal. A variety of important organs are destroyed on impact. Foe drops and dies after 6 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 890, + "Width": 145, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3560, + "BoundsWidth": 580, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 3528, + "CropWidth": 676, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Smooth strike to foe\u0027s cheek. Just as he", + "was about to deal you a deadly blow,", + "you crush the side of his head. He dies.", + "You have half the round left.", + "\u2014" + ], + "BaseLines": [ + "Smooth strike to foe\u0027s cheek. Just as he", + "was about to deal you a deadly blow,", + "you crush the side of his head. He dies.", + "You have half the round left.", + "\u2014" + ], + "RawCellText": "Smooth strike to foe\u0027s cheek. Just as he\nwas about to deal you a deadly blow,\nyou crush the side of his head. He dies.\nYou have half the round left.\n\u2014", + "DescriptionText": "Smooth strike to foe\u0027s cheek. Just as he was about to deal you a deadly blow, you crush the side of his head. He dies. You have half the round left.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 890, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3560, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 3528, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "SLAYING", + "Lines": [ + "You almost sever foe\u0027s head, with a", + "mighty blow to his neck. Foe is inactive", + "and dies in 5 rounds.", + "(\u002B20)" + ], + "BaseLines": [ + "You almost sever foe\u0027s head, with a", + "mighty blow to his neck. Foe is inactive", + "and dies in 5 rounds.", + "(\u002B20)" + ], + "RawCellText": "You almost sever foe\u0027s head, with a\nmighty blow to his neck. Foe is inactive\nand dies in 5 rounds.\n(\u002B20)", + "DescriptionText": "You almost sever foe\u0027s head, with a mighty blow to his neck. Foe is inactive and dies in 5 rounds.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 890, + "Width": 147, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 3560, + "BoundsWidth": 588, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 3528, + "CropWidth": 684, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike to bowels destroys foe\u0027s", + "abdomenal areas. Foe\u0027s blood is all", + "over you. Foe dies in 12 rounds.", + "\u002B35H \u2013 (\u002B15)" + ], + "BaseLines": [ + "Strike to bowels destroys foe\u0027s", + "abdomenal areas. Foe\u0027s blood is all", + "over you. Foe dies in 12 rounds.", + "\u002B35H \u2013 (\u002B15)" + ], + "RawCellText": "Strike to bowels destroys foe\u0027s\nabdomenal areas. Foe\u0027s blood is all\nover you. Foe dies in 12 rounds.\n\u002B35H \u2013 (\u002B15)", + "DescriptionText": "Strike to bowels destroys foe\u0027s abdomenal areas. Foe\u0027s blood is all over you. Foe dies in 12 rounds.", + "RawAffixText": "\u002B35H \u2013 (\u002B15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 952, + "Width": 125, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 3808, + "BoundsWidth": 500, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 3776, + "CropWidth": 596, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "MAGIC", + "Lines": [ + "Shot along side foe\u0027s head penetrates", + "his ear and he dies in 3 rounds.", + "You are mighty in battle.", + "\u002B10H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Shot along side foe\u0027s head penetrates", + "his ear and he dies in 3 rounds.", + "You are mighty in battle.", + "\u002B10H \u2013 (\u002B20)" + ], + "RawCellText": "Shot along side foe\u0027s head penetrates\nhis ear and he dies in 3 rounds.\nYou are mighty in battle.\n\u002B10H \u2013 (\u002B20)", + "DescriptionText": "Shot along side foe\u0027s head penetrates his ear and he dies in 3 rounds. You are mighty in battle.", + "RawAffixText": "\u002B10H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 952, + "Width": 140, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 3808, + "BoundsWidth": 560, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 3776, + "CropWidth": 656, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "MITHRIL", + "Lines": [ + "Death comes swiftly! Your strike severs", + "an artery in foe\u0027s leg. Foe fights for 2", + "rounds, then drops and dies in 6", + "rounds.", + "\u002B5H \u2013 2(-20)" + ], + "BaseLines": [ + "Death comes swiftly! Your strike severs", + "an artery in foe\u0027s leg. Foe fights for 2", + "rounds, then drops and dies in 6", + "rounds.", + "\u002B5H \u2013 2(-20)" + ], + "RawCellText": "Death comes swiftly! Your strike severs\nan artery in foe\u0027s leg. Foe fights for 2\nrounds, then drops and dies in 6\nrounds.\n\u002B5H \u2013 2(-20)", + "DescriptionText": "Death comes swiftly! Your strike severs an artery in foe\u0027s leg. Foe fights for 2 rounds, then drops and dies in 6 rounds.", + "RawAffixText": "\u002B5H \u2013 2(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 952, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 3808, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 3776, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike penetrates to foe\u0027s spine. Spine is", + "broken and foe is paralyzed from the", + "waist down. You will not have trouble", + "killing him.", + "\u002B20H" + ], + "BaseLines": [ + "Strike penetrates to foe\u0027s spine. Spine is", + "broken and foe is paralyzed from the", + "waist down. You will not have trouble", + "killing him.", + "\u002B20H" + ], + "RawCellText": "Strike penetrates to foe\u0027s spine. Spine is\nbroken and foe is paralyzed from the\nwaist down. You will not have trouble\nkilling him.\n\u002B20H", + "DescriptionText": "Strike penetrates to foe\u0027s spine. Spine is broken and foe is paralyzed from the waist down. You will not have trouble killing him.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 952, + "Width": 143, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 3808, + "BoundsWidth": 572, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 3776, + "CropWidth": 668, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike to abdomen damages a variety of", + "organs. Internal bleeding will kill foe in 4", + "rounds. You have half the round to act.", + "(\u002B20)" + ], + "BaseLines": [ + "Strike to abdomen damages a variety of", + "organs. Internal bleeding will kill foe in 4", + "rounds. You have half the round to act.", + "(\u002B20)" + ], + "RawCellText": "Strike to abdomen damages a variety of\norgans. Internal bleeding will kill foe in 4\nrounds. You have half the round to act.\n(\u002B20)", + "DescriptionText": "Strike to abdomen damages a variety of organs. Internal bleeding will kill foe in 4 rounds. You have half the round to act.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 952, + "Width": 147, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 3808, + "BoundsWidth": 588, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 3776, + "CropWidth": 684, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "NORMAL", + "Lines": [ + "Blow to foe\u0027s forearm severs a vein.", + "Foe dies in 7 rounds from shock", + "and blood loss. He is still standing.", + "\u002B15H \u2013 6\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Blow to foe\u0027s forearm severs a vein.", + "Foe dies in 7 rounds from shock", + "and blood loss. He is still standing.", + "\u002B15H \u2013 6\u2211 \u2013 (-30)" + ], + "RawCellText": "Blow to foe\u0027s forearm severs a vein.\nFoe dies in 7 rounds from shock\nand blood loss. He is still standing.\n\u002B15H \u2013 6\u2211 \u2013 (-30)", + "DescriptionText": "Blow to foe\u0027s forearm severs a vein. Foe dies in 7 rounds from shock and blood loss. He is still standing.", + "RawAffixText": "\u002B15H \u2013 6\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 1016, + "Width": 128, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 4064, + "BoundsWidth": 512, + "BoundsHeight": 228, + "CropLeft": 600, + "CropTop": 4032, + "CropWidth": 608, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "MAGIC", + "Lines": [ + "Strike to foe\u0027s back. Hit severs spine.", + "Foe is paralyzed from the neck down.", + "Sadly, your weapon is broken.", + "\u002B15H" + ], + "BaseLines": [ + "Strike to foe\u0027s back. Hit severs spine.", + "Foe is paralyzed from the neck down.", + "Sadly, your weapon is broken.", + "\u002B15H" + ], + "RawCellText": "Strike to foe\u0027s back. Hit severs spine.\nFoe is paralyzed from the neck down.\nSadly, your weapon is broken.\n\u002B15H", + "DescriptionText": "Strike to foe\u0027s back. Hit severs spine. Foe is paralyzed from the neck down. Sadly, your weapon is broken.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 1016, + "Width": 140, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 4064, + "BoundsWidth": 560, + "BoundsHeight": 228, + "CropLeft": 1128, + "CropTop": 4032, + "CropWidth": 656, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "MITHRIL", + "Lines": [ + "Heart strike. Your foe dies in true epic", + "form. He tumbles backwards and lands", + "with a thunderous sound. Your strike", + "knocks you to your knees. Foe is dead.", + "\u002B20H \u2013 2(\u002B15)" + ], + "BaseLines": [ + "Heart strike. Your foe dies in true epic", + "form. He tumbles backwards and lands", + "with a thunderous sound. Your strike", + "knocks you to your knees. Foe is dead.", + "\u002B20H \u2013 2(\u002B15)" + ], + "RawCellText": "Heart strike. Your foe dies in true epic\nform. He tumbles backwards and lands\nwith a thunderous sound. Your strike\nknocks you to your knees. Foe is dead.\n\u002B20H \u2013 2(\u002B15)", + "DescriptionText": "Heart strike. Your foe dies in true epic form. He tumbles backwards and lands with a thunderous sound. Your strike knocks you to your knees. Foe is dead.", + "RawAffixText": "\u002B20H \u2013 2(\u002B15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 1016, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 4064, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 1712, + "CropTop": 4032, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your weapon swings out and hammers", + "foe\u0027s evil heart. He expires and your", + "sword sings a joyful note. All who see", + "your mighty deed are inspired by it.", + "\u002B25H \u2013 3(\u002B20)" + ], + "BaseLines": [ + "Your weapon swings out and hammers", + "foe\u0027s evil heart. He expires and your", + "sword sings a joyful note. All who see", + "your mighty deed are inspired by it.", + "\u002B25H \u2013 3(\u002B20)" + ], + "RawCellText": "Your weapon swings out and hammers\nfoe\u0027s evil heart. He expires and your\nsword sings a joyful note. All who see\nyour mighty deed are inspired by it.\n\u002B25H \u2013 3(\u002B20)", + "DescriptionText": "Your weapon swings out and hammers foe\u0027s evil heart. He expires and your sword sings a joyful note. All who see your mighty deed are inspired by it.", + "RawAffixText": "\u002B25H \u2013 3(\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 1016, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 4064, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 2312, + "CropTop": 4032, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "SLAYING", + "Lines": [ + "Snap foe\u0027s head and break his neck. Foe", + "drops and dies. You may direct another", + "attack at anything you can reach.", + "\u2014" + ], + "BaseLines": [ + "Snap foe\u0027s head and break his neck. Foe", + "drops and dies. You may direct another", + "attack at anything you can reach.", + "\u2014" + ], + "RawCellText": "Snap foe\u0027s head and break his neck. Foe\ndrops and dies. You may direct another\nattack at anything you can reach.\n\u2014", + "DescriptionText": "Snap foe\u0027s head and break his neck. Foe drops and dies. You may direct another attack at anything you can reach.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 1016, + "Width": 145, + "Height": 57 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 4064, + "BoundsWidth": 580, + "BoundsHeight": 228, + "CropLeft": 2908, + "CropTop": 4032, + "CropWidth": 676, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "NORMAL", + "Lines": [ + "You grapple your foe and deal him", + "a mighty blow. You are knocked", + "out. Foe is also impaired.", + "\u002B35H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "You grapple your foe and deal him", + "a mighty blow. You are knocked", + "out. Foe is also impaired.", + "\u002B35H \u2013 3\u2211\u220F" + ], + "RawCellText": "You grapple your foe and deal him\na mighty blow. You are knocked\nout. Foe is also impaired.\n\u002B35H \u2013 3\u2211\u220F", + "DescriptionText": "You grapple your foe and deal him a mighty blow. You are knocked out. Foe is also impaired.", + "RawAffixText": "\u002B35H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 162, + "Top": 1080, + "Width": 125, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__normal__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 648, + "BoundsTop": 4320, + "BoundsWidth": 500, + "BoundsHeight": 188, + "CropLeft": 600, + "CropTop": 4288, + "CropWidth": 596, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "MAGIC", + "Lines": [ + "Strike through foe\u0027s eye proves fatal.", + "He dies immediately. You avoid his fall.", + "\u002B20H \u2013 (\u002B25)" + ], + "BaseLines": [ + "Strike through foe\u0027s eye proves fatal.", + "He dies immediately. You avoid his fall.", + "\u002B20H \u2013 (\u002B25)" + ], + "RawCellText": "Strike through foe\u0027s eye proves fatal.\nHe dies immediately. You avoid his fall.\n\u002B20H \u2013 (\u002B25)", + "DescriptionText": "Strike through foe\u0027s eye proves fatal. He dies immediately. You avoid his fall.", + "RawAffixText": "\u002B20H \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 294, + "Top": 1080, + "Width": 140, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__magic__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1176, + "BoundsTop": 4320, + "BoundsWidth": 560, + "BoundsHeight": 188, + "CropLeft": 1128, + "CropTop": 4288, + "CropWidth": 656, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "MITHRIL", + "Lines": [ + "You blind foe with a vicious crossing", + "strike to the eyes. He grips his face and", + "falls to his kness.", + "\u002B10H \u2013 6\u2211 \u2013 (-100)" + ], + "BaseLines": [ + "You blind foe with a vicious crossing", + "strike to the eyes. He grips his face and", + "falls to his kness.", + "\u002B10H \u2013 6\u2211 \u2013 (-100)" + ], + "RawCellText": "You blind foe with a vicious crossing\nstrike to the eyes. He grips his face and\nfalls to his kness.\n\u002B10H \u2013 6\u2211 \u2013 (-100)", + "DescriptionText": "You blind foe with a vicious crossing strike to the eyes. He grips his face and falls to his kness.", + "RawAffixText": "\u002B10H \u2013 6\u2211 \u2013 (-100)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -100, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-100)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 440, + "Top": 1080, + "Width": 142, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__mithril__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1760, + "BoundsTop": 4320, + "BoundsWidth": 568, + "BoundsHeight": 188, + "CropLeft": 1712, + "CropTop": 4288, + "CropWidth": 664, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike to foe\u0027s ribs puntures a lung. Foe", + "is knocked out. Your weapon is stuck in", + "foe for 6 rounds. Good luck.", + "\u2014" + ], + "BaseLines": [ + "Strike to foe\u0027s ribs puntures a lung. Foe", + "is knocked out. Your weapon is stuck in", + "foe for 6 rounds. Good luck.", + "\u2014" + ], + "RawCellText": "Strike to foe\u0027s ribs puntures a lung. Foe\nis knocked out. Your weapon is stuck in\nfoe for 6 rounds. Good luck.\n\u2014", + "DescriptionText": "Strike to foe\u0027s ribs puntures a lung. Foe is knocked out. Your weapon is stuck in foe for 6 rounds. Good luck.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 590, + "Top": 1080, + "Width": 141, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__holy_arms__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2360, + "BoundsTop": 4320, + "BoundsWidth": 564, + "BoundsHeight": 188, + "CropLeft": 2312, + "CropTop": 4288, + "CropWidth": 660, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "SLAYING", + "Lines": [ + "Drive foe\u0027s eyes back into his skull, with", + "a cross strike. Foe is blind and prone. Foe", + "is in pain. He does not even try to get up.", + "\u002B6H \u2013 24\u2211\u220F" + ], + "BaseLines": [ + "Drive foe\u0027s eyes back into his skull, with", + "a cross strike. Foe is blind and prone. Foe", + "is in pain. He does not even try to get up.", + "\u002B6H \u2013 24\u2211\u220F" + ], + "RawCellText": "Drive foe\u0027s eyes back into his skull, with\na cross strike. Foe is blind and prone. Foe\nis in pain. He does not even try to get up.\n\u002B6H \u2013 24\u2211\u220F", + "DescriptionText": "Drive foe\u0027s eyes back into his skull, with a cross strike. Foe is blind and prone. Foe is in pain. He does not even try to get up.", + "RawAffixText": "\u002B6H \u2013 24\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 739, + "Top": 1080, + "Width": 150, + "Height": 47 + }, + "SourceImagePath": "large_creature_weapon/cells/none__slaying__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2956, + "BoundsTop": 4320, + "BoundsWidth": 600, + "BoundsHeight": 188, + "CropLeft": 2908, + "CropTop": 4288, + "CropWidth": 696, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/source.xml b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/source.xml new file mode 100644 index 0000000..ece6bf0 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/source.xml @@ -0,0 +1,420 @@ + + + + + + + + + + + + + +97 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +Weapon shatters on foe's solid +form. +You fumble your weapon (roll on the +fumble table). +Your weapon bites hard, but you move +poorly. Lose initiative. +Glancing blow shakes you up. You +suffer a -10 penalty next round. +Blade touches foe's exposed skin. Your +weapon hisses. ++12H ++15H ++18H ++20H ++5H +06-10 +Solid, but futile. +Blow to foe's side. Pretty sparks. +Your weapon glances off foe's side and +leaves a measurable wound. +Your swing lands lightly. You had +hoped for better. +Your blow is solid, but lands on a well +protected area. ++3H ++4H ++5H ++9H ++10H +11-20 +Hardly enough for victory. Weak +side strike. +Your blade guides itself in, but you +miss the opportunity. +Blow shoulder. It's well placed, but +you'll need a lucky shot at this pace. +Your strike lands solid and righteous. +You wish it had landed a little more. +A mortal blow poorly placed. Maybe +you're holding it wrong? ++6H ++8H ++9H ++12H ++15H +21-30 +Strong blow to foe's forearm yields +its measure. +You give out an epic strike, but foe is an +epic creature. +You strike is solid, but your grip fails on +impact. +You trip foe and slam his shin with your +weapon. You are not being noble. +Bruise to foe's shoulder is made worse by +your weapon's strong enchantment. ++9H ++10H ++12H ++15H ++20H +31-40 +Strike to beast's chest. Some +unseen piece of protection blocks +your attack. +Hard strike to foe's thigh. It glances off. +You really wish that had landed better. +Your strike lands in a critical spot on +foe's abdomen. You are unable to +mortally wound him, for the moment. +Your weapon sparks against the beast's +hide and he realizes its mighty blessing. +Your weapon strikes foe like a clap of +thunder, clawing at his very essence. ++12H ++15H ++20H ++25H ++30H +41-50 +Strike lands upon foe's side. He +responds by leaping back away +from you. +Your blade bites into foe's skin with a +hiss. Foe roars out at you. You ready +yourself for what comes next. +Hack at foe's neck, landing on his +shoulder. He moves before the strike +bites deeper. +Heavy blow with all of your weight +behind it hits foe in his side. +Your weapon drives deep into foe's +abdomen. Blood pours out of foe. He +looks looks like a statue in a fountain. ++15H ++18H ++25H ++30H ++12H – ∏ – 5∫ +51-65 +Blow crashes into foe's leg. The +damage is obvious by the look on +his face. +Blow to foe's back. It concerns him +greatly. Good luck. +Grip foe's hide for leverage, before you +strike. Blow lands solid, but he throws +you clear. +Strike lands lightly against foe's +shoulder. You have the initiative for 3 +rounds. Foe's blood gets all over you. +Cave in the side of foe's head. Foe is +down and dies in 2 rounds. Your foot is +pinned under him for a round. ++20H ++5H – ∑ ++30H ++10H – π – 2∫ + +66 +Well placed strike to foe's neck +severs the jugular vein. Foe falls +and dies in 6 rounds. +Vicious strike to abdomenal region +destroys a variety of organs. Foe falls +over with a crash. He dies in 3 rounds. +Strike to foe's heart. He dies instantly. +You hit him one more time to make sure +he is dead. Very clean kill. +Drive home your attack right between +your foe's eyes. He dies instantly. You +have half the round left. +Chest wound knocks foe down. + ++30H + ++20H ++10H – 2∑∏ +67-70 +Foe's leg catches your failing strike +at the right moment. The leg is +bruised badly. +Blow to thigh leaves a bad bruise. Foe +almost falls over on you. You leap clear. +Strike to foe's thigh. Despite his size, it +sends him back. Your Mithril bites deep +and leaves a painful wound. +Foe loses his footing with your solid +strike. He takes time to gain his balance. +You are in good position. +Plunge weapon into foe's heart. Your +weapon seems to know the way. The +wound is instantly mortal. He dies. ++25H ++30H ++15H – 2∑ – (-20) – (+10) ++20H – 2∑∏ – (+10) ++20H – (+10) +71-80 +Arm strike gives foe a bruise. +Minor forearm wound. The beast's +guard is down for an instant. Press +your attack. +Tear him up! Your strike lands along +foe's arm. The wound is bleeding +everywhere. It's all over you, as well. +Tear open foe's leg with a brutal side +swing. Foe is unbalanced and bleeding. +His guard goes down. +Strike comes up under foe's arm. Blow +breaks bones in upper arm. Arm is +useless. Foe stumbles back. ++30H ++13H – 3∑∏ ++20H – 2∑∏ – 3∫ ++9H – ∑∏ – 3∫ – (-10) ++15H – 3∑ +81-90 +Strong blast to foe's stomach +staggers foe. His guard drops for a +moment. You have a chance. +Hard blow to foe's back. If foe has +wings they are damaged. If not, foe has +broken ribs. +Reverse your strike to catch foe in his +lower leg. He stumbles back out of +reach. +With a mighty cross swing you strike +foe's head. If he has a helm (or hard +head) you knock him out. If he has no +helm, you behead him and he dies. +You see the opportunity you have needed. +A legendary strike to foe's chest destroys +heart and other vital organs. He drops +and dies instantly. ++20H – 2∑∏ – (+10) ++22H – 3∑ – ∏ ++15H – 2∑ – 2∫ – (-20) ++30H ++25H – (+15) +91-95 +Strong blow to foe's leg yields a +gaping wound. If foe has blood, +you see a lot of it. +You strike at foe's face. It hits and +causes him some difficulty. +Weapon impacts upon foe's head with +unmatched force. Foe comes over and is +knocked out. +Your victory strike. Your weapon +crashes into foe's chest and downs him +for 2 rounds. He dies in 6 rounds. +Blow to foe's leg slashes an artery open. +Foe falls gripping his leg. He is inactive +for 12 sad rounds and then dies. ++18H – 3∑ – 5∫ –(-10) ++5H – 3∫ – (-25) – (+20) ++30H – (+10) + + +96-98 +Plunge your weapon into foe's +heart. Foe dies instantly, and falls +on you. You are pinned for 6 +rounds and +20H! +Your weapon plunges into foe's chest. +He drops and dies in 3 rounds. Your +weapon is stuck in him for 12 rounds. +Strike foe in his head and destroy his +brain. If that's not power, what is? +You have half the round left to act. +Strike foe in his ear. He dies next round. +You are very confident in your combat +skills. +True to its name, your weapon slays foe +by crushing his skull. Parts of bone fly in +all directions. Not a pretty sight. Foe +drops instantly to the ground. + ++25H + ++15H – (+25) + +99- +100 +Strike through foe's lungs. Foe falls +down and dies after 6 rounds. +Allies get a bonus! +Hard but flat strike. Your weapon takes +much of the impact. In addition to his +wound, your weapon is broken. +You find a weak point and hammer foe's +neck. Your weapon sticks in foe for 2 +rounds, while he struggles to breathe. +He dies in 6 rounds. +Your precision surgery blinds foe. He +quickly loses his direction and is in +trouble. +Strike foe in his face. His cheek bones +collapse. His neck is a bloody pulp. He +dies a round later. Your weapon is lodged +in foe. ++24H – (+20) ++35H – ∑∏ ++20H – 6∑∏ ++5H – 2∑∏ – (-100) + +101- +150 +Awesome strike to shoulder sends +foe stumbling. He has trouble +getting his balance back. +Strike foe in the side of his head. Foe +stumbles back a few feet before he falls +to the ground. He is out for 3 hours. +Catch foe in chin with all your weight +behind the weapon. Head snaps back +and chin shatters. Foe is knocked out for +30 days. +You miss foe's weapon arm, but the +strike lands on foe's knee. The results +are acceptable. +Sever a vein in foe's forelimb. He falls to +his knees. Blood is everywhere. He dies in +6 rounds. ++50H – 3∑∏ – (-35) ++20H – (+10) ++60H ++3H – 2∑ – 2∫ – (-30) ++20H – 6∑∏ – 12∫ +151- +175 +Strike drives bone into kidneys and +liver. Foe drops and dies in 6 +rounds. What a pity. +Strike shatters foe's jaw and sends it up +into his brain. Foe is dead before he hits +the ground. Half round left to act. +Strike foe in the abdomen. The wound is +mortal. A variety of important organs are +destroyed on impact. Foe drops and +dies after 6 rounds. +Smooth strike to foe's cheek. Just as he +was about to deal you a deadly blow, +you crush the side of his head. He dies. +You have half the round left. +You almost sever foe's head, with a +mighty blow to his neck. Foe is inactive +and dies in 5 rounds. + + + + +(+20) +176 - +200 +Strike to bowels destroys foe's +abdomenal areas. Foe's blood is all +over you. Foe dies in 12 rounds. +Shot along side foe's head penetrates +his ear and he dies in 3 rounds. +You are mighty in battle. +Death comes swiftly! Your strike severs +an artery in foe's leg. Foe fights for 2 +rounds, then drops and dies in 6 +rounds. +Strike penetrates to foe's spine. Spine is +broken and foe is paralyzed from the +waist down. You will not have trouble +killing him. +Strike to abdomen damages a variety of +organs. Internal bleeding will kill foe in 4 +rounds. You have half the round to act. ++35H – (+15) ++10H – (+20) ++5H – 2(-20) ++20H +(+20) +201- +250 +Blow to foe's forearm severs a vein. +Foe dies in 7 rounds from shock +and blood loss. He is still standing. +Strike to foe's back. Hit severs spine. +Foe is paralyzed from the neck down. +Sadly, your weapon is broken. +Heart strike. Your foe dies in true epic +form. He tumbles backwards and lands +with a thunderous sound. Your strike +knocks you to your knees. Foe is dead. +Your weapon swings out and hammers +foe's evil heart. He expires and your +sword sings a joyful note. All who see +your mighty deed are inspired by it. +Snap foe's head and break his neck. Foe +drops and dies. You may direct another +attack at anything you can reach. ++15H – 6∑ – (-30) ++15H ++20H – 2(+15) ++25H – 3(+20) + +251+ +You grapple your foe and deal him +a mighty blow. You are knocked +out. Foe is also impaired. +Strike through foe's eye proves fatal. +He dies immediately. You avoid his fall. +You blind foe with a vicious crossing +strike to the eyes. He grips his face and +falls to his kness. +Strike to foe's ribs puntures a lung. Foe +is knocked out. Your weapon is stuck in +foe for 6 rounds. Good luck. +Drive foe's eyes back into his skull, with +a cross strike. Foe is blind and prone. Foe +is in pain. He does not even try to get up. ++35H – 3∑∏ ++20H – (+25) ++10H – 6∑ – (-100) + ++6H – 24∑∏ +4.4 large creature critical strike table +normal +magic +mithril +holy arms +slaying + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/large_creature_weapon/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__01-05.png new file mode 100644 index 0000000..2da2cbc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__06-10.png new file mode 100644 index 0000000..8aa4e42 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__100.png new file mode 100644 index 0000000..75f1704 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__11-15.png new file mode 100644 index 0000000..71c6540 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__16-20.png new file mode 100644 index 0000000..34324c9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__21-35.png new file mode 100644 index 0000000..ae544dd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__36-45.png new file mode 100644 index 0000000..52a80be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__46-50.png new file mode 100644 index 0000000..104bef9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__51-55.png new file mode 100644 index 0000000..bba6d36 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__56-60.png new file mode 100644 index 0000000..4386153 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__61-65.png new file mode 100644 index 0000000..87c1118 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__66.png new file mode 100644 index 0000000..972bb8b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__67-70.png new file mode 100644 index 0000000..7bfec1d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__71-75.png new file mode 100644 index 0000000..864b90a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__76-80.png new file mode 100644 index 0000000..4235b35 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__81-85.png new file mode 100644 index 0000000..e3a6222 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__86-90.png new file mode 100644 index 0000000..f06d309 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__91-95.png new file mode 100644 index 0000000..54daa1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__96-99.png new file mode 100644 index 0000000..2e3c0f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__01-05.png new file mode 100644 index 0000000..3a48d7f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__06-10.png new file mode 100644 index 0000000..a0c0fd3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__100.png new file mode 100644 index 0000000..78e46ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__11-15.png new file mode 100644 index 0000000..f09c1e1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__16-20.png new file mode 100644 index 0000000..25f7320 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__21-35.png new file mode 100644 index 0000000..6eeb045 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__36-45.png new file mode 100644 index 0000000..ed5dab9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__46-50.png new file mode 100644 index 0000000..2e2e0b9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__51-55.png new file mode 100644 index 0000000..0706400 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__56-60.png new file mode 100644 index 0000000..9a6e9f6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__61-65.png new file mode 100644 index 0000000..6cc3e9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__66.png new file mode 100644 index 0000000..83507a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__67-70.png new file mode 100644 index 0000000..03e5536 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__71-75.png new file mode 100644 index 0000000..a5b1005 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__76-80.png new file mode 100644 index 0000000..9a664f1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__81-85.png new file mode 100644 index 0000000..8281858 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__86-90.png new file mode 100644 index 0000000..5169629 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__91-95.png new file mode 100644 index 0000000..d715e1a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__96-99.png new file mode 100644 index 0000000..c26ea7b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__01-05.png new file mode 100644 index 0000000..4d053dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__06-10.png new file mode 100644 index 0000000..d277bfc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__100.png new file mode 100644 index 0000000..5a60f01 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__11-15.png new file mode 100644 index 0000000..83ea121 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__16-20.png new file mode 100644 index 0000000..48233bc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__21-35.png new file mode 100644 index 0000000..d82c072 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__36-45.png new file mode 100644 index 0000000..dda5672 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__46-50.png new file mode 100644 index 0000000..5e5f3e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__51-55.png new file mode 100644 index 0000000..6099df9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__56-60.png new file mode 100644 index 0000000..b585457 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__61-65.png new file mode 100644 index 0000000..98e1347 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__66.png new file mode 100644 index 0000000..39ffd76 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__67-70.png new file mode 100644 index 0000000..5479ac2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__71-75.png new file mode 100644 index 0000000..820e936 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__76-80.png new file mode 100644 index 0000000..5f8de0e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__81-85.png new file mode 100644 index 0000000..ac5d13b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__86-90.png new file mode 100644 index 0000000..d970042 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__91-95.png new file mode 100644 index 0000000..6f0b70b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__96-99.png new file mode 100644 index 0000000..b91cf35 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__01-05.png new file mode 100644 index 0000000..f577f2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__06-10.png new file mode 100644 index 0000000..9fedf33 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__100.png new file mode 100644 index 0000000..442a605 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__11-15.png new file mode 100644 index 0000000..c3c30a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__16-20.png new file mode 100644 index 0000000..8922603 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__21-35.png new file mode 100644 index 0000000..6b8eb34 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__36-45.png new file mode 100644 index 0000000..e0a2064 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__46-50.png new file mode 100644 index 0000000..c3014d1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__51-55.png new file mode 100644 index 0000000..57d14cc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__56-60.png new file mode 100644 index 0000000..8e85029 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__61-65.png new file mode 100644 index 0000000..a8593f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__66.png new file mode 100644 index 0000000..f670131 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__67-70.png new file mode 100644 index 0000000..7a441a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__71-75.png new file mode 100644 index 0000000..495ed2d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__76-80.png new file mode 100644 index 0000000..81123a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__81-85.png new file mode 100644 index 0000000..b28a8fd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__86-90.png new file mode 100644 index 0000000..c4129a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__91-95.png new file mode 100644 index 0000000..ceceb3d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__96-99.png new file mode 100644 index 0000000..8800c5d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__01-05.png new file mode 100644 index 0000000..b635f63 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__06-10.png new file mode 100644 index 0000000..866d037 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__100.png new file mode 100644 index 0000000..273cf8a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__11-15.png new file mode 100644 index 0000000..9f597dc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__16-20.png new file mode 100644 index 0000000..b9105a2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__21-35.png new file mode 100644 index 0000000..813ad6a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__36-45.png new file mode 100644 index 0000000..e06cae0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__46-50.png new file mode 100644 index 0000000..ae8e2ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__51-55.png new file mode 100644 index 0000000..55ffd6c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__56-60.png new file mode 100644 index 0000000..7f3f853 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__61-65.png new file mode 100644 index 0000000..fed370f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__66.png new file mode 100644 index 0000000..35f3aff Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__67-70.png new file mode 100644 index 0000000..72de0eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__71-75.png new file mode 100644 index 0000000..496981a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__76-80.png new file mode 100644 index 0000000..68e11f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__81-85.png new file mode 100644 index 0000000..30bd36a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__86-90.png new file mode 100644 index 0000000..15c990e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__91-95.png new file mode 100644 index 0000000..a0e5687 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__96-99.png new file mode 100644 index 0000000..d844159 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/fragments.json new file mode 100644 index 0000000..a3fb7d9 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/fragments.json @@ -0,0 +1,3722 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 51, + "Width": 15, + "Height": 13, + "Text": "98", + "Confidence": null, + "CenterX": 58.5 + }, + { + "PageNumber": 1, + "Top": 109, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 103, + "Left": 82, + "Width": 78, + "Height": 9, + "Text": "Strike loses its power.", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 103, + "Left": 217, + "Width": 121, + "Height": 9, + "Text": "Fine artistry, but no extra damage.", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 103, + "Left": 369, + "Width": 137, + "Height": 9, + "Text": "Glancing blow makes a strange sound.", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 103, + "Left": 519, + "Width": 115, + "Height": 9, + "Text": "You impress foe with your form.", + "Confidence": null, + "CenterX": 576.5 + }, + { + "PageNumber": 1, + "Top": 103, + "Left": 670, + "Width": 141, + "Height": 9, + "Text": "How did you botch this beautiful strike?", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 498, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 649, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 123, + "Left": 805, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 82, + "Width": 74, + "Height": 9, + "Text": "Strike slows to a tap.", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 217, + "Width": 142, + "Height": 9, + "Text": "Your master would be so embarrassed.", + "Confidence": null, + "CenterX": 288 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 369, + "Width": 73, + "Height": 9, + "Text": "Not so solid a strike.", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 519, + "Width": 123, + "Height": 9, + "Text": "Foe steps out of most of the strike.", + "Confidence": null, + "CenterX": 580.5 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 670, + "Width": 137, + "Height": 9, + "Text": "Glancing strike makes foe respect you.", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 498, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 649, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 159, + "Left": 805, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 82, + "Width": 99, + "Height": 9, + "Text": "You maneauver for a better", + "Confidence": null, + "CenterX": 131.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 82, + "Width": 100, + "Height": 9, + "Text": "position. You have initiative.", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 217, + "Width": 134, + "Height": 9, + "Text": "Blow to shoulder. Foe steps back and", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 217, + "Width": 92, + "Height": 9, + "Text": "yields the initiative to you.", + "Confidence": null, + "CenterX": 263 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 369, + "Width": 125, + "Height": 9, + "Text": "Forceful. Foe steps back. You have", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 369, + "Width": 34, + "Height": 9, + "Text": "initiative.", + "Confidence": null, + "CenterX": 386 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 519, + "Width": 138, + "Height": 9, + "Text": "Kick foe\u0027s side. He stumbles out of the", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 519, + "Width": 98, + "Height": 9, + "Text": "way. You have the initiative.", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 670, + "Width": 139, + "Height": 9, + "Text": "You strike foe to unbalance him before", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 670, + "Width": 93, + "Height": 9, + "Text": "you attempt a killing blow.", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 498, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 205, + "Left": 787, + "Width": 32, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 233, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 82, + "Width": 129, + "Height": 9, + "Text": "You take an open shot to foe\u0027s side.", + "Confidence": null, + "CenterX": 146.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 82, + "Width": 69, + "Height": 9, + "Text": "You have initiative.", + "Confidence": null, + "CenterX": 116.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 217, + "Width": 128, + "Height": 9, + "Text": "Good shot! You have initiative for 2", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 217, + "Width": 29, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 231.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 369, + "Width": 145, + "Height": 9, + "Text": "Hard strike. Foe lashes out to avoid your", + "Confidence": null, + "CenterX": 441.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 369, + "Width": 40, + "Height": 9, + "Text": "next attack.", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 519, + "Width": 140, + "Height": 9, + "Text": "Foe blocks your attack. He falls back to", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 519, + "Width": 103, + "Height": 9, + "Text": "recover from your onslaught.", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 220, + "Left": 670, + "Width": 123, + "Height": 9, + "Text": "Snappy double shot to ribs. Crack!", + "Confidence": null, + "CenterX": 731.5 + }, + { + "PageNumber": 1, + "Top": 231, + "Left": 670, + "Width": 68, + "Height": 9, + "Text": "Ribs are fractured.", + "Confidence": null, + "CenterX": 704 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 481, + "Width": 30, + "Height": 9, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 615, + "Width": 48, + "Height": 9, + "Text": "\u002B8H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 251, + "Left": 760, + "Width": 59, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 789.5 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 82, + "Width": 131, + "Height": 9, + "Text": "Light, but well placed strike. You are", + "Confidence": null, + "CenterX": 147.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 82, + "Width": 118, + "Height": 9, + "Text": "already starting your next attack.", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 217, + "Width": 137, + "Height": 9, + "Text": "Strong, but poorly aimed strike forces", + "Confidence": null, + "CenterX": 285.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 217, + "Width": 124, + "Height": 9, + "Text": "foe to defend himself energetically.", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 369, + "Width": 134, + "Height": 9, + "Text": "Grab foe and bring your knee into his", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 369, + "Width": 140, + "Height": 9, + "Text": "ribs. The force of the strike throws him", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 369, + "Width": 62, + "Height": 9, + "Text": "from your grasp.", + "Confidence": null, + "CenterX": 400 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 519, + "Width": 135, + "Height": 9, + "Text": "Blow to chest. Use your forehead in a", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 519, + "Width": 127, + "Height": 9, + "Text": "brutal way to subdue foe. You have", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 519, + "Width": 80, + "Height": 9, + "Text": "initiative for 3 rounds.", + "Confidence": null, + "CenterX": 559 + }, + { + "PageNumber": 1, + "Top": 267, + "Left": 670, + "Width": 129, + "Height": 9, + "Text": "Side strike jars foe\u0027s kidneys. Heavy", + "Confidence": null, + "CenterX": 734.5 + }, + { + "PageNumber": 1, + "Top": 278, + "Left": 670, + "Width": 138, + "Height": 9, + "Text": "bruise to muscles. Foe steps right into", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 288, + "Left": 670, + "Width": 81, + "Height": 9, + "Text": "that one. He is in pain.", + "Confidence": null, + "CenterX": 710.5 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 178, + "Width": 30, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 330, + "Width": 30, + "Height": 9, + "Text": "\u002B6H \u2013 \u03C0", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 480, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 631, + "Width": 35, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 802, + "Width": 18, + "Height": 9, + "Text": "(-20)", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 341, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 82, + "Width": 118, + "Height": 9, + "Text": "Mild strike to foe\u0027s chest. He can", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 335, + "Left": 82, + "Width": 126, + "Height": 9, + "Text": "see your next strike coming and he", + "Confidence": null, + "CenterX": 145 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 82, + "Width": 73, + "Height": 9, + "Text": "attempts to block it.", + "Confidence": null, + "CenterX": 118.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 217, + "Width": 140, + "Height": 9, + "Text": "Chest strike. Foe makes a strange noise", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 335, + "Left": 217, + "Width": 125, + "Height": 9, + "Text": "on impact. He blocks and recovers.", + "Confidence": null, + "CenterX": 279.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 369, + "Width": 131, + "Height": 9, + "Text": "Clever feint finds an opening in foe\u0027s", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 335, + "Left": 369, + "Width": 122, + "Height": 9, + "Text": "guard. Your strike is light and fast.", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 369, + "Width": 65, + "Height": 9, + "Text": "Bruise foe\u0027s chest.", + "Confidence": null, + "CenterX": 401.5 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 519, + "Width": 141, + "Height": 9, + "Text": "Chest strike. Foe falls forward onto one", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 335, + "Left": 519, + "Width": 138, + "Height": 9, + "Text": "knee in front of you. His guard is down", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 519, + "Width": 52, + "Height": 9, + "Text": "for a moment.", + "Confidence": null, + "CenterX": 545 + }, + { + "PageNumber": 1, + "Top": 324, + "Left": 670, + "Width": 139, + "Height": 9, + "Text": "Strike is solid. It turns foe around. You", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 335, + "Left": 670, + "Width": 125, + "Height": 9, + "Text": "have a clean shot at foe\u0027s back next", + "Confidence": null, + "CenterX": 732.5 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 670, + "Width": 69, + "Height": 9, + "Text": "round, if you hurry.", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 160, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 312, + "Width": 48, + "Height": 9, + "Text": "\u002B7H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 480, + "Width": 32, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 624, + "Width": 40, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 810, + "Width": 9, + "Height": 9, + "Text": "\u2211", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 396, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 82, + "Width": 124, + "Height": 9, + "Text": "Foe is confused by your attack. He", + "Confidence": null, + "CenterX": 144 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 82, + "Width": 129, + "Height": 9, + "Text": "steps back to parry your next strike.", + "Confidence": null, + "CenterX": 146.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 217, + "Width": 140, + "Height": 9, + "Text": "Glancing kick to foe\u0027s back. The effects", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 217, + "Width": 134, + "Height": 9, + "Text": "are reasonable for your modest effort.", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 369, + "Width": 129, + "Height": 9, + "Text": "Step to the side and catch foe in his", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 369, + "Width": 144, + "Height": 9, + "Text": "back. He stumbles forward. His guard is", + "Confidence": null, + "CenterX": 441 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 369, + "Width": 22, + "Height": 9, + "Text": "down.", + "Confidence": null, + "CenterX": 380 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 519, + "Width": 141, + "Height": 9, + "Text": "Solid chest strike. The impact confuses", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 519, + "Width": 133, + "Height": 9, + "Text": "foe greatly. His ribs are fractured. He", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 519, + "Width": 39, + "Height": 9, + "Text": "hates you.", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "Draw down foe\u0027s defenses with a feint", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "and then hammer him in chest. Your", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 670, + "Width": 78, + "Height": 9, + "Text": "tactics are acceptable.", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 160, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 328, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 496, + "Width": 16, + "Height": 9, + "Text": "\u2211\u220F", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 600, + "Width": 64, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 632 + }, + { + "PageNumber": 1, + "Top": 420, + "Left": 766, + "Width": 55, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 449, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 82, + "Width": 114, + "Height": 9, + "Text": "Strike bends foe\u0027s hip in an odd", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 82, + "Width": 100, + "Height": 9, + "Text": "direction. He is unbalanced.", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 217, + "Width": 136, + "Height": 9, + "Text": "Side strike sends foe stumbling to the", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 217, + "Width": 123, + "Height": 9, + "Text": "left 5 feet. He recovers to face you.", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 369, + "Width": 127, + "Height": 9, + "Text": "With a circular block and a focused", + "Confidence": null, + "CenterX": 432.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 369, + "Width": 138, + "Height": 9, + "Text": "central strike you break foe\u0027s defenses.", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 519, + "Width": 134, + "Height": 9, + "Text": "Textbook shot to foe\u0027s upper leg. The", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 519, + "Width": 136, + "Height": 9, + "Text": "bruise is deep. Foe does not fall down.", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "Hip strike spins foe. He is suspicious of", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "gravity and struggles to stay standing.", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 177, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 328, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 468, + "Width": 45, + "Height": 9, + "Text": "\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 490.5 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 622, + "Width": 41, + "Height": 9, + "Text": "\u002B6H \u2013 (-25)", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 467, + "Left": 783, + "Width": 37, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 494, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 82, + "Width": 123, + "Height": 9, + "Text": "Fist to chest. A solid punch. Foe is", + "Confidence": null, + "CenterX": 143.5 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 82, + "Width": 48, + "Height": 9, + "Text": "rattled a little.", + "Confidence": null, + "CenterX": 106 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 217, + "Width": 129, + "Height": 9, + "Text": "Boom! Good shot to foe\u0027s stomach.", + "Confidence": null, + "CenterX": 281.5 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 217, + "Width": 93, + "Height": 9, + "Text": "He almost loses his lunch.", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 369, + "Width": 128, + "Height": 9, + "Text": "Strong wheel kick sends foe 10 feet", + "Confidence": null, + "CenterX": 433 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 369, + "Width": 85, + "Height": 9, + "Text": "in any desired direction.", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 519, + "Width": 128, + "Height": 9, + "Text": "Back strike. Foe attempts to flee and", + "Confidence": null, + "CenterX": 583 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 519, + "Width": 82, + "Height": 9, + "Text": "then changes his mind.", + "Confidence": null, + "CenterX": 560 + }, + { + "PageNumber": 1, + "Top": 482, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "Shoulder strike. Foe is badly unbalances", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 670, + "Width": 105, + "Height": 9, + "Text": "and unable to defend himself.", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 177, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 325, + "Width": 35, + "Height": 9, + "Text": "\u002B3H \u20132\u2211", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 475, + "Width": 37, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 627, + "Width": 37, + "Height": 9, + "Text": "\u002B4H \u2013 3\u2211", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 512, + "Left": 763, + "Width": 57, + "Height": 9, + "Text": "2\u2211 \u2013 \u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 82, + "Width": 126, + "Height": 9, + "Text": "Blow on top of foe\u0027s foot is slightly", + "Confidence": null, + "CenterX": 145 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "misplaced, but quick. Bruise toe", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 82, + "Width": 71, + "Height": 9, + "Text": "and mash toe nails.", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 217, + "Width": 137, + "Height": 9, + "Text": "Kick in back of foe\u0027s leg. He stumbles,", + "Confidence": null, + "CenterX": 285.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 217, + "Width": 126, + "Height": 9, + "Text": "but does not fall. You move to gain", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 217, + "Width": 40, + "Height": 9, + "Text": "advantage.", + "Confidence": null, + "CenterX": 237 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 369, + "Width": 140, + "Height": 9, + "Text": "Brutal strike to upper leg. The bruise is", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 369, + "Width": 139, + "Height": 9, + "Text": "deep. The pain makes it hard for foe to", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 369, + "Width": 59, + "Height": 9, + "Text": "stand on the leg.", + "Confidence": null, + "CenterX": 398.5 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 519, + "Width": 139, + "Height": 9, + "Text": "Blow strikes a nerve in foe\u0027s upper leg.", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 519, + "Width": 132, + "Height": 9, + "Text": "He is not in pain, but his leg is numb.", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 528, + "Left": 670, + "Width": 140, + "Height": 9, + "Text": "Draw out foe\u0027s weapon arm. You strike", + "Confidence": null, + "CenterX": 740 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 670, + "Width": 115, + "Height": 9, + "Text": "cleanly to disarm him. Textbook.", + "Confidence": null, + "CenterX": 727.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 163, + "Width": 46, + "Height": 9, + "Text": "\u002B5H \u2013 5(-20)", + "Confidence": null, + "CenterX": 186 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 324, + "Width": 37, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 471, + "Width": 41, + "Height": 9, + "Text": "\u002B5H \u2013 (-25)", + "Confidence": null, + "CenterX": 491.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 619, + "Width": 45, + "Height": 9, + "Text": "2\u2211 \u2013 6(-25)", + "Confidence": null, + "CenterX": 641.5 + }, + { + "PageNumber": 1, + "Top": 569, + "Left": 805, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 608, + "Left": 45, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 53.5 + }, + { + "PageNumber": 1, + "Top": 586, + "Left": 82, + "Width": 125, + "Height": 9, + "Text": "Strike Achilles tendon. Foe almost", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 82, + "Width": 121, + "Height": 9, + "Text": "falls. He recovers his balance, but", + "Confidence": null, + "CenterX": 142.5 + }, + { + "PageNumber": 1, + "Top": 607, + "Left": 82, + "Width": 66, + "Height": 9, + "Text": "the pain is strong.", + "Confidence": null, + "CenterX": 115 + }, + { + "PageNumber": 1, + "Top": 586, + "Left": 217, + "Width": 131, + "Height": 9, + "Text": "Strike foe in his forehead. The shock", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 217, + "Width": 130, + "Height": 9, + "Text": "sprains neck and fractures foe\u0027s jaw.", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 607, + "Left": 217, + "Width": 116, + "Height": 9, + "Text": "He cannot seem to close his jaw.", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 586, + "Left": 369, + "Width": 137, + "Height": 9, + "Text": "Knife hand strike breaks foe\u0027s weapon", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 369, + "Width": 145, + "Height": 9, + "Text": "arm, leaving it useless. Follow-up punch", + "Confidence": null, + "CenterX": 441.5 + }, + { + "PageNumber": 1, + "Top": 607, + "Left": 369, + "Width": 108, + "Height": 9, + "Text": "to solar plexus knocks foe out.", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 586, + "Left": 519, + "Width": 131, + "Height": 9, + "Text": "Grip foe\u0027s weapon arm. Dislocate the", + "Confidence": null, + "CenterX": 584.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 519, + "Width": 114, + "Height": 9, + "Text": "arm and then break it. Use your", + "Confidence": null, + "CenterX": 576 + }, + { + "PageNumber": 1, + "Top": 607, + "Left": 519, + "Width": 150, + "Height": 9, + "Text": "advantage to pull foe over and kick him in", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 617, + "Left": 519, + "Width": 101, + "Height": 9, + "Text": "the face. Foe is knocked out.", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 586, + "Left": 670, + "Width": 148, + "Height": 9, + "Text": "Simultaneous palm strike to both of foe\u0027s", + "Confidence": null, + "CenterX": 744 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 670, + "Width": 144, + "Height": 9, + "Text": "ears. Destroy foe\u0027s hearing and balance.", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 147, + "Width": 62, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013(-50)", + "Confidence": null, + "CenterX": 178 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 297, + "Width": 64, + "Height": 9, + "Text": "\u002B4H \u2013 9\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 502, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 645, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 637, + "Left": 775, + "Width": 45, + "Height": 9, + "Text": "24\u2211 \u2013 (-95)", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 664, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 652, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "Weak spearhand to foe\u0027s side. It", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 82, + "Width": 91, + "Height": 9, + "Text": "yields an excellent effect.", + "Confidence": null, + "CenterX": 127.5 + }, + { + "PageNumber": 1, + "Top": 652, + "Left": 217, + "Width": 138, + "Height": 9, + "Text": "Spear hand strike to chest. Elbow shot", + "Confidence": null, + "CenterX": 286 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 217, + "Width": 131, + "Height": 9, + "Text": "to foe\u0027s side causes some confusion.", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 652, + "Left": 369, + "Width": 134, + "Height": 9, + "Text": "Strong knife hand to upper portion of", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 369, + "Width": 113, + "Height": 9, + "Text": "foe\u0027s shield arm. Arm is broken.", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 652, + "Left": 519, + "Width": 137, + "Height": 9, + "Text": "Press your attack under the bottom of", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 519, + "Width": 143, + "Height": 9, + "Text": "foe\u0027s ribcage. Knock the wind out of foe.", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 652, + "Left": 670, + "Width": 144, + "Height": 9, + "Text": "Elbow to solar plexus and back of fist to", + "Confidence": null, + "CenterX": 742 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 670, + "Width": 78, + "Height": 9, + "Text": "foe\u0027s face. Foe drops.", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 172, + "Width": 37, + "Height": 9, + "Text": "\u002B2H \u2013 2\u2211", + "Confidence": null, + "CenterX": 190.5 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 324, + "Width": 37, + "Height": 9, + "Text": "\u002B3H \u2013 3\u2211", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 502, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 643, + "Width": 21, + "Height": 9, + "Text": "2\u2211\u220F", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 763, + "Width": 56, + "Height": 9, + "Text": "\u002B5H - 3\u2211 \u2013 2\u220F", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 715, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 82, + "Width": 84, + "Height": 9, + "Text": "Knife hand, spear hand", + "Confidence": null, + "CenterX": 124 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 82, + "Width": 106, + "Height": 9, + "Text": "combination. Foe must roll a", + "Confidence": null, + "CenterX": 135 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 82, + "Width": 59, + "Height": 9, + "Text": "weapon fumble.", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 217, + "Width": 140, + "Height": 9, + "Text": "Hammer foe\u0027s weapon arm as it passes", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 217, + "Width": 141, + "Height": 9, + "Text": "near you. The bruise is deep. Foe holds", + "Confidence": null, + "CenterX": 287.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 217, + "Width": 72, + "Height": 9, + "Text": "tight to his weapon.", + "Confidence": null, + "CenterX": 253 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 369, + "Width": 109, + "Height": 9, + "Text": "Strike to back of lower leg. Foe", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 369, + "Width": 140, + "Height": 9, + "Text": "struggles to keep balance. He is unable", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 369, + "Width": 64, + "Height": 9, + "Text": "to defend himself.", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 519, + "Width": 141, + "Height": 9, + "Text": "Firm flat palm strike to foe\u0027s collarbone.", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 519, + "Width": 134, + "Height": 9, + "Text": "Bone is broken. Foe guard is down. It", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 519, + "Width": 96, + "Height": 9, + "Text": "hurts him to raise his arm.", + "Confidence": null, + "CenterX": 567 + }, + { + "PageNumber": 1, + "Top": 698, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "Kick foe\u0027s knee in backwards. Tendons", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 670, + "Width": 126, + "Height": 9, + "Text": "and muscles are torn. Foe yells out", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 670, + "Width": 80, + "Height": 9, + "Text": "frightfully in response.", + "Confidence": null, + "CenterX": 710 + }, + { + "PageNumber": 1, + "Top": 739, + "Left": 199, + "Width": 9, + "Height": 9, + "Text": "\u2211", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 739, + "Left": 297, + "Width": 64, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 739, + "Left": 492, + "Width": 21, + "Height": 9, + "Text": "2\u2211\u220F", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 739, + "Left": 616, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 640 + }, + { + "PageNumber": 1, + "Top": 739, + "Left": 756, + "Width": 64, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 770, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 754, + "Left": 82, + "Width": 132, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm. If foe has a", + "Confidence": null, + "CenterX": 148 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "shield, it is broken. If foe has no", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 82, + "Width": 89, + "Height": 9, + "Text": "shield, his arm is broken.", + "Confidence": null, + "CenterX": 126.5 + }, + { + "PageNumber": 1, + "Top": 754, + "Left": 217, + "Width": 142, + "Height": 9, + "Text": "You find an opening and strike the back", + "Confidence": null, + "CenterX": 288 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 217, + "Width": 125, + "Height": 9, + "Text": "of foe\u0027s knee. The impact damages", + "Confidence": null, + "CenterX": 279.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 217, + "Width": 101, + "Height": 9, + "Text": "tendons and unbalances foe.", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 754, + "Left": 369, + "Width": 133, + "Height": 9, + "Text": "You turn a block into a strike to foe\u0027s", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 369, + "Width": 131, + "Height": 9, + "Text": "weapon arm. Foe is disarmed. Strike", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 369, + "Width": 69, + "Height": 9, + "Text": "damages cartilage.", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 754, + "Left": 519, + "Width": 136, + "Height": 9, + "Text": "Stirke and grip area behind foe\u0027s knee.", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 519, + "Width": 132, + "Height": 9, + "Text": "Tendon and cartilage damage insures", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 519, + "Width": 49, + "Height": 9, + "Text": "your success.", + "Confidence": null, + "CenterX": 543.5 + }, + { + "PageNumber": 1, + "Top": 754, + "Left": 670, + "Width": 151, + "Height": 9, + "Text": "Front kick to midsection doubles foe over.", + "Confidence": null, + "CenterX": 745.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 670, + "Width": 127, + "Height": 9, + "Text": "You follow with a knee strike which", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "breaks foe\u0027s nose and knocks foe out.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 794, + "Left": 177, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 794, + "Left": 321, + "Width": 40, + "Height": 9, + "Text": "2\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 794, + "Left": 477, + "Width": 36, + "Height": 9, + "Text": "\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 794, + "Left": 646, + "Width": 18, + "Height": 9, + "Text": "(-75)", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 794, + "Left": 810, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 828, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 82, + "Width": 117, + "Height": 9, + "Text": "Kick to foe\u0027s weapon arm. Foe is", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 82, + "Width": 117, + "Height": 9, + "Text": "disarmed. Your strike does little", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 82, + "Width": 18, + "Height": 9, + "Text": "else.", + "Confidence": null, + "CenterX": 91 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 217, + "Width": 115, + "Height": 9, + "Text": "Kick foe\u0027s weapon arm and send", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 217, + "Width": 143, + "Height": 9, + "Text": "weapon flying 5 feet away. You break 2", + "Confidence": null, + "CenterX": 288.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 217, + "Width": 62, + "Height": 9, + "Text": "of foe\u0027s weapons.", + "Confidence": null, + "CenterX": 248 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 369, + "Width": 141, + "Height": 9, + "Text": "Heel kick breaks bone in foe\u0027s foot. Foe", + "Confidence": null, + "CenterX": 439.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 369, + "Width": 128, + "Height": 9, + "Text": "has trouble standing. His foot looks", + "Confidence": null, + "CenterX": 433 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 369, + "Width": 15, + "Height": 9, + "Text": "bad.", + "Confidence": null, + "CenterX": 376.5 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 519, + "Width": 140, + "Height": 9, + "Text": "Kick to foe\u0027s leg is clean and mean. Leg", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 519, + "Width": 142, + "Height": 9, + "Text": "is broken above the knee. Foe falls over", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 519, + "Width": 27, + "Height": 9, + "Text": "slowly.", + "Confidence": null, + "CenterX": 532.5 + }, + { + "PageNumber": 1, + "Top": 811, + "Left": 670, + "Width": 138, + "Height": 9, + "Text": "Powerful strike shatters knee and then", + "Confidence": null, + "CenterX": 739 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 670, + "Width": 133, + "Height": 9, + "Text": "disjoints it. Foe drops. Oh that hurts!", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 195, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 297, + "Width": 64, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 465, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 489 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 592, + "Width": 71, + "Height": 9, + "Text": "\u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 627.5 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 739, + "Width": 80, + "Height": 9, + "Text": "\u002B15H \u2013 12\u2211\u220F \u2013 (-80)", + "Confidence": null, + "CenterX": 779 + }, + { + "PageNumber": 1, + "Top": 885, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 82, + "Width": 118, + "Height": 9, + "Text": "Fluid move followed by a leaping", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 82, + "Width": 128, + "Height": 9, + "Text": "kick to foe\u0027s back knocks foe down.", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 82, + "Width": 113, + "Height": 9, + "Text": "He is shaken and tries to stand.", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 217, + "Width": 123, + "Height": 9, + "Text": "Wheel kick knocks foe flat. Smash", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 217, + "Width": 142, + "Height": 9, + "Text": "tendons and tear muscle. You spin clear", + "Confidence": null, + "CenterX": 288 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 217, + "Width": 82, + "Height": 9, + "Text": "with too much energy.", + "Confidence": null, + "CenterX": 258 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 369, + "Width": 133, + "Height": 9, + "Text": "Clean strike to lower leg rips Achilles", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 369, + "Width": 78, + "Height": 9, + "Text": "tendon and drops foe.", + "Confidence": null, + "CenterX": 408 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 519, + "Width": 147, + "Height": 9, + "Text": "Open-handed blow to foe\u0027s adam\u0027s apple", + "Confidence": null, + "CenterX": 592.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 519, + "Width": 138, + "Height": 9, + "Text": "crushes foe\u0027s windpipe. Foe dies in 18", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 519, + "Width": 122, + "Height": 9, + "Text": "rounds of shock and asphyxiation.", + "Confidence": null, + "CenterX": 580 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 670, + "Width": 149, + "Height": 9, + "Text": "Round house kick to kidneys drops foe to", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 879, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "his knees. You grip foe\u0027s neck and snap", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 670, + "Width": 140, + "Height": 9, + "Text": "it very effectively. Foe dies in 9 rounds.", + "Confidence": null, + "CenterX": 740 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 195, + "Width": 13, + "Height": 9, + "Text": "3\u2211", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 321, + "Width": 40, + "Height": 9, + "Text": "9\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 444, + "Width": 68, + "Height": 9, + "Text": "\u002B10H \u2013 9\u2211 \u2013 (-80)", + "Confidence": null, + "CenterX": 478 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 654, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 909, + "Left": 810, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 82, + "Width": 128, + "Height": 9, + "Text": "Strike to nerve in foe\u0027s leg. Foe\u0027s leg", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 82, + "Width": 104, + "Height": 9, + "Text": "buckles. He does not fall, he", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 82, + "Width": 85, + "Height": 9, + "Text": "crouches down in pain.", + "Confidence": null, + "CenterX": 124.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 217, + "Width": 119, + "Height": 9, + "Text": "Strike to foe\u0027s knee shatters joint.", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 217, + "Width": 124, + "Height": 9, + "Text": "Foe drops down hard. He grips his", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 217, + "Width": 98, + "Height": 9, + "Text": "knee and spits out an oath.", + "Confidence": null, + "CenterX": 266 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 369, + "Width": 142, + "Height": 9, + "Text": "Flying kick to foe\u0027s back. You knock foe", + "Confidence": null, + "CenterX": 440 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 369, + "Width": 129, + "Height": 9, + "Text": "down, disarm him, and leave him in", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 369, + "Width": 29, + "Height": 9, + "Text": "trouble.", + "Confidence": null, + "CenterX": 383.5 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 519, + "Width": 137, + "Height": 9, + "Text": "Jab to foe\u0027s eyes blinds him. Crescent", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 519, + "Width": 134, + "Height": 9, + "Text": "kick sends foe 10 feet in the direction", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 519, + "Width": 40, + "Height": 9, + "Text": "you select.", + "Confidence": null, + "CenterX": 539 + }, + { + "PageNumber": 1, + "Top": 924, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "Strike to abdomen ruptures spleen. Foe", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 670, + "Width": 139, + "Height": 9, + "Text": "spits out blood instantly. He drops and", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 670, + "Width": 66, + "Height": 9, + "Text": "dies in 12 rounds.", + "Confidence": null, + "CenterX": 703 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 132, + "Width": 78, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F \u2013 6(-40)", + "Confidence": null, + "CenterX": 171 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 313, + "Width": 48, + "Height": 9, + "Text": "4\u2211\u220F \u2013 (-85)", + "Confidence": null, + "CenterX": 337 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 487, + "Width": 25, + "Height": 9, + "Text": "12\u2211\u220F", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 615, + "Width": 49, + "Height": 9, + "Text": "10\u2211 \u2013 (-100)", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 801, + "Width": 19, + "Height": 9, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 1003, + "Left": 35, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 54 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "You block foe\u0027s attack. You then", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 82, + "Width": 113, + "Height": 9, + "Text": "follow-up with a side strike that", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 82, + "Width": 128, + "Height": 9, + "Text": "knocks foe down. Foe hits hard and", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 82, + "Width": 67, + "Height": 9, + "Text": "loses his direction.", + "Confidence": null, + "CenterX": 115.5 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 217, + "Width": 133, + "Height": 9, + "Text": "Roundhouse kick knocks foe out and", + "Confidence": null, + "CenterX": 283.5 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 217, + "Width": 136, + "Height": 9, + "Text": "fractures collarbone. Neck is sprained", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 217, + "Width": 122, + "Height": 9, + "Text": "and shoulder muscles are bruised.", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 369, + "Width": 140, + "Height": 9, + "Text": "Kick to foe\u0027s solar plexus. He stumbles", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 369, + "Width": 111, + "Height": 9, + "Text": "back 10 feet. He falls very hard.", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 519, + "Width": 145, + "Height": 9, + "Text": "Round house kick catches foe in back of", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 519, + "Width": 125, + "Height": 9, + "Text": "head. You slam foe\u0027s head into the", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 519, + "Width": 144, + "Height": 9, + "Text": "ground. Severe concussion. Foe dies of", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 519, + "Width": 88, + "Height": 9, + "Text": "hemorrhage in 9 rounds.", + "Confidence": null, + "CenterX": 563 + }, + { + "PageNumber": 1, + "Top": 981, + "Left": 670, + "Width": 140, + "Height": 9, + "Text": "Double palmstrike to foe\u0027s nose breaks", + "Confidence": null, + "CenterX": 740 + }, + { + "PageNumber": 1, + "Top": 991, + "Left": 670, + "Width": 129, + "Height": 9, + "Text": "cartilage and drives bone into brain.", + "Confidence": null, + "CenterX": 734.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 670, + "Width": 135, + "Height": 9, + "Text": "The effects are rapid. Foe dies after 6", + "Confidence": null, + "CenterX": 737.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 670, + "Width": 100, + "Height": 9, + "Text": "rounds prone and immobile.", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 189, + "Width": 21, + "Height": 9, + "Text": "3\u2211\u220F", + "Confidence": null, + "CenterX": 199.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 297, + "Width": 63, + "Height": 9, + "Text": "20\u2211\u220F \u201320(-100)", + "Confidence": null, + "CenterX": 328.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 459, + "Width": 53, + "Height": 9, + "Text": "\u002B30H \u2013 30\u2211\u220F", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 654, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 810, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 1074, + "Left": 41, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 53.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 82, + "Width": 120, + "Height": 9, + "Text": "Gooseneck strike. Foe\u0027s inner ear", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "ruptured. Foe stands there while", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 82, + "Width": 119, + "Height": 9, + "Text": "your follow-up strike knocks him", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 82, + "Width": 54, + "Height": 9, + "Text": "down and out!", + "Confidence": null, + "CenterX": 109 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 217, + "Width": 136, + "Height": 9, + "Text": "Knife hand strike to foe\u0027s weapon arm", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 217, + "Width": 140, + "Height": 9, + "Text": "breaks bone. Kick to lower back breaks", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 217, + "Width": 134, + "Height": 9, + "Text": "foe\u0027s backbone, leaving foe paralyzed", + "Confidence": null, + "CenterX": 284 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 217, + "Width": 77, + "Height": 9, + "Text": "from the waist down.", + "Confidence": null, + "CenterX": 255.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 369, + "Width": 132, + "Height": 9, + "Text": "Sweep lays foe out and heel strike to", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 369, + "Width": 128, + "Height": 9, + "Text": "foe\u0027s sternum collapses the ribcage.", + "Confidence": null, + "CenterX": 433 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 369, + "Width": 129, + "Height": 9, + "Text": "Foe is helpless and dies in 4 rounds.", + "Confidence": null, + "CenterX": 433.5 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 519, + "Width": 135, + "Height": 9, + "Text": "Gooosh! Awesome spear hand strike", + "Confidence": null, + "CenterX": 586.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 519, + "Width": 143, + "Height": 9, + "Text": "finds seam, penetrates solar plexus and", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 519, + "Width": 132, + "Height": 9, + "Text": "ruptures the heart. Foe dies instantly.", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 1047, + "Left": 670, + "Width": 153, + "Height": 9, + "Text": "Disarm foe and use his weapon to kill him.", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 670, + "Width": 137, + "Height": 9, + "Text": "A follow-up strike breaks his neck and", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 670, + "Width": 129, + "Height": 9, + "Text": "you send him 5 feet in any direction.", + "Confidence": null, + "CenterX": 734.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 670, + "Width": 60, + "Height": 9, + "Text": "He is dead twice.", + "Confidence": null, + "CenterX": 700 + }, + { + "PageNumber": 1, + "Top": 1107, + "Left": 192, + "Width": 18, + "Height": 9, + "Text": "(-75)", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 1107, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 1107, + "Left": 502, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 1107, + "Left": 654, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 1107, + "Left": 810, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 814.5 + }, + { + "PageNumber": 1, + "Top": 47, + "Left": 155, + "Width": 542, + "Height": 14, + "Text": "4.5 martial arts strikes critical strike table", + "Confidence": null, + "CenterX": 426 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 138, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 279, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 431, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 438.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 580, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 741, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 746.5 + }, + { + "PageNumber": 1, + "Top": 176, + "Left": 82, + "Width": 92, + "Height": 9, + "Text": "You maneuver for a better", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 82, + "Width": 100, + "Height": 9, + "Text": "position. You have initiative.", + "Confidence": null, + "CenterX": 132 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/pages/page-001.png new file mode 100644 index 0000000..67bb1b3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/parsed-cells.json new file mode 100644 index 0000000..7e2e79f --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/parsed-cells.json @@ -0,0 +1,6403 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Strike loses its power.", + "\u002B0H" + ], + "BaseLines": [ + "Strike loses its power.", + "\u002B0H" + ], + "RawCellText": "Strike loses its power.\n\u002B0H", + "DescriptionText": "Strike loses its power.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 103, + "Width": 127, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 412, + "BoundsWidth": 508, + "BoundsHeight": 116, + "CropLeft": 280, + "CropTop": 380, + "CropWidth": 604, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Fine artistry, but no extra damage.", + "\u002B0H" + ], + "BaseLines": [ + "Fine artistry, but no extra damage.", + "\u002B0H" + ], + "RawCellText": "Fine artistry, but no extra damage.\n\u002B0H", + "DescriptionText": "Fine artistry, but no extra damage.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 103, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 412, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 820, + "CropTop": 380, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Glancing blow makes a strange sound.", + "\u002B1H" + ], + "BaseLines": [ + "Glancing blow makes a strange sound.", + "\u002B1H" + ], + "RawCellText": "Glancing blow makes a strange sound.\n\u002B1H", + "DescriptionText": "Glancing blow makes a strange sound.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 103, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 412, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 1428, + "CropTop": 380, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "You impress foe with your form.", + "\u002B2H" + ], + "BaseLines": [ + "You impress foe with your form.", + "\u002B2H" + ], + "RawCellText": "You impress foe with your form.\n\u002B2H", + "DescriptionText": "You impress foe with your form.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 103, + "Width": 144, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 412, + "BoundsWidth": 576, + "BoundsHeight": 116, + "CropLeft": 2028, + "CropTop": 380, + "CropWidth": 672, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "How did you botch this beautiful strike?", + "\u002B3H" + ], + "BaseLines": [ + "How did you botch this beautiful strike?", + "\u002B3H" + ], + "RawCellText": "How did you botch this beautiful strike?\n\u002B3H", + "DescriptionText": "How did you botch this beautiful strike?", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 103, + "Width": 149, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 412, + "BoundsWidth": 596, + "BoundsHeight": 116, + "CropLeft": 2632, + "CropTop": 380, + "CropWidth": 692, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Strike slows to a tap.", + "\u002B1H" + ], + "BaseLines": [ + "Strike slows to a tap.", + "\u002B1H" + ], + "RawCellText": "Strike slows to a tap.\n\u002B1H", + "DescriptionText": "Strike slows to a tap.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 139, + "Width": 127, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 556, + "BoundsWidth": 508, + "BoundsHeight": 116, + "CropLeft": 280, + "CropTop": 524, + "CropWidth": 604, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Your master would be so embarrassed.", + "\u002B2H" + ], + "BaseLines": [ + "Your master would be so embarrassed.", + "\u002B2H" + ], + "RawCellText": "Your master would be so embarrassed.\n\u002B2H", + "DescriptionText": "Your master would be so embarrassed.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 139, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 556, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 820, + "CropTop": 524, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Not so solid a strike.", + "\u002B3H" + ], + "BaseLines": [ + "Not so solid a strike.", + "\u002B3H" + ], + "RawCellText": "Not so solid a strike.\n\u002B3H", + "DescriptionText": "Not so solid a strike.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 139, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 556, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 1428, + "CropTop": 524, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe steps out of most of the strike.", + "\u002B4H" + ], + "BaseLines": [ + "Foe steps out of most of the strike.", + "\u002B4H" + ], + "RawCellText": "Foe steps out of most of the strike.\n\u002B4H", + "DescriptionText": "Foe steps out of most of the strike.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 139, + "Width": 144, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 556, + "BoundsWidth": 576, + "BoundsHeight": 116, + "CropLeft": 2028, + "CropTop": 524, + "CropWidth": 672, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Glancing strike makes foe respect you.", + "\u002B5H" + ], + "BaseLines": [ + "Glancing strike makes foe respect you.", + "\u002B5H" + ], + "RawCellText": "Glancing strike makes foe respect you.\n\u002B5H", + "DescriptionText": "Glancing strike makes foe respect you.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 139, + "Width": 149, + "Height": 29 + }, + "SourceImagePath": "ma-strikes/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 556, + "BoundsWidth": 596, + "BoundsHeight": 116, + "CropLeft": 2632, + "CropTop": 524, + "CropWidth": 692, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "You maneauver for a better You maneuver for a better", + "position. You have initiative. position. You have initiative.", + "\u002B3H" + ], + "BaseLines": [ + "You maneauver for a better You maneuver for a better", + "position. You have initiative. position. You have initiative.", + "\u002B3H" + ], + "RawCellText": "You maneauver for a better You maneuver for a better\nposition. You have initiative. position. You have initiative.\n\u002B3H", + "DescriptionText": "You maneauver for a better You maneuver for a better position. You have initiative. position. You have initiative.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 175, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 700, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 668, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Blow to shoulder. Foe steps back and", + "yields the initiative to you." + ], + "BaseLines": [ + "Blow to shoulder. Foe steps back and", + "yields the initiative to you." + ], + "RawCellText": "Blow to shoulder. Foe steps back and\nyields the initiative to you.", + "DescriptionText": "Blow to shoulder. Foe steps back and yields the initiative to you.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 175, + "Width": 134, + "Height": 20 + }, + "SourceImagePath": "ma-strikes/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 700, + "BoundsWidth": 536, + "BoundsHeight": 80, + "CropLeft": 820, + "CropTop": 668, + "CropWidth": 632, + "CropHeight": 144, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Forceful. Foe steps back. You have", + "initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Forceful. Foe steps back. You have", + "initiative.", + "\u002B5H" + ], + "RawCellText": "Forceful. Foe steps back. You have\ninitiative.\n\u002B5H", + "DescriptionText": "Forceful. Foe steps back. You have initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 175, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 700, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1428, + "CropTop": 668, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Kick foe\u0027s side. He stumbles out of the", + "way. You have the initiative." + ], + "BaseLines": [ + "Kick foe\u0027s side. He stumbles out of the", + "way. You have the initiative." + ], + "RawCellText": "Kick foe\u0027s side. He stumbles out of the\nway. You have the initiative.", + "DescriptionText": "Kick foe\u0027s side. He stumbles out of the way. You have the initiative.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 175, + "Width": 138, + "Height": 20 + }, + "SourceImagePath": "ma-strikes/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 700, + "BoundsWidth": 552, + "BoundsHeight": 80, + "CropLeft": 2028, + "CropTop": 668, + "CropWidth": 648, + "CropHeight": 144, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "You strike foe to unbalance him before", + "you attempt a killing blow.", + "\u002B7H \u2013 \u2211" + ], + "BaseLines": [ + "You strike foe to unbalance him before", + "you attempt a killing blow.", + "\u002B7H \u2013 \u2211" + ], + "RawCellText": "You strike foe to unbalance him before\nyou attempt a killing blow.\n\u002B7H \u2013 \u2211", + "DescriptionText": "You strike foe to unbalance him before you attempt a killing blow.", + "RawAffixText": "\u002B7H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 175, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 700, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 668, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "You take an open shot to foe\u0027s side.", + "You have initiative.", + "\u002B4H" + ], + "BaseLines": [ + "You take an open shot to foe\u0027s side.", + "You have initiative.", + "\u002B4H" + ], + "RawCellText": "You take an open shot to foe\u0027s side.\nYou have initiative.\n\u002B4H", + "DescriptionText": "You take an open shot to foe\u0027s side. You have initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 220, + "Width": 129, + "Height": 40 + }, + "SourceImagePath": "ma-strikes/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 880, + "BoundsWidth": 516, + "BoundsHeight": 160, + "CropLeft": 280, + "CropTop": 848, + "CropWidth": 612, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Good shot! You have initiative for 2", + "rounds.", + "\u002B5H" + ], + "BaseLines": [ + "Good shot! You have initiative for 2", + "rounds.", + "\u002B5H" + ], + "RawCellText": "Good shot! You have initiative for 2\nrounds.\n\u002B5H", + "DescriptionText": "Good shot! You have initiative for 2 rounds.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 220, + "Width": 143, + "Height": 40 + }, + "SourceImagePath": "ma-strikes/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 880, + "BoundsWidth": 572, + "BoundsHeight": 160, + "CropLeft": 820, + "CropTop": 848, + "CropWidth": 668, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Hard strike. Foe lashes out to avoid your", + "next attack.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Hard strike. Foe lashes out to avoid your", + "next attack.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Hard strike. Foe lashes out to avoid your\nnext attack.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Hard strike. Foe lashes out to avoid your next attack.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 220, + "Width": 145, + "Height": 40 + }, + "SourceImagePath": "ma-strikes/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 880, + "BoundsWidth": 580, + "BoundsHeight": 160, + "CropLeft": 1428, + "CropTop": 848, + "CropWidth": 676, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe blocks your attack. He falls back to", + "recover from your onslaught.", + "\u002B8H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Foe blocks your attack. He falls back to", + "recover from your onslaught.", + "\u002B8H \u2013 (\u03C0-10)" + ], + "RawCellText": "Foe blocks your attack. He falls back to\nrecover from your onslaught.\n\u002B8H \u2013 (\u03C0-10)", + "DescriptionText": "Foe blocks your attack. He falls back to recover from your onslaught.", + "RawAffixText": "\u002B8H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 220, + "Width": 144, + "Height": 40 + }, + "SourceImagePath": "ma-strikes/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 880, + "BoundsWidth": 576, + "BoundsHeight": 160, + "CropLeft": 2028, + "CropTop": 848, + "CropWidth": 672, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Snappy double shot to ribs. Crack!", + "Ribs are fractured.", + "\u002B5H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Snappy double shot to ribs. Crack!", + "Ribs are fractured.", + "\u002B5H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Snappy double shot to ribs. Crack!\nRibs are fractured.\n\u002B5H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Snappy double shot to ribs. Crack! Ribs are fractured.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 220, + "Width": 149, + "Height": 40 + }, + "SourceImagePath": "ma-strikes/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 880, + "BoundsWidth": 596, + "BoundsHeight": 160, + "CropLeft": 2632, + "CropTop": 848, + "CropWidth": 692, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Light, but well placed strike. You are", + "already starting your next attack.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Light, but well placed strike. You are", + "already starting your next attack.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Light, but well placed strike. You are\nalready starting your next attack.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Light, but well placed strike. You are already starting your next attack.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 267, + "Width": 131, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1068, + "BoundsWidth": 524, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 1036, + "CropWidth": 620, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Strong, but poorly aimed strike forces", + "foe to defend himself energetically.", + "\u002B6H \u2013 \u03C0" + ], + "BaseLines": [ + "Strong, but poorly aimed strike forces", + "foe to defend himself energetically.", + "\u002B6H \u2013 \u03C0" + ], + "RawCellText": "Strong, but poorly aimed strike forces\nfoe to defend himself energetically.\n\u002B6H \u2013 \u03C0", + "DescriptionText": "Strong, but poorly aimed strike forces foe to defend himself energetically.", + "RawAffixText": "\u002B6H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 267, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 1068, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 1036, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Grab foe and bring your knee into his", + "ribs. The force of the strike throws him", + "from your grasp.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Grab foe and bring your knee into his", + "ribs. The force of the strike throws him", + "from your grasp.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Grab foe and bring your knee into his\nribs. The force of the strike throws him\nfrom your grasp.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Grab foe and bring your knee into his ribs. The force of the strike throws him from your grasp.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 267, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 1068, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 1036, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Blow to chest. Use your forehead in a", + "brutal way to subdue foe. You have", + "initiative for 3 rounds.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Blow to chest. Use your forehead in a", + "brutal way to subdue foe. You have", + "initiative for 3 rounds.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Blow to chest. Use your forehead in a\nbrutal way to subdue foe. You have\ninitiative for 3 rounds.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Blow to chest. Use your forehead in a brutal way to subdue foe. You have initiative for 3 rounds.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 267, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1068, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 1036, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Side strike jars foe\u0027s kidneys. Heavy", + "bruise to muscles. Foe steps right into", + "that one. He is in pain.", + "(-20)" + ], + "BaseLines": [ + "Side strike jars foe\u0027s kidneys. Heavy", + "bruise to muscles. Foe steps right into", + "that one. He is in pain.", + "(-20)" + ], + "RawCellText": "Side strike jars foe\u0027s kidneys. Heavy\nbruise to muscles. Foe steps right into\nthat one. He is in pain.\n(-20)", + "DescriptionText": "Side strike jars foe\u0027s kidneys. Heavy bruise to muscles. Foe steps right into that one. He is in pain.", + "RawAffixText": "(-20)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 267, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1068, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 1036, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Mild strike to foe\u0027s chest. He can", + "see your next strike coming and he", + "attempts to block it.", + "\u002B6H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Mild strike to foe\u0027s chest. He can", + "see your next strike coming and he", + "attempts to block it.", + "\u002B6H \u2013 (\u03C0-10)" + ], + "RawCellText": "Mild strike to foe\u0027s chest. He can\nsee your next strike coming and he\nattempts to block it.\n\u002B6H \u2013 (\u03C0-10)", + "DescriptionText": "Mild strike to foe\u0027s chest. He can see your next strike coming and he attempts to block it.", + "RawAffixText": "\u002B6H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 324, + "Width": 126, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1296, + "BoundsWidth": 504, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 1264, + "CropWidth": 600, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Chest strike. Foe makes a strange noise", + "on impact. He blocks and recovers.", + "\u002B7H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Chest strike. Foe makes a strange noise", + "on impact. He blocks and recovers.", + "\u002B7H \u2013 (\u03C0-20)" + ], + "RawCellText": "Chest strike. Foe makes a strange noise\non impact. He blocks and recovers.\n\u002B7H \u2013 (\u03C0-20)", + "DescriptionText": "Chest strike. Foe makes a strange noise on impact. He blocks and recovers.", + "RawAffixText": "\u002B7H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 324, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 1296, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 1264, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Clever feint finds an opening in foe\u0027s", + "guard. Your strike is light and fast.", + "Bruise foe\u0027s chest.", + "\u002B8H \u2013 \u2211" + ], + "BaseLines": [ + "Clever feint finds an opening in foe\u0027s", + "guard. Your strike is light and fast.", + "Bruise foe\u0027s chest.", + "\u002B8H \u2013 \u2211" + ], + "RawCellText": "Clever feint finds an opening in foe\u0027s\nguard. Your strike is light and fast.\nBruise foe\u0027s chest.\n\u002B8H \u2013 \u2211", + "DescriptionText": "Clever feint finds an opening in foe\u0027s guard. Your strike is light and fast. Bruise foe\u0027s chest.", + "RawAffixText": "\u002B8H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 324, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 1296, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 1264, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Chest strike. Foe falls forward onto one", + "knee in front of you. His guard is down", + "for a moment.", + "\u002B5H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Chest strike. Foe falls forward onto one", + "knee in front of you. His guard is down", + "for a moment.", + "\u002B5H \u2013 \u2211\u220F" + ], + "RawCellText": "Chest strike. Foe falls forward onto one\nknee in front of you. His guard is down\nfor a moment.\n\u002B5H \u2013 \u2211\u220F", + "DescriptionText": "Chest strike. Foe falls forward onto one knee in front of you. His guard is down for a moment.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 324, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1296, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 1264, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Strike is solid. It turns foe around. You", + "have a clean shot at foe\u0027s back next", + "round, if you hurry.", + "\u2211" + ], + "BaseLines": [ + "Strike is solid. It turns foe around. You", + "have a clean shot at foe\u0027s back next", + "round, if you hurry.", + "\u2211" + ], + "RawCellText": "Strike is solid. It turns foe around. You\nhave a clean shot at foe\u0027s back next\nround, if you hurry.\n\u2211", + "DescriptionText": "Strike is solid. It turns foe around. You have a clean shot at foe\u0027s back next round, if you hurry.", + "RawAffixText": "\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 324, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1296, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 1264, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Foe is confused by your attack. He", + "steps back to parry your next strike.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Foe is confused by your attack. He", + "steps back to parry your next strike.", + "\u002B6H \u2013 (\u03C0-25)" + ], + "RawCellText": "Foe is confused by your attack. He\nsteps back to parry your next strike.\n\u002B6H \u2013 (\u03C0-25)", + "DescriptionText": "Foe is confused by your attack. He steps back to parry your next strike.", + "RawAffixText": "\u002B6H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 380, + "Width": 129, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1520, + "BoundsWidth": 516, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 1488, + "CropWidth": 612, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Glancing kick to foe\u0027s back. The effects", + "are reasonable for your modest effort.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Glancing kick to foe\u0027s back. The effects", + "are reasonable for your modest effort.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Glancing kick to foe\u0027s back. The effects\nare reasonable for your modest effort.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Glancing kick to foe\u0027s back. The effects are reasonable for your modest effort.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 380, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 1520, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 820, + "CropTop": 1488, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Step to the side and catch foe in his", + "back. He stumbles forward. His guard is", + "down.", + "\u2211\u220F" + ], + "BaseLines": [ + "Step to the side and catch foe in his", + "back. He stumbles forward. His guard is", + "down.", + "\u2211\u220F" + ], + "RawCellText": "Step to the side and catch foe in his\nback. He stumbles forward. His guard is\ndown.\n\u2211\u220F", + "DescriptionText": "Step to the side and catch foe in his back. He stumbles forward. His guard is down.", + "RawAffixText": "\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 380, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 1520, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1428, + "CropTop": 1488, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Solid chest strike. The impact confuses", + "foe greatly. His ribs are fractured. He", + "hates you.", + "\u002B3H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Solid chest strike. The impact confuses", + "foe greatly. His ribs are fractured. He", + "hates you.", + "\u002B3H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Solid chest strike. The impact confuses\nfoe greatly. His ribs are fractured. He\nhates you.\n\u002B3H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Solid chest strike. The impact confuses foe greatly. His ribs are fractured. He hates you.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 380, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1520, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 1488, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Draw down foe\u0027s defenses with a feint", + "and then hammer him in chest. Your", + "tactics are acceptable.", + "\u002B5H \u2013 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Draw down foe\u0027s defenses with a feint", + "and then hammer him in chest. Your", + "tactics are acceptable.", + "\u002B5H \u2013 2\u2211 \u2013 \u220F" + ], + "RawCellText": "Draw down foe\u0027s defenses with a feint\nand then hammer him in chest. Your\ntactics are acceptable.\n\u002B5H \u2013 2\u2211 \u2013 \u220F", + "DescriptionText": "Draw down foe\u0027s defenses with a feint and then hammer him in chest. Your tactics are acceptable.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 380, + "Width": 151, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1520, + "BoundsWidth": 604, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 1488, + "CropWidth": 700, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Strike bends foe\u0027s hip in an odd", + "direction. He is unbalanced.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Strike bends foe\u0027s hip in an odd", + "direction. He is unbalanced.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Strike bends foe\u0027s hip in an odd\ndirection. He is unbalanced.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Strike bends foe\u0027s hip in an odd direction. He is unbalanced.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 437, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1748, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 1716, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Side strike sends foe stumbling to the", + "left 5 feet. He recovers to face you.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Side strike sends foe stumbling to the", + "left 5 feet. He recovers to face you.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Side strike sends foe stumbling to the\nleft 5 feet. He recovers to face you.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Side strike sends foe stumbling to the left 5 feet. He recovers to face you.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 437, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 1748, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 820, + "CropTop": 1716, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "With a circular block and a focused", + "central strike you break foe\u0027s defenses.", + "\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "With a circular block and a focused", + "central strike you break foe\u0027s defenses.", + "\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "With a circular block and a focused\ncentral strike you break foe\u0027s defenses.\n\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "With a circular block and a focused central strike you break foe\u0027s defenses.", + "RawAffixText": "\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 437, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 1748, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1428, + "CropTop": 1716, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Textbook shot to foe\u0027s upper leg. The", + "bruise is deep. Foe does not fall down.", + "\u002B6H \u2013 (-25)" + ], + "BaseLines": [ + "Textbook shot to foe\u0027s upper leg. The", + "bruise is deep. Foe does not fall down.", + "\u002B6H \u2013 (-25)" + ], + "RawCellText": "Textbook shot to foe\u0027s upper leg. The\nbruise is deep. Foe does not fall down.\n\u002B6H \u2013 (-25)", + "DescriptionText": "Textbook shot to foe\u0027s upper leg. The bruise is deep. Foe does not fall down.", + "RawAffixText": "\u002B6H \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 437, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1748, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 1716, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Hip strike spins foe. He is suspicious of", + "gravity and struggles to stay standing.", + "\u002B5H \u2013 3\u2211" + ], + "BaseLines": [ + "Hip strike spins foe. He is suspicious of", + "gravity and struggles to stay standing.", + "\u002B5H \u2013 3\u2211" + ], + "RawCellText": "Hip strike spins foe. He is suspicious of\ngravity and struggles to stay standing.\n\u002B5H \u2013 3\u2211", + "DescriptionText": "Hip strike spins foe. He is suspicious of gravity and struggles to stay standing.", + "RawAffixText": "\u002B5H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 437, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1748, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 1716, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Fist to chest. A solid punch. Foe is", + "rattled a little.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Fist to chest. A solid punch. Foe is", + "rattled a little.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Fist to chest. A solid punch. Foe is\nrattled a little.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Fist to chest. A solid punch. Foe is rattled a little.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 482, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1928, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 1896, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Boom! Good shot to foe\u0027s stomach.", + "He almost loses his lunch.", + "\u002B3H \u20132\u2211" + ], + "BaseLines": [ + "Boom! Good shot to foe\u0027s stomach.", + "He almost loses his lunch.", + "\u002B3H \u20132\u2211" + ], + "RawCellText": "Boom! Good shot to foe\u0027s stomach.\nHe almost loses his lunch.\n\u002B3H \u20132\u2211", + "DescriptionText": "Boom! Good shot to foe\u0027s stomach. He almost loses his lunch.", + "RawAffixText": "\u002B3H \u20132\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 482, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 1928, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 820, + "CropTop": 1896, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong wheel kick sends foe 10 feet", + "in any desired direction.", + "\u002B8H \u2013 2\u2211" + ], + "BaseLines": [ + "Strong wheel kick sends foe 10 feet", + "in any desired direction.", + "\u002B8H \u2013 2\u2211" + ], + "RawCellText": "Strong wheel kick sends foe 10 feet\nin any desired direction.\n\u002B8H \u2013 2\u2211", + "DescriptionText": "Strong wheel kick sends foe 10 feet in any desired direction.", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 482, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 1928, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1428, + "CropTop": 1896, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Back strike. Foe attempts to flee and", + "then changes his mind.", + "\u002B4H \u2013 3\u2211" + ], + "BaseLines": [ + "Back strike. Foe attempts to flee and", + "then changes his mind.", + "\u002B4H \u2013 3\u2211" + ], + "RawCellText": "Back strike. Foe attempts to flee and\nthen changes his mind.\n\u002B4H \u2013 3\u2211", + "DescriptionText": "Back strike. Foe attempts to flee and then changes his mind.", + "RawAffixText": "\u002B4H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 482, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 1928, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 1896, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Shoulder strike. Foe is badly unbalances", + "and unable to defend himself.", + "2\u2211 \u2013 \u220F \u2013 (-10)" + ], + "BaseLines": [ + "Shoulder strike. Foe is badly unbalances", + "and unable to defend himself.", + "2\u2211 \u2013 \u220F \u2013 (-10)" + ], + "RawCellText": "Shoulder strike. Foe is badly unbalances\nand unable to defend himself.\n2\u2211 \u2013 \u220F \u2013 (-10)", + "DescriptionText": "Shoulder strike. Foe is badly unbalances and unable to defend himself.", + "RawAffixText": "2\u2211 \u2013 \u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 482, + "Width": 150, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1928, + "BoundsWidth": 600, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 1896, + "CropWidth": 696, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Blow on top of foe\u0027s foot is slightly", + "misplaced, but quick. Bruise toe", + "and mash toe nails.", + "\u002B5H \u2013 5(-20)" + ], + "BaseLines": [ + "Blow on top of foe\u0027s foot is slightly", + "misplaced, but quick. Bruise toe", + "and mash toe nails.", + "\u002B5H \u2013 5(-20)" + ], + "RawCellText": "Blow on top of foe\u0027s foot is slightly\nmisplaced, but quick. Bruise toe\nand mash toe nails.\n\u002B5H \u2013 5(-20)", + "DescriptionText": "Blow on top of foe\u0027s foot is slightly misplaced, but quick. Bruise toe and mash toe nails.", + "RawAffixText": "\u002B5H \u2013 5(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 528, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2112, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 2080, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Kick in back of foe\u0027s leg. He stumbles,", + "but does not fall. You move to gain", + "advantage.", + "\u002B7H \u2013 2\u2211" + ], + "BaseLines": [ + "Kick in back of foe\u0027s leg. He stumbles,", + "but does not fall. You move to gain", + "advantage.", + "\u002B7H \u2013 2\u2211" + ], + "RawCellText": "Kick in back of foe\u0027s leg. He stumbles,\nbut does not fall. You move to gain\nadvantage.\n\u002B7H \u2013 2\u2211", + "DescriptionText": "Kick in back of foe\u0027s leg. He stumbles, but does not fall. You move to gain advantage.", + "RawAffixText": "\u002B7H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 528, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 2112, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 2080, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Brutal strike to upper leg. The bruise is", + "deep. The pain makes it hard for foe to", + "stand on the leg.", + "\u002B5H \u2013 (-25)" + ], + "BaseLines": [ + "Brutal strike to upper leg. The bruise is", + "deep. The pain makes it hard for foe to", + "stand on the leg.", + "\u002B5H \u2013 (-25)" + ], + "RawCellText": "Brutal strike to upper leg. The bruise is\ndeep. The pain makes it hard for foe to\nstand on the leg.\n\u002B5H \u2013 (-25)", + "DescriptionText": "Brutal strike to upper leg. The bruise is deep. The pain makes it hard for foe to stand on the leg.", + "RawAffixText": "\u002B5H \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 528, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 2112, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 2080, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blow strikes a nerve in foe\u0027s upper leg.", + "He is not in pain, but his leg is numb.", + "2\u2211 \u2013 6(-25)" + ], + "BaseLines": [ + "Blow strikes a nerve in foe\u0027s upper leg.", + "He is not in pain, but his leg is numb.", + "2\u2211 \u2013 6(-25)" + ], + "RawCellText": "Blow strikes a nerve in foe\u0027s upper leg.\nHe is not in pain, but his leg is numb.\n2\u2211 \u2013 6(-25)", + "DescriptionText": "Blow strikes a nerve in foe\u0027s upper leg. He is not in pain, but his leg is numb.", + "RawAffixText": "2\u2211 \u2013 6(-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 528, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2112, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 2080, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Draw out foe\u0027s weapon arm. You strike", + "cleanly to disarm him. Textbook.", + "\u002B3H" + ], + "BaseLines": [ + "Draw out foe\u0027s weapon arm. You strike", + "cleanly to disarm him. Textbook.", + "\u002B3H" + ], + "RawCellText": "Draw out foe\u0027s weapon arm. You strike\ncleanly to disarm him. Textbook.\n\u002B3H", + "DescriptionText": "Draw out foe\u0027s weapon arm. You strike cleanly to disarm him. Textbook.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 528, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2112, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 2080, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Strike Achilles tendon. Foe almost", + "falls. He recovers his balance, but", + "the pain is strong.", + "\u002B7H \u2013 2\u2211 \u2013(-50)" + ], + "BaseLines": [ + "Strike Achilles tendon. Foe almost", + "falls. He recovers his balance, but", + "the pain is strong.", + "\u002B7H \u2013 2\u2211 \u2013(-50)" + ], + "RawCellText": "Strike Achilles tendon. Foe almost\nfalls. He recovers his balance, but\nthe pain is strong.\n\u002B7H \u2013 2\u2211 \u2013(-50)", + "DescriptionText": "Strike Achilles tendon. Foe almost falls. He recovers his balance, but the pain is strong.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 586, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2344, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 2312, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Strike foe in his forehead. The shock", + "sprains neck and fractures foe\u0027s jaw.", + "He cannot seem to close his jaw.", + "\u002B4H \u2013 9\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Strike foe in his forehead. The shock", + "sprains neck and fractures foe\u0027s jaw.", + "He cannot seem to close his jaw.", + "\u002B4H \u2013 9\u2211 \u2013 (-50)" + ], + "RawCellText": "Strike foe in his forehead. The shock\nsprains neck and fractures foe\u0027s jaw.\nHe cannot seem to close his jaw.\n\u002B4H \u2013 9\u2211 \u2013 (-50)", + "DescriptionText": "Strike foe in his forehead. The shock sprains neck and fractures foe\u0027s jaw. He cannot seem to close his jaw.", + "RawAffixText": "\u002B4H \u2013 9\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 586, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 2344, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 820, + "CropTop": 2312, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Knife hand strike breaks foe\u0027s weapon", + "arm, leaving it useless. Follow-up punch", + "to solar plexus knocks foe out.", + "\u2014" + ], + "BaseLines": [ + "Knife hand strike breaks foe\u0027s weapon", + "arm, leaving it useless. Follow-up punch", + "to solar plexus knocks foe out.", + "\u2014" + ], + "RawCellText": "Knife hand strike breaks foe\u0027s weapon\narm, leaving it useless. Follow-up punch\nto solar plexus knocks foe out.\n\u2014", + "DescriptionText": "Knife hand strike breaks foe\u0027s weapon arm, leaving it useless. Follow-up punch to solar plexus knocks foe out.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 586, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 2344, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 1428, + "CropTop": 2312, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Grip foe\u0027s weapon arm. Dislocate the", + "arm and then break it. Use your", + "advantage to pull foe over and kick him in", + "the face. Foe is knocked out.", + "(\u002B20)" + ], + "BaseLines": [ + "Grip foe\u0027s weapon arm. Dislocate the", + "arm and then break it. Use your", + "advantage to pull foe over and kick him in", + "the face. Foe is knocked out.", + "(\u002B20)" + ], + "RawCellText": "Grip foe\u0027s weapon arm. Dislocate the\narm and then break it. Use your\nadvantage to pull foe over and kick him in\nthe face. Foe is knocked out.\n(\u002B20)", + "DescriptionText": "Grip foe\u0027s weapon arm. Dislocate the arm and then break it. Use your advantage to pull foe over and kick him in the face. Foe is knocked out.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 586, + "Width": 150, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2344, + "BoundsWidth": 600, + "BoundsHeight": 240, + "CropLeft": 2028, + "CropTop": 2312, + "CropWidth": 696, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Simultaneous palm strike to both of foe\u0027s", + "ears. Destroy foe\u0027s hearing and balance.", + "24\u2211 \u2013 (-95)" + ], + "BaseLines": [ + "Simultaneous palm strike to both of foe\u0027s", + "ears. Destroy foe\u0027s hearing and balance.", + "24\u2211 \u2013 (-95)" + ], + "RawCellText": "Simultaneous palm strike to both of foe\u0027s\nears. Destroy foe\u0027s hearing and balance.\n24\u2211 \u2013 (-95)", + "DescriptionText": "Simultaneous palm strike to both of foe\u0027s ears. Destroy foe\u0027s hearing and balance.", + "RawAffixText": "24\u2211 \u2013 (-95)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 586, + "Width": 150, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2344, + "BoundsWidth": 600, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 2312, + "CropWidth": 696, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Weak spearhand to foe\u0027s side. It", + "yields an excellent effect.", + "\u002B2H \u2013 2\u2211" + ], + "BaseLines": [ + "Weak spearhand to foe\u0027s side. It", + "yields an excellent effect.", + "\u002B2H \u2013 2\u2211" + ], + "RawCellText": "Weak spearhand to foe\u0027s side. It\nyields an excellent effect.\n\u002B2H \u2013 2\u2211", + "DescriptionText": "Weak spearhand to foe\u0027s side. It yields an excellent effect.", + "RawAffixText": "\u002B2H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 652, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2608, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 2576, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Spear hand strike to chest. Elbow shot", + "to foe\u0027s side causes some confusion.", + "\u002B3H \u2013 3\u2211" + ], + "BaseLines": [ + "Spear hand strike to chest. Elbow shot", + "to foe\u0027s side causes some confusion.", + "\u002B3H \u2013 3\u2211" + ], + "RawCellText": "Spear hand strike to chest. Elbow shot\nto foe\u0027s side causes some confusion.\n\u002B3H \u2013 3\u2211", + "DescriptionText": "Spear hand strike to chest. Elbow shot to foe\u0027s side causes some confusion.", + "RawAffixText": "\u002B3H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 652, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 2608, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 820, + "CropTop": 2576, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strong knife hand to upper portion of", + "foe\u0027s shield arm. Arm is broken.", + "\u2014" + ], + "BaseLines": [ + "Strong knife hand to upper portion of", + "foe\u0027s shield arm. Arm is broken.", + "\u2014" + ], + "RawCellText": "Strong knife hand to upper portion of\nfoe\u0027s shield arm. Arm is broken.\n\u2014", + "DescriptionText": "Strong knife hand to upper portion of foe\u0027s shield arm. Arm is broken.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 652, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 2608, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 1428, + "CropTop": 2576, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Press your attack under the bottom of", + "foe\u0027s ribcage. Knock the wind out of foe.", + "2\u2211\u220F" + ], + "BaseLines": [ + "Press your attack under the bottom of", + "foe\u0027s ribcage. Knock the wind out of foe.", + "2\u2211\u220F" + ], + "RawCellText": "Press your attack under the bottom of\nfoe\u0027s ribcage. Knock the wind out of foe.\n2\u2211\u220F", + "DescriptionText": "Press your attack under the bottom of foe\u0027s ribcage. Knock the wind out of foe.", + "RawAffixText": "2\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 652, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2608, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 2028, + "CropTop": 2576, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Elbow to solar plexus and back of fist to", + "foe\u0027s face. Foe drops.", + "\u002B5H - 3\u2211 \u2013 2\u220F" + ], + "BaseLines": [ + "Elbow to solar plexus and back of fist to", + "foe\u0027s face. Foe drops.", + "\u002B5H - 3\u2211 \u2013 2\u220F" + ], + "RawCellText": "Elbow to solar plexus and back of fist to\nfoe\u0027s face. Foe drops.\n\u002B5H - 3\u2211 \u2013 2\u220F", + "DescriptionText": "Elbow to solar plexus and back of fist to foe\u0027s face. Foe drops.", + "RawAffixText": "\u002B5H - 3\u2211 \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 652, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "ma-strikes/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2608, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 2576, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Knife hand, spear hand", + "combination. Foe must roll a", + "weapon fumble.", + "\u2211" + ], + "BaseLines": [ + "Knife hand, spear hand", + "combination. Foe must roll a", + "weapon fumble.", + "\u2211" + ], + "RawCellText": "Knife hand, spear hand\ncombination. Foe must roll a\nweapon fumble.\n\u2211", + "DescriptionText": "Knife hand, spear hand combination. Foe must roll a weapon fumble.", + "RawAffixText": "\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 698, + "Width": 126, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2792, + "BoundsWidth": 504, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 2760, + "CropWidth": 600, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Hammer foe\u0027s weapon arm as it passes", + "near you. The bruise is deep. Foe holds", + "tight to his weapon.", + "\u002B6H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Hammer foe\u0027s weapon arm as it passes", + "near you. The bruise is deep. Foe holds", + "tight to his weapon.", + "\u002B6H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "Hammer foe\u0027s weapon arm as it passes\nnear you. The bruise is deep. Foe holds\ntight to his weapon.\n\u002B6H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "Hammer foe\u0027s weapon arm as it passes near you. The bruise is deep. Foe holds tight to his weapon.", + "RawAffixText": "\u002B6H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 698, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 2792, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 2760, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Strike to back of lower leg. Foe", + "struggles to keep balance. He is unable", + "to defend himself.", + "2\u2211\u220F" + ], + "BaseLines": [ + "Strike to back of lower leg. Foe", + "struggles to keep balance. He is unable", + "to defend himself.", + "2\u2211\u220F" + ], + "RawCellText": "Strike to back of lower leg. Foe\nstruggles to keep balance. He is unable\nto defend himself.\n2\u2211\u220F", + "DescriptionText": "Strike to back of lower leg. Foe struggles to keep balance. He is unable to defend himself.", + "RawAffixText": "2\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 698, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 2792, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 2760, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Firm flat palm strike to foe\u0027s collarbone.", + "Bone is broken. Foe guard is down. It", + "hurts him to raise his arm.", + "2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Firm flat palm strike to foe\u0027s collarbone.", + "Bone is broken. Foe guard is down. It", + "hurts him to raise his arm.", + "2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Firm flat palm strike to foe\u0027s collarbone.\nBone is broken. Foe guard is down. It\nhurts him to raise his arm.\n2\u2211\u220F \u2013 (-25)", + "DescriptionText": "Firm flat palm strike to foe\u0027s collarbone. Bone is broken. Foe guard is down. It hurts him to raise his arm.", + "RawAffixText": "2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 698, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 2792, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 2760, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Kick foe\u0027s knee in backwards. Tendons", + "and muscles are torn. Foe yells out", + "frightfully in response.", + "\u002B5H \u2013 3\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Kick foe\u0027s knee in backwards. Tendons", + "and muscles are torn. Foe yells out", + "frightfully in response.", + "\u002B5H \u2013 3\u2211 \u2013 (-50)" + ], + "RawCellText": "Kick foe\u0027s knee in backwards. Tendons\nand muscles are torn. Foe yells out\nfrightfully in response.\n\u002B5H \u2013 3\u2211 \u2013 (-50)", + "DescriptionText": "Kick foe\u0027s knee in backwards. Tendons and muscles are torn. Foe yells out frightfully in response.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 698, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2792, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 2760, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s shield arm. If foe has a", + "shield, it is broken. If foe has no", + "shield, his arm is broken.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm. If foe has a", + "shield, it is broken. If foe has no", + "shield, his arm is broken.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Blow to foe\u0027s shield arm. If foe has a\nshield, it is broken. If foe has no\nshield, his arm is broken.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Blow to foe\u0027s shield arm. If foe has a shield, it is broken. If foe has no shield, his arm is broken.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 754, + "Width": 132, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3016, + "BoundsWidth": 528, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 2984, + "CropWidth": 624, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "You find an opening and strike the back", + "of foe\u0027s knee. The impact damages", + "tendons and unbalances foe.", + "2\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "You find an opening and strike the back", + "of foe\u0027s knee. The impact damages", + "tendons and unbalances foe.", + "2\u2211 \u2013 (-25)" + ], + "RawCellText": "You find an opening and strike the back\nof foe\u0027s knee. The impact damages\ntendons and unbalances foe.\n2\u2211 \u2013 (-25)", + "DescriptionText": "You find an opening and strike the back of foe\u0027s knee. The impact damages tendons and unbalances foe.", + "RawAffixText": "2\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 754, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 3016, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 820, + "CropTop": 2984, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "You turn a block into a strike to foe\u0027s", + "weapon arm. Foe is disarmed. Strike", + "damages cartilage.", + "\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "You turn a block into a strike to foe\u0027s", + "weapon arm. Foe is disarmed. Strike", + "damages cartilage.", + "\u2211 \u2013 (-10)" + ], + "RawCellText": "You turn a block into a strike to foe\u0027s\nweapon arm. Foe is disarmed. Strike\ndamages cartilage.\n\u2211 \u2013 (-10)", + "DescriptionText": "You turn a block into a strike to foe\u0027s weapon arm. Foe is disarmed. Strike damages cartilage.", + "RawAffixText": "\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 754, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 3016, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1428, + "CropTop": 2984, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Stirke and grip area behind foe\u0027s knee.", + "Tendon and cartilage damage insures", + "your success.", + "(-75)" + ], + "BaseLines": [ + "Stirke and grip area behind foe\u0027s knee.", + "Tendon and cartilage damage insures", + "your success.", + "(-75)" + ], + "RawCellText": "Stirke and grip area behind foe\u0027s knee.\nTendon and cartilage damage insures\nyour success.\n(-75)", + "DescriptionText": "Stirke and grip area behind foe\u0027s knee. Tendon and cartilage damage insures your success.", + "RawAffixText": "(-75)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 754, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3016, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 2984, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Front kick to midsection doubles foe over.", + "You follow with a knee strike which", + "breaks foe\u0027s nose and knocks foe out.", + "\u2014" + ], + "BaseLines": [ + "Front kick to midsection doubles foe over.", + "You follow with a knee strike which", + "breaks foe\u0027s nose and knocks foe out.", + "\u2014" + ], + "RawCellText": "Front kick to midsection doubles foe over.\nYou follow with a knee strike which\nbreaks foe\u0027s nose and knocks foe out.\n\u2014", + "DescriptionText": "Front kick to midsection doubles foe over. You follow with a knee strike which breaks foe\u0027s nose and knocks foe out.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 754, + "Width": 151, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3016, + "BoundsWidth": 604, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 2984, + "CropWidth": 700, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Kick to foe\u0027s weapon arm. Foe is", + "disarmed. Your strike does little", + "else.", + "\u002B3H" + ], + "BaseLines": [ + "Kick to foe\u0027s weapon arm. Foe is", + "disarmed. Your strike does little", + "else.", + "\u002B3H" + ], + "RawCellText": "Kick to foe\u0027s weapon arm. Foe is\ndisarmed. Your strike does little\nelse.\n\u002B3H", + "DescriptionText": "Kick to foe\u0027s weapon arm. Foe is disarmed. Your strike does little else.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 811, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3244, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 3212, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Kick foe\u0027s weapon arm and send", + "weapon flying 5 feet away. You break 2", + "of foe\u0027s weapons.", + "\u002B3H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Kick foe\u0027s weapon arm and send", + "weapon flying 5 feet away. You break 2", + "of foe\u0027s weapons.", + "\u002B3H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "Kick foe\u0027s weapon arm and send\nweapon flying 5 feet away. You break 2\nof foe\u0027s weapons.\n\u002B3H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "Kick foe\u0027s weapon arm and send weapon flying 5 feet away. You break 2 of foe\u0027s weapons.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 811, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 3244, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 3212, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Heel kick breaks bone in foe\u0027s foot. Foe", + "has trouble standing. His foot looks", + "bad.", + "2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Heel kick breaks bone in foe\u0027s foot. Foe", + "has trouble standing. His foot looks", + "bad.", + "2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Heel kick breaks bone in foe\u0027s foot. Foe\nhas trouble standing. His foot looks\nbad.\n2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Heel kick breaks bone in foe\u0027s foot. Foe has trouble standing. His foot looks bad.", + "RawAffixText": "2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 811, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 3244, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 3212, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Kick to foe\u0027s leg is clean and mean. Leg", + "is broken above the knee. Foe falls over", + "slowly.", + "\u002B5H \u2013 5\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Kick to foe\u0027s leg is clean and mean. Leg", + "is broken above the knee. Foe falls over", + "slowly.", + "\u002B5H \u2013 5\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Kick to foe\u0027s leg is clean and mean. Leg\nis broken above the knee. Foe falls over\nslowly.\n\u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "DescriptionText": "Kick to foe\u0027s leg is clean and mean. Leg is broken above the knee. Foe falls over slowly.", + "RawAffixText": "\u002B5H \u2013 5\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 811, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3244, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 3212, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Powerful strike shatters knee and then", + "disjoints it. Foe drops. Oh that hurts!", + "\u002B15H \u2013 12\u2211\u220F \u2013 (-80)" + ], + "BaseLines": [ + "Powerful strike shatters knee and then", + "disjoints it. Foe drops. Oh that hurts!", + "\u002B15H \u2013 12\u2211\u220F \u2013 (-80)" + ], + "RawCellText": "Powerful strike shatters knee and then\ndisjoints it. Foe drops. Oh that hurts!\n\u002B15H \u2013 12\u2211\u220F \u2013 (-80)", + "DescriptionText": "Powerful strike shatters knee and then disjoints it. Foe drops. Oh that hurts!", + "RawAffixText": "\u002B15H \u2013 12\u2211\u220F \u2013 (-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 811, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3244, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 3212, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Fluid move followed by a leaping", + "kick to foe\u0027s back knocks foe down.", + "He is shaken and tries to stand.", + "3\u2211" + ], + "BaseLines": [ + "Fluid move followed by a leaping", + "kick to foe\u0027s back knocks foe down.", + "He is shaken and tries to stand.", + "3\u2211" + ], + "RawCellText": "Fluid move followed by a leaping\nkick to foe\u0027s back knocks foe down.\nHe is shaken and tries to stand.\n3\u2211", + "DescriptionText": "Fluid move followed by a leaping kick to foe\u0027s back knocks foe down. He is shaken and tries to stand.", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 868, + "Width": 128, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3472, + "BoundsWidth": 512, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 3440, + "CropWidth": 608, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Wheel kick knocks foe flat. Smash", + "tendons and tear muscle. You spin clear", + "with too much energy.", + "9\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Wheel kick knocks foe flat. Smash", + "tendons and tear muscle. You spin clear", + "with too much energy.", + "9\u2211 \u2013 (-30)" + ], + "RawCellText": "Wheel kick knocks foe flat. Smash\ntendons and tear muscle. You spin clear\nwith too much energy.\n9\u2211 \u2013 (-30)", + "DescriptionText": "Wheel kick knocks foe flat. Smash tendons and tear muscle. You spin clear with too much energy.", + "RawAffixText": "9\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 868, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 3472, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 820, + "CropTop": 3440, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Clean strike to lower leg rips Achilles", + "tendon and drops foe.", + "\u002B10H \u2013 9\u2211 \u2013 (-80)" + ], + "BaseLines": [ + "Clean strike to lower leg rips Achilles", + "tendon and drops foe.", + "\u002B10H \u2013 9\u2211 \u2013 (-80)" + ], + "RawCellText": "Clean strike to lower leg rips Achilles\ntendon and drops foe.\n\u002B10H \u2013 9\u2211 \u2013 (-80)", + "DescriptionText": "Clean strike to lower leg rips Achilles tendon and drops foe.", + "RawAffixText": "\u002B10H \u2013 9\u2211 \u2013 (-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 868, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 3472, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1428, + "CropTop": 3440, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Open-handed blow to foe\u0027s adam\u0027s apple", + "crushes foe\u0027s windpipe. Foe dies in 18", + "rounds of shock and asphyxiation.", + "\u2014" + ], + "BaseLines": [ + "Open-handed blow to foe\u0027s adam\u0027s apple", + "crushes foe\u0027s windpipe. Foe dies in 18", + "rounds of shock and asphyxiation.", + "\u2014" + ], + "RawCellText": "Open-handed blow to foe\u0027s adam\u0027s apple\ncrushes foe\u0027s windpipe. Foe dies in 18\nrounds of shock and asphyxiation.\n\u2014", + "DescriptionText": "Open-handed blow to foe\u0027s adam\u0027s apple crushes foe\u0027s windpipe. Foe dies in 18 rounds of shock and asphyxiation.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 868, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3472, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2028, + "CropTop": 3440, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Round house kick to kidneys drops foe to", + "his knees. You grip foe\u0027s neck and snap", + "it very effectively. Foe dies in 9 rounds.", + "\u2014" + ], + "BaseLines": [ + "Round house kick to kidneys drops foe to", + "his knees. You grip foe\u0027s neck and snap", + "it very effectively. Foe dies in 9 rounds.", + "\u2014" + ], + "RawCellText": "Round house kick to kidneys drops foe to\nhis knees. You grip foe\u0027s neck and snap\nit very effectively. Foe dies in 9 rounds.\n\u2014", + "DescriptionText": "Round house kick to kidneys drops foe to his knees. You grip foe\u0027s neck and snap it very effectively. Foe dies in 9 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 868, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "ma-strikes/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3472, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 3440, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Strike to nerve in foe\u0027s leg. Foe\u0027s leg", + "buckles. He does not fall, he", + "crouches down in pain.", + "\u002B8H \u2013 2\u2211\u220F \u2013 6(-40)" + ], + "BaseLines": [ + "Strike to nerve in foe\u0027s leg. Foe\u0027s leg", + "buckles. He does not fall, he", + "crouches down in pain.", + "\u002B8H \u2013 2\u2211\u220F \u2013 6(-40)" + ], + "RawCellText": "Strike to nerve in foe\u0027s leg. Foe\u0027s leg\nbuckles. He does not fall, he\ncrouches down in pain.\n\u002B8H \u2013 2\u2211\u220F \u2013 6(-40)", + "DescriptionText": "Strike to nerve in foe\u0027s leg. Foe\u0027s leg buckles. He does not fall, he crouches down in pain.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F \u2013 6(-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 924, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3696, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 3664, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s knee shatters joint.", + "Foe drops down hard. He grips his", + "knee and spits out an oath.", + "4\u2211\u220F \u2013 (-85)" + ], + "BaseLines": [ + "Strike to foe\u0027s knee shatters joint.", + "Foe drops down hard. He grips his", + "knee and spits out an oath.", + "4\u2211\u220F \u2013 (-85)" + ], + "RawCellText": "Strike to foe\u0027s knee shatters joint.\nFoe drops down hard. He grips his\nknee and spits out an oath.\n4\u2211\u220F \u2013 (-85)", + "DescriptionText": "Strike to foe\u0027s knee shatters joint. Foe drops down hard. He grips his knee and spits out an oath.", + "RawAffixText": "4\u2211\u220F \u2013 (-85)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -85, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-85)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 924, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 3696, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 820, + "CropTop": 3664, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Flying kick to foe\u0027s back. You knock foe", + "down, disarm him, and leave him in", + "trouble.", + "12\u2211\u220F" + ], + "BaseLines": [ + "Flying kick to foe\u0027s back. You knock foe", + "down, disarm him, and leave him in", + "trouble.", + "12\u2211\u220F" + ], + "RawCellText": "Flying kick to foe\u0027s back. You knock foe\ndown, disarm him, and leave him in\ntrouble.\n12\u2211\u220F", + "DescriptionText": "Flying kick to foe\u0027s back. You knock foe down, disarm him, and leave him in trouble.", + "RawAffixText": "12\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 924, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 3696, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1428, + "CropTop": 3664, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Jab to foe\u0027s eyes blinds him. Crescent", + "kick sends foe 10 feet in the direction", + "you select.", + "10\u2211 \u2013 (-100)" + ], + "BaseLines": [ + "Jab to foe\u0027s eyes blinds him. Crescent", + "kick sends foe 10 feet in the direction", + "you select.", + "10\u2211 \u2013 (-100)" + ], + "RawCellText": "Jab to foe\u0027s eyes blinds him. Crescent\nkick sends foe 10 feet in the direction\nyou select.\n10\u2211 \u2013 (-100)", + "DescriptionText": "Jab to foe\u0027s eyes blinds him. Crescent kick sends foe 10 feet in the direction you select.", + "RawAffixText": "10\u2211 \u2013 (-100)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -100, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-100)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 924, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3696, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2028, + "CropTop": 3664, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Strike to abdomen ruptures spleen. Foe", + "spits out blood instantly. He drops and", + "dies in 12 rounds.", + "(\u002B10)" + ], + "BaseLines": [ + "Strike to abdomen ruptures spleen. Foe", + "spits out blood instantly. He drops and", + "dies in 12 rounds.", + "(\u002B10)" + ], + "RawCellText": "Strike to abdomen ruptures spleen. Foe\nspits out blood instantly. He drops and\ndies in 12 rounds.\n(\u002B10)", + "DescriptionText": "Strike to abdomen ruptures spleen. Foe spits out blood instantly. He drops and dies in 12 rounds.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 924, + "Width": 150, + "Height": 49 + }, + "SourceImagePath": "ma-strikes/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3696, + "BoundsWidth": 600, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 3664, + "CropWidth": 696, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "You block foe\u0027s attack. You then", + "follow-up with a side strike that", + "knocks foe down. Foe hits hard and", + "loses his direction.", + "3\u2211\u220F" + ], + "BaseLines": [ + "You block foe\u0027s attack. You then", + "follow-up with a side strike that", + "knocks foe down. Foe hits hard and", + "loses his direction.", + "3\u2211\u220F" + ], + "RawCellText": "You block foe\u0027s attack. You then\nfollow-up with a side strike that\nknocks foe down. Foe hits hard and\nloses his direction.\n3\u2211\u220F", + "DescriptionText": "You block foe\u0027s attack. You then follow-up with a side strike that knocks foe down. Foe hits hard and loses his direction.", + "RawAffixText": "3\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 981, + "Width": 128, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3924, + "BoundsWidth": 512, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 3892, + "CropWidth": 608, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Roundhouse kick knocks foe out and", + "fractures collarbone. Neck is sprained", + "and shoulder muscles are bruised.", + "20\u2211\u220F \u201320(-100)" + ], + "BaseLines": [ + "Roundhouse kick knocks foe out and", + "fractures collarbone. Neck is sprained", + "and shoulder muscles are bruised.", + "20\u2211\u220F \u201320(-100)" + ], + "RawCellText": "Roundhouse kick knocks foe out and\nfractures collarbone. Neck is sprained\nand shoulder muscles are bruised.\n20\u2211\u220F \u201320(-100)", + "DescriptionText": "Roundhouse kick knocks foe out and fractures collarbone. Neck is sprained and shoulder muscles are bruised.", + "RawAffixText": "20\u2211\u220F \u201320(-100)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 20, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "20\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 20, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "20\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -100, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-100)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 981, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 3924, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 820, + "CropTop": 3892, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Kick to foe\u0027s solar plexus. He stumbles", + "back 10 feet. He falls very hard.", + "\u002B30H \u2013 30\u2211\u220F" + ], + "BaseLines": [ + "Kick to foe\u0027s solar plexus. He stumbles", + "back 10 feet. He falls very hard.", + "\u002B30H \u2013 30\u2211\u220F" + ], + "RawCellText": "Kick to foe\u0027s solar plexus. He stumbles\nback 10 feet. He falls very hard.\n\u002B30H \u2013 30\u2211\u220F", + "DescriptionText": "Kick to foe\u0027s solar plexus. He stumbles back 10 feet. He falls very hard.", + "RawAffixText": "\u002B30H \u2013 30\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 981, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 3924, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 1428, + "CropTop": 3892, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Round house kick catches foe in back of", + "head. You slam foe\u0027s head into the", + "ground. Severe concussion. Foe dies of", + "hemorrhage in 9 rounds.", + "\u2014" + ], + "BaseLines": [ + "Round house kick catches foe in back of", + "head. You slam foe\u0027s head into the", + "ground. Severe concussion. Foe dies of", + "hemorrhage in 9 rounds.", + "\u2014" + ], + "RawCellText": "Round house kick catches foe in back of\nhead. You slam foe\u0027s head into the\nground. Severe concussion. Foe dies of\nhemorrhage in 9 rounds.\n\u2014", + "DescriptionText": "Round house kick catches foe in back of head. You slam foe\u0027s head into the ground. Severe concussion. Foe dies of hemorrhage in 9 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 981, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 3924, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 2028, + "CropTop": 3892, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Double palmstrike to foe\u0027s nose breaks", + "cartilage and drives bone into brain.", + "The effects are rapid. Foe dies after 6", + "rounds prone and immobile.", + "\u2014" + ], + "BaseLines": [ + "Double palmstrike to foe\u0027s nose breaks", + "cartilage and drives bone into brain.", + "The effects are rapid. Foe dies after 6", + "rounds prone and immobile.", + "\u2014" + ], + "RawCellText": "Double palmstrike to foe\u0027s nose breaks\ncartilage and drives bone into brain.\nThe effects are rapid. Foe dies after 6\nrounds prone and immobile.\n\u2014", + "DescriptionText": "Double palmstrike to foe\u0027s nose breaks cartilage and drives bone into brain. The effects are rapid. Foe dies after 6 rounds prone and immobile.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 981, + "Width": 149, + "Height": 60 + }, + "SourceImagePath": "ma-strikes/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3924, + "BoundsWidth": 596, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 3892, + "CropWidth": 692, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Gooseneck strike. Foe\u0027s inner ear", + "ruptured. Foe stands there while", + "your follow-up strike knocks him", + "down and out!", + "(-75)" + ], + "BaseLines": [ + "Gooseneck strike. Foe\u0027s inner ear", + "ruptured. Foe stands there while", + "your follow-up strike knocks him", + "down and out!", + "(-75)" + ], + "RawCellText": "Gooseneck strike. Foe\u0027s inner ear\nruptured. Foe stands there while\nyour follow-up strike knocks him\ndown and out!\n(-75)", + "DescriptionText": "Gooseneck strike. Foe\u0027s inner ear ruptured. Foe stands there while your follow-up strike knocks him down and out!", + "RawAffixText": "(-75)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 1047, + "Width": 128, + "Height": 69 + }, + "SourceImagePath": "ma-strikes/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 4188, + "BoundsWidth": 512, + "BoundsHeight": 276, + "CropLeft": 280, + "CropTop": 4156, + "CropWidth": 608, + "CropHeight": 340, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Knife hand strike to foe\u0027s weapon arm", + "breaks bone. Kick to lower back breaks", + "foe\u0027s backbone, leaving foe paralyzed", + "from the waist down.", + "\u002B5H" + ], + "BaseLines": [ + "Knife hand strike to foe\u0027s weapon arm", + "breaks bone. Kick to lower back breaks", + "foe\u0027s backbone, leaving foe paralyzed", + "from the waist down.", + "\u002B5H" + ], + "RawCellText": "Knife hand strike to foe\u0027s weapon arm\nbreaks bone. Kick to lower back breaks\nfoe\u0027s backbone, leaving foe paralyzed\nfrom the waist down.\n\u002B5H", + "DescriptionText": "Knife hand strike to foe\u0027s weapon arm breaks bone. Kick to lower back breaks foe\u0027s backbone, leaving foe paralyzed from the waist down.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 217, + "Top": 1047, + "Width": 143, + "Height": 69 + }, + "SourceImagePath": "ma-strikes/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 868, + "BoundsTop": 4188, + "BoundsWidth": 572, + "BoundsHeight": 276, + "CropLeft": 820, + "CropTop": 4156, + "CropWidth": 668, + "CropHeight": 340, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Sweep lays foe out and heel strike to", + "foe\u0027s sternum collapses the ribcage.", + "Foe is helpless and dies in 4 rounds.", + "\u2014" + ], + "BaseLines": [ + "Sweep lays foe out and heel strike to", + "foe\u0027s sternum collapses the ribcage.", + "Foe is helpless and dies in 4 rounds.", + "\u2014" + ], + "RawCellText": "Sweep lays foe out and heel strike to\nfoe\u0027s sternum collapses the ribcage.\nFoe is helpless and dies in 4 rounds.\n\u2014", + "DescriptionText": "Sweep lays foe out and heel strike to foe\u0027s sternum collapses the ribcage. Foe is helpless and dies in 4 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 369, + "Top": 1047, + "Width": 142, + "Height": 69 + }, + "SourceImagePath": "ma-strikes/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1476, + "BoundsTop": 4188, + "BoundsWidth": 568, + "BoundsHeight": 276, + "CropLeft": 1428, + "CropTop": 4156, + "CropWidth": 664, + "CropHeight": 340, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Gooosh! Awesome spear hand strike", + "finds seam, penetrates solar plexus and", + "ruptures the heart. Foe dies instantly.", + "\u2014" + ], + "BaseLines": [ + "Gooosh! Awesome spear hand strike", + "finds seam, penetrates solar plexus and", + "ruptures the heart. Foe dies instantly.", + "\u2014" + ], + "RawCellText": "Gooosh! Awesome spear hand strike\nfinds seam, penetrates solar plexus and\nruptures the heart. Foe dies instantly.\n\u2014", + "DescriptionText": "Gooosh! Awesome spear hand strike finds seam, penetrates solar plexus and ruptures the heart. Foe dies instantly.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 519, + "Top": 1047, + "Width": 144, + "Height": 69 + }, + "SourceImagePath": "ma-strikes/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2076, + "BoundsTop": 4188, + "BoundsWidth": 576, + "BoundsHeight": 276, + "CropLeft": 2028, + "CropTop": 4156, + "CropWidth": 672, + "CropHeight": 340, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Disarm foe and use his weapon to kill him.", + "A follow-up strike breaks his neck and", + "you send him 5 feet in any direction.", + "He is dead twice.", + "\u2014" + ], + "BaseLines": [ + "Disarm foe and use his weapon to kill him.", + "A follow-up strike breaks his neck and", + "you send him 5 feet in any direction.", + "He is dead twice.", + "\u2014" + ], + "RawCellText": "Disarm foe and use his weapon to kill him.\nA follow-up strike breaks his neck and\nyou send him 5 feet in any direction.\nHe is dead twice.\n\u2014", + "DescriptionText": "Disarm foe and use his weapon to kill him. A follow-up strike breaks his neck and you send him 5 feet in any direction. He is dead twice.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 1047, + "Width": 153, + "Height": 69 + }, + "SourceImagePath": "ma-strikes/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 4188, + "BoundsWidth": 612, + "BoundsHeight": 276, + "CropLeft": 2632, + "CropTop": 4156, + "CropWidth": 708, + "CropHeight": 340, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/source.xml b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/source.xml new file mode 100644 index 0000000..94a8777 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/source.xml @@ -0,0 +1,387 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +98 +01-05 +Strike loses its power. +Fine artistry, but no extra damage. +Glancing blow makes a strange sound. +You impress foe with your form. +How did you botch this beautiful strike? ++0H ++0H ++1H ++2H ++3H +06-10 +Strike slows to a tap. +Your master would be so embarrassed. +Not so solid a strike. +Foe steps out of most of the strike. +Glancing strike makes foe respect you. ++1H ++2H ++3H ++4H ++5H +11-15 +You maneauver for a better +position. You have initiative. +Blow to shoulder. Foe steps back and +yields the initiative to you. +Forceful. Foe steps back. You have +initiative. +Kick foe's side. He stumbles out of the +way. You have the initiative. +You strike foe to unbalance him before +you attempt a killing blow. ++3H ++5H ++7H – ∑ +16-20 +You take an open shot to foe's side. +You have initiative. +Good shot! You have initiative for 2 +rounds. +Hard strike. Foe lashes out to avoid your +next attack. +Foe blocks your attack. He falls back to +recover from your onslaught. +Snappy double shot to ribs. Crack! +Ribs are fractured. ++4H ++5H ++6H – π ++8H – (π-10) ++5H – ∑ – (-10) +21-35 +Light, but well placed strike. You are +already starting your next attack. +Strong, but poorly aimed strike forces +foe to defend himself energetically. +Grab foe and bring your knee into his +ribs. The force of the strike throws him +from your grasp. +Blow to chest. Use your forehead in a +brutal way to subdue foe. You have +initiative for 3 rounds. +Side strike jars foe's kidneys. Heavy +bruise to muscles. Foe steps right into +that one. He is in pain. ++5H – π ++6H – π ++6H – ∑ ++3H – ∑ +(-20) +36-45 +Mild strike to foe's chest. He can +see your next strike coming and he +attempts to block it. +Chest strike. Foe makes a strange noise +on impact. He blocks and recovers. +Clever feint finds an opening in foe's +guard. Your strike is light and fast. +Bruise foe's chest. +Chest strike. Foe falls forward onto one +knee in front of you. His guard is down +for a moment. +Strike is solid. It turns foe around. You +have a clean shot at foe's back next +round, if you hurry. ++6H – (π-10) ++7H – (π-20) ++8H – ∑ ++5H – ∑∏ + +46-50 +Foe is confused by your attack. He +steps back to parry your next strike. +Glancing kick to foe's back. The effects +are reasonable for your modest effort. +Step to the side and catch foe in his +back. He stumbles forward. His guard is +down. +Solid chest strike. The impact confuses +foe greatly. His ribs are fractured. He +hates you. +Draw down foe's defenses with a feint +and then hammer him in chest. Your +tactics are acceptable. ++6H – (π-25) ++5H – ∑ +∑∏ ++3H – 2∑ – (-10) ++5H – 2∑ – ∏ +51-55 +Strike bends foe's hip in an odd +direction. He is unbalanced. +Side strike sends foe stumbling to the +left 5 feet. He recovers to face you. +With a circular block and a focused +central strike you break foe's defenses. +Textbook shot to foe's upper leg. The +bruise is deep. Foe does not fall down. +Hip strike spins foe. He is suspicious of +gravity and struggles to stay standing. ++3H – ∑ ++6H – ∑ +∑∏ – (+20) ++6H – (-25) ++5H – 3∑ +56-60 +Fist to chest. A solid punch. Foe is +rattled a little. +Boom! Good shot to foe's stomach. +He almost loses his lunch. +Strong wheel kick sends foe 10 feet +in any desired direction. +Back strike. Foe attempts to flee and +then changes his mind. +Shoulder strike. Foe is badly unbalances +and unable to defend himself. ++5H – ∑ ++3H –2∑ ++8H – 2∑ ++4H – 3∑ +2∑ – ∏ – (-10) +61-65 +Blow on top of foe's foot is slightly +misplaced, but quick. Bruise toe +and mash toe nails. +Kick in back of foe's leg. He stumbles, +but does not fall. You move to gain +advantage. +Brutal strike to upper leg. The bruise is +deep. The pain makes it hard for foe to +stand on the leg. +Blow strikes a nerve in foe's upper leg. +He is not in pain, but his leg is numb. +Draw out foe's weapon arm. You strike +cleanly to disarm him. Textbook. ++5H – 5(-20) ++7H – 2∑ ++5H – (-25) +2∑ – 6(-25) ++3H +66 +Strike Achilles tendon. Foe almost +falls. He recovers his balance, but +the pain is strong. +Strike foe in his forehead. The shock +sprains neck and fractures foe's jaw. +He cannot seem to close his jaw. +Knife hand strike breaks foe's weapon +arm, leaving it useless. Follow-up punch +to solar plexus knocks foe out. +Grip foe's weapon arm. Dislocate the +arm and then break it. Use your +advantage to pull foe over and kick him in +the face. Foe is knocked out. +Simultaneous palm strike to both of foe's +ears. Destroy foe's hearing and balance. ++7H – 2∑ –(-50) ++4H – 9∑ – (-50) + +(+20) +24∑ – (-95) +67-70 +Weak spearhand to foe's side. It +yields an excellent effect. +Spear hand strike to chest. Elbow shot +to foe's side causes some confusion. +Strong knife hand to upper portion of +foe's shield arm. Arm is broken. +Press your attack under the bottom of +foe's ribcage. Knock the wind out of foe. +Elbow to solar plexus and back of fist to +foe's face. Foe drops. ++2H – 2∑ ++3H – 3∑ + +2∑∏ ++5H - 3∑ – 2∏ +71-75 +Knife hand, spear hand +combination. Foe must roll a +weapon fumble. +Hammer foe's weapon arm as it passes +near you. The bruise is deep. Foe holds +tight to his weapon. +Strike to back of lower leg. Foe +struggles to keep balance. He is unable +to defend himself. +Firm flat palm strike to foe's collarbone. +Bone is broken. Foe guard is down. It +hurts him to raise his arm. +Kick foe's knee in backwards. Tendons +and muscles are torn. Foe yells out +frightfully in response. + ++6H – 2∑ – (-20) +2∑∏ +2∑∏ – (-25) ++5H – 3∑ – (-50) +76-80 +Blow to foe's shield arm. If foe has a +shield, it is broken. If foe has no +shield, his arm is broken. +You find an opening and strike the back +of foe's knee. The impact damages +tendons and unbalances foe. +You turn a block into a strike to foe's +weapon arm. Foe is disarmed. Strike +damages cartilage. +Stirke and grip area behind foe's knee. +Tendon and cartilage damage insures +your success. +Front kick to midsection doubles foe over. +You follow with a knee strike which +breaks foe's nose and knocks foe out. ++6H – ∑ +2∑ – (-25) +∑ – (-10) +(-75) + +81-85 +Kick to foe's weapon arm. Foe is +disarmed. Your strike does little +else. +Kick foe's weapon arm and send +weapon flying 5 feet away. You break 2 +of foe's weapons. +Heel kick breaks bone in foe's foot. Foe +has trouble standing. His foot looks +bad. +Kick to foe's leg is clean and mean. Leg +is broken above the knee. Foe falls over +slowly. +Powerful strike shatters knee and then +disjoints it. Foe drops. Oh that hurts! ++3H ++3H – 2∑ – (-20) +2∑∏ – (-50) ++5H – 5∑∏ – (-75) ++15H – 12∑∏ – (-80) +86-90 +Fluid move followed by a leaping +kick to foe's back knocks foe down. +He is shaken and tries to stand. +Wheel kick knocks foe flat. Smash +tendons and tear muscle. You spin clear +with too much energy. +Clean strike to lower leg rips Achilles +tendon and drops foe. +Open-handed blow to foe's adam's apple +crushes foe's windpipe. Foe dies in 18 +rounds of shock and asphyxiation. +Round house kick to kidneys drops foe to +his knees. You grip foe's neck and snap +it very effectively. Foe dies in 9 rounds. +3∑ +9∑ – (-30) ++10H – 9∑ – (-80) + + +91-95 +Strike to nerve in foe's leg. Foe's leg +buckles. He does not fall, he +crouches down in pain. +Strike to foe's knee shatters joint. +Foe drops down hard. He grips his +knee and spits out an oath. +Flying kick to foe's back. You knock foe +down, disarm him, and leave him in +trouble. +Jab to foe's eyes blinds him. Crescent +kick sends foe 10 feet in the direction +you select. +Strike to abdomen ruptures spleen. Foe +spits out blood instantly. He drops and +dies in 12 rounds. ++8H – 2∑∏ – 6(-40) +4∑∏ – (-85) +12∑∏ +10∑ – (-100) +(+10) +96-99 +You block foe's attack. You then +follow-up with a side strike that +knocks foe down. Foe hits hard and +loses his direction. +Roundhouse kick knocks foe out and +fractures collarbone. Neck is sprained +and shoulder muscles are bruised. +Kick to foe's solar plexus. He stumbles +back 10 feet. He falls very hard. +Round house kick catches foe in back of +head. You slam foe's head into the +ground. Severe concussion. Foe dies of +hemorrhage in 9 rounds. +Double palmstrike to foe's nose breaks +cartilage and drives bone into brain. +The effects are rapid. Foe dies after 6 +rounds prone and immobile. +3∑∏ +20∑∏ –20(-100) ++30H – 30∑∏ + + +100 +Gooseneck strike. Foe's inner ear +ruptured. Foe stands there while +your follow-up strike knocks him +down and out! +Knife hand strike to foe's weapon arm +breaks bone. Kick to lower back breaks +foe's backbone, leaving foe paralyzed +from the waist down. +Sweep lays foe out and heel strike to +foe's sternum collapses the ribcage. +Foe is helpless and dies in 4 rounds. +Gooosh! Awesome spear hand strike +finds seam, penetrates solar plexus and +ruptures the heart. Foe dies instantly. +Disarm foe and use his weapon to kill him. +A follow-up strike breaks his neck and +you send him 5 feet in any direction. +He is dead twice. +(-75) ++5H + + + +4.5 martial arts strikes critical strike table +A +b +c +d +e +You maneuver for a better +position. You have initiative. + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-strikes/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__01-05.png new file mode 100644 index 0000000..7f4c775 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__06-10.png new file mode 100644 index 0000000..8ae6002 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__100.png new file mode 100644 index 0000000..401dd6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__11-15.png new file mode 100644 index 0000000..4c6365e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__16-20.png new file mode 100644 index 0000000..07cb45c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__21-35.png new file mode 100644 index 0000000..da5a580 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__36-45.png new file mode 100644 index 0000000..58318ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__46-50.png new file mode 100644 index 0000000..1a49072 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__51-55.png new file mode 100644 index 0000000..0a17eb8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__56-60.png new file mode 100644 index 0000000..6afa9d5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__61-65.png new file mode 100644 index 0000000..df99133 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__66.png new file mode 100644 index 0000000..f69c906 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__67-70.png new file mode 100644 index 0000000..47324d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__71-75.png new file mode 100644 index 0000000..afb12a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__76-80.png new file mode 100644 index 0000000..84ddf74 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__81-85.png new file mode 100644 index 0000000..5fc6320 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__86-90.png new file mode 100644 index 0000000..463bbb2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__91-95.png new file mode 100644 index 0000000..0ddf460 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__96-99.png new file mode 100644 index 0000000..9382ef7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__01-05.png new file mode 100644 index 0000000..bf5541f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__06-10.png new file mode 100644 index 0000000..611b5d6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__100.png new file mode 100644 index 0000000..770d26e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__11-15.png new file mode 100644 index 0000000..78893ce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__16-20.png new file mode 100644 index 0000000..ef4a71e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__21-35.png new file mode 100644 index 0000000..da5ce12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__36-45.png new file mode 100644 index 0000000..8a6f492 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__46-50.png new file mode 100644 index 0000000..7361e10 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__51-55.png new file mode 100644 index 0000000..a1defec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__56-60.png new file mode 100644 index 0000000..c548cf3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__61-65.png new file mode 100644 index 0000000..64c69d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__66.png new file mode 100644 index 0000000..36aab2f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__67-70.png new file mode 100644 index 0000000..de519ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__71-75.png new file mode 100644 index 0000000..9e330b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__76-80.png new file mode 100644 index 0000000..8260dbf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__81-85.png new file mode 100644 index 0000000..33616db Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__86-90.png new file mode 100644 index 0000000..647307f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__91-95.png new file mode 100644 index 0000000..3778387 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__96-99.png new file mode 100644 index 0000000..8efd327 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__01-05.png new file mode 100644 index 0000000..5253e61 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__06-10.png new file mode 100644 index 0000000..1e68511 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__100.png new file mode 100644 index 0000000..29c751e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__11-15.png new file mode 100644 index 0000000..a7cac69 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__16-20.png new file mode 100644 index 0000000..3bbfe69 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__21-35.png new file mode 100644 index 0000000..ca08a60 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__36-45.png new file mode 100644 index 0000000..bed416b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__46-50.png new file mode 100644 index 0000000..8d8d0ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__51-55.png new file mode 100644 index 0000000..35c88c4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__56-60.png new file mode 100644 index 0000000..09d4c3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__61-65.png new file mode 100644 index 0000000..f7c1f53 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__66.png new file mode 100644 index 0000000..4c74f67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__67-70.png new file mode 100644 index 0000000..baeff75 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__71-75.png new file mode 100644 index 0000000..241d1af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__76-80.png new file mode 100644 index 0000000..b9a1f76 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__81-85.png new file mode 100644 index 0000000..2e8cb30 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__86-90.png new file mode 100644 index 0000000..b4f3af7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__91-95.png new file mode 100644 index 0000000..d5d18e2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__96-99.png new file mode 100644 index 0000000..e057cd2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__01-05.png new file mode 100644 index 0000000..79fda8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__06-10.png new file mode 100644 index 0000000..697e154 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__100.png new file mode 100644 index 0000000..62e1a09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__11-15.png new file mode 100644 index 0000000..6db635e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__16-20.png new file mode 100644 index 0000000..9768caa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__21-35.png new file mode 100644 index 0000000..b9a9594 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__36-45.png new file mode 100644 index 0000000..f1d917f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__46-50.png new file mode 100644 index 0000000..2caa891 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__51-55.png new file mode 100644 index 0000000..9e0c508 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__56-60.png new file mode 100644 index 0000000..0d207e7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__61-65.png new file mode 100644 index 0000000..4411f1b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__66.png new file mode 100644 index 0000000..7ad6bbd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__67-70.png new file mode 100644 index 0000000..c2bd873 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__71-75.png new file mode 100644 index 0000000..348854e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__76-80.png new file mode 100644 index 0000000..6c65c42 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__81-85.png new file mode 100644 index 0000000..e1f9e7f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__86-90.png new file mode 100644 index 0000000..539a948 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__91-95.png new file mode 100644 index 0000000..b8a61d4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__96-99.png new file mode 100644 index 0000000..bbf9589 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__01-05.png new file mode 100644 index 0000000..e9353aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__06-10.png new file mode 100644 index 0000000..6ab1bd8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__100.png new file mode 100644 index 0000000..a4eb4de Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__11-15.png new file mode 100644 index 0000000..9621b66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__16-20.png new file mode 100644 index 0000000..6b35f41 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__21-35.png new file mode 100644 index 0000000..ffc9371 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__36-45.png new file mode 100644 index 0000000..f144f33 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__46-50.png new file mode 100644 index 0000000..06a9da8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__51-55.png new file mode 100644 index 0000000..ceb90bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__56-60.png new file mode 100644 index 0000000..705af00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__61-65.png new file mode 100644 index 0000000..c5327fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__66.png new file mode 100644 index 0000000..ae2df29 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__67-70.png new file mode 100644 index 0000000..66de664 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__71-75.png new file mode 100644 index 0000000..2669772 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__76-80.png new file mode 100644 index 0000000..6b8c623 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__81-85.png new file mode 100644 index 0000000..284fbb4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__86-90.png new file mode 100644 index 0000000..fb69fa4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__91-95.png new file mode 100644 index 0000000..8458203 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__96-99.png new file mode 100644 index 0000000..2f7119d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/fragments.json new file mode 100644 index 0000000..3d48e28 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/fragments.json @@ -0,0 +1,3962 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 852, + "Width": 15, + "Height": 13, + "Text": "99", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 109, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 141, + "Width": 114, + "Height": 9, + "Text": "Acrobatic, but no extra damage.", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 276, + "Width": 134, + "Height": 9, + "Text": "You look like you are trying to sweep", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 276, + "Width": 106, + "Height": 9, + "Text": "yourself. Fortunately, you fail.", + "Confidence": null, + "CenterX": 329 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 429, + "Width": 147, + "Height": 9, + "Text": "Clever strike exposes foe\u0027s garment tags", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 429, + "Width": 94, + "Height": 9, + "Text": "and washing instructions.", + "Confidence": null, + "CenterX": 476 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 582, + "Width": 129, + "Height": 9, + "Text": "You forget you are a master martial", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 582, + "Width": 95, + "Height": 9, + "Text": "artist and attack at rank 1.", + "Confidence": null, + "CenterX": 629.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 735, + "Width": 132, + "Height": 9, + "Text": "Your attack looked deadly, but failed", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 735, + "Width": 42, + "Height": 9, + "Text": "to connect.", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 255, + "Width": 15, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 408, + "Width": 15, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 559, + "Width": 15, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 712, + "Width": 15, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 870, + "Width": 15, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 877.5 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 141, + "Width": 100, + "Height": 9, + "Text": "Rip your pants and miss an", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 141, + "Width": 46, + "Height": 9, + "Text": "opportunity.", + "Confidence": null, + "CenterX": 164 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 276, + "Width": 142, + "Height": 9, + "Text": "Your attack is little more than a clumsy", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 276, + "Width": 19, + "Height": 9, + "Text": "grip.", + "Confidence": null, + "CenterX": 285.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 429, + "Width": 134, + "Height": 9, + "Text": "You slip in a punch, after failing your", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 429, + "Width": 27, + "Height": 9, + "Text": "sweep.", + "Confidence": null, + "CenterX": 442.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 582, + "Width": 143, + "Height": 9, + "Text": "It looks like you\u0027re sparring. Your foe is", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 582, + "Width": 31, + "Height": 9, + "Text": "serious.", + "Confidence": null, + "CenterX": 597.5 + }, + { + "PageNumber": 1, + "Top": 143, + "Left": 735, + "Width": 143, + "Height": 9, + "Text": "Knee to thigh. Unbalance foe. You have", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 735, + "Width": 48, + "Height": 9, + "Text": "the initiative.", + "Confidence": null, + "CenterX": 759 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 255, + "Width": 15, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 408, + "Width": 15, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 559, + "Width": 15, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 712, + "Width": 15, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 870, + "Width": 15, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 877.5 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 93, + "Width": 38, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 112 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 141, + "Width": 115, + "Height": 9, + "Text": "You get to a better position and", + "Confidence": null, + "CenterX": 198.5 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 141, + "Width": 121, + "Height": 9, + "Text": "you have the initiative next round.", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 276, + "Width": 148, + "Height": 9, + "Text": "Your attack is deflected, but you gain the", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 276, + "Width": 73, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 312.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 429, + "Width": 127, + "Height": 9, + "Text": "Your form confuses foe greatly. He", + "Confidence": null, + "CenterX": 492.5 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 429, + "Width": 129, + "Height": 9, + "Text": "responds slowly, you have initiative.", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 582, + "Width": 139, + "Height": 9, + "Text": "Foe steps out of your assault and puts", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 582, + "Width": 93, + "Height": 9, + "Text": "up a determined defense.", + "Confidence": null, + "CenterX": 628.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 735, + "Width": 140, + "Height": 9, + "Text": "Base your grip on a garment that tears", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 735, + "Width": 100, + "Height": 9, + "Text": "off. You miss a good throw.", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 255, + "Width": 15, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 408, + "Width": 15, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 555, + "Width": 20, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 565 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 696, + "Width": 31, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 847, + "Width": 38, + "Height": 9, + "Text": "\u2211 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 866 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 141, + "Width": 109, + "Height": 9, + "Text": "Your attack causes foe to seek", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 242, + "Left": 141, + "Width": 93, + "Height": 9, + "Text": "saftey behind his weapon.", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 276, + "Width": 146, + "Height": 9, + "Text": "Foe is dazzled by your form. He seeks to", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 242, + "Left": 276, + "Width": 77, + "Height": 9, + "Text": "avoid your onslaught.", + "Confidence": null, + "CenterX": 314.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 429, + "Width": 137, + "Height": 9, + "Text": "Foe fights back and pushes you clear.", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 242, + "Left": 429, + "Width": 136, + "Height": 9, + "Text": "He unbalances himself in the process.", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 582, + "Width": 143, + "Height": 9, + "Text": "Your attack causes foe to strike himself", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 242, + "Left": 582, + "Width": 133, + "Height": 9, + "Text": "lightly. You are happy with the result.", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 735, + "Width": 145, + "Height": 9, + "Text": "A soft strike and a hard punch leaves an", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 242, + "Left": 735, + "Width": 99, + "Height": 9, + "Text": "openning for you to exploit.", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 238, + "Width": 31, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 253.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 397, + "Width": 25, + "Height": 9, + "Text": "(\u03C0-10)", + "Confidence": null, + "CenterX": 409.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 524, + "Width": 49, + "Height": 9, + "Text": "\u002B3H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 548.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 694, + "Width": 33, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211", + "Confidence": null, + "CenterX": 710.5 + }, + { + "PageNumber": 1, + "Top": 260, + "Left": 844, + "Width": 40, + "Height": 9, + "Text": "\u002B2H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 864 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 141, + "Width": 126, + "Height": 9, + "Text": "Foe leaps back from your attempts.", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 141, + "Width": 114, + "Height": 9, + "Text": "He needs some time to recover.", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 276, + "Width": 138, + "Height": 9, + "Text": "You almost connect your grapple with", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 276, + "Width": 129, + "Height": 9, + "Text": "the force of a kick. Foe escapes and", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 276, + "Width": 62, + "Height": 9, + "Text": "wards you away.", + "Confidence": null, + "CenterX": 307 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 429, + "Width": 131, + "Height": 9, + "Text": "Solid strike is not a sweep. Your foe", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 429, + "Width": 137, + "Height": 9, + "Text": "stands listless for a moment and then", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 429, + "Width": 33, + "Height": 9, + "Text": "recovers.", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 582, + "Width": 127, + "Height": 9, + "Text": "Sweep almost takes foe off his feet.", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 582, + "Width": 119, + "Height": 9, + "Text": "He drops down on one knee, but", + "Confidence": null, + "CenterX": 641.5 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 582, + "Width": 94, + "Height": 9, + "Text": "struggles back to his feet.", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 735, + "Width": 139, + "Height": 9, + "Text": "Sweep foe over. He spends some time", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 735, + "Width": 151, + "Height": 9, + "Text": "trying to recover his balance. You recover", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 735, + "Width": 112, + "Height": 9, + "Text": "and prepare for an opportunity.", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 218, + "Width": 51, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 373, + "Width": 49, + "Height": 9, + "Text": "\u002B3H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 541, + "Width": 33, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 687, + "Width": 40, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 707 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 870, + "Width": 14, + "Height": 9, + "Text": "2\u2211", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 141, + "Width": 97, + "Height": 9, + "Text": "Sweep is little more than a", + "Confidence": null, + "CenterX": 189.5 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 141, + "Width": 117, + "Height": 9, + "Text": "threatening kick. Foe steps back.", + "Confidence": null, + "CenterX": 199.5 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 276, + "Width": 146, + "Height": 9, + "Text": "Sweep bruises foe\u0027s leg. Foe limps clear", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 276, + "Width": 51, + "Height": 9, + "Text": "of your attack.", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 429, + "Width": 131, + "Height": 9, + "Text": "Sweep to foe\u0027s legs. Foe jumps over", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 429, + "Width": 136, + "Height": 9, + "Text": "some of your assault, but not all of it.", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 429, + "Width": 122, + "Height": 9, + "Text": "Leg is bruised. You have initiative.", + "Confidence": null, + "CenterX": 490 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 582, + "Width": 137, + "Height": 9, + "Text": "Sweep strikes foe\u0027s calf. Foe does not", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 582, + "Width": 132, + "Height": 9, + "Text": "fall, but the bruise is heavy. Foe is in", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 582, + "Width": 20, + "Height": 9, + "Text": "pain.", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 329, + "Left": 735, + "Width": 142, + "Height": 9, + "Text": "Sweep takes foe down on one knee. He", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 339, + "Left": 735, + "Width": 150, + "Height": 9, + "Text": "breaks free and stands in pain. Try a shot", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 349, + "Left": 735, + "Width": 115, + "Height": 9, + "Text": "to that bruise and you have him.", + "Confidence": null, + "CenterX": 792.5 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 220, + "Width": 49, + "Height": 9, + "Text": "\u002B3H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 376, + "Width": 46, + "Height": 9, + "Text": "\u002B4H \u2013 3(-25)", + "Confidence": null, + "CenterX": 399 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 556, + "Width": 18, + "Height": 9, + "Text": "(-10)", + "Confidence": null, + "CenterX": 565 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 685, + "Width": 42, + "Height": 9, + "Text": "\u002B5H \u2013 (-20)", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 368, + "Left": 824, + "Width": 60, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 854 + }, + { + "PageNumber": 1, + "Top": 398, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 382, + "Left": 141, + "Width": 120, + "Height": 9, + "Text": "Foe jumps over your assault. He", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 141, + "Width": 103, + "Height": 9, + "Text": "strikes out at you in defense.", + "Confidence": null, + "CenterX": 192.5 + }, + { + "PageNumber": 1, + "Top": 382, + "Left": 276, + "Width": 128, + "Height": 9, + "Text": "Your sweep pushes foe to the side.", + "Confidence": null, + "CenterX": 340 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 276, + "Width": 69, + "Height": 9, + "Text": "He recovers at bay.", + "Confidence": null, + "CenterX": 310.5 + }, + { + "PageNumber": 1, + "Top": 382, + "Left": 429, + "Width": 136, + "Height": 9, + "Text": "Sweep foe over. He does not fall. You", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 429, + "Width": 126, + "Height": 9, + "Text": "look for a good opening, while foe", + "Confidence": null, + "CenterX": 492 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 429, + "Width": 33, + "Height": 9, + "Text": "recovers.", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 382, + "Left": 582, + "Width": 131, + "Height": 9, + "Text": "Foe\u0027s feet come out from under him.", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 582, + "Width": 135, + "Height": 9, + "Text": "He makes a remarkable recovery, but", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 582, + "Width": 87, + "Height": 9, + "Text": "it\u0027s not that remarkable.", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 382, + "Left": 735, + "Width": 141, + "Height": 9, + "Text": "You almost disarm foe. He bends down", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 735, + "Width": 132, + "Height": 9, + "Text": "to recover his weapon. You have the", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 735, + "Width": 80, + "Height": 9, + "Text": "advantage. Finish him.", + "Confidence": null, + "CenterX": 775 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 220, + "Width": 49, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-25)", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 390, + "Width": 33, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 537, + "Width": 37, + "Height": 9, + "Text": "\u002B4H \u2013 2\u2211", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 687, + "Width": 40, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 707 + }, + { + "PageNumber": 1, + "Top": 421, + "Left": 840, + "Width": 45, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 452, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 141, + "Width": 125, + "Height": 9, + "Text": "Foe must step back 3 feet to avoid", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 141, + "Width": 46, + "Height": 9, + "Text": "your sweep.", + "Confidence": null, + "CenterX": 164 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 276, + "Width": 148, + "Height": 9, + "Text": "Throw knocks the wind out of foe. It fails", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 276, + "Width": 71, + "Height": 9, + "Text": "to knock him down.", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 429, + "Width": 140, + "Height": 9, + "Text": "Steady grip sends foe stumbling. Your", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 429, + "Width": 134, + "Height": 9, + "Text": "follow up misses, but who is perfect?", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 582, + "Width": 134, + "Height": 9, + "Text": "You step in and grab foe. The impact", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 582, + "Width": 144, + "Height": 9, + "Text": "breaks ribs. You fail to throw him down", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 582, + "Width": 41, + "Height": 9, + "Text": "as planned.", + "Confidence": null, + "CenterX": 602.5 + }, + { + "PageNumber": 1, + "Top": 437, + "Left": 735, + "Width": 129, + "Height": 9, + "Text": "Stumble foe in the direction of your", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 735, + "Width": 138, + "Height": 9, + "Text": "choice 5 feet. Foe does not fall, but he", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 735, + "Width": 61, + "Height": 9, + "Text": "looks like he will.", + "Confidence": null, + "CenterX": 765.5 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 220, + "Width": 49, + "Height": 9, + "Text": "\u002B5H \u2013 (\u03C0-30)", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 390, + "Width": 33, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 537, + "Width": 37, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 667, + "Width": 60, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 697 + }, + { + "PageNumber": 1, + "Top": 475, + "Left": 870, + "Width": 14, + "Height": 9, + "Text": "3\u2211", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 141, + "Width": 127, + "Height": 9, + "Text": "You try to throw foe, but he breaks", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 141, + "Width": 85, + "Height": 9, + "Text": "free. Foe is unbalanced.", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 276, + "Width": 140, + "Height": 9, + "Text": "Grip foe\u0027s weapon hand and sprain his", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 276, + "Width": 133, + "Height": 9, + "Text": "finger. Foe keeps hold of his weapon.", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 429, + "Width": 136, + "Height": 9, + "Text": "Your attack breaks foe\u0027s guard down.", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 429, + "Width": 80, + "Height": 9, + "Text": "You see an open spot.", + "Confidence": null, + "CenterX": 469 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 582, + "Width": 130, + "Height": 9, + "Text": "Sweep nearly knocks foe down. Foe", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 582, + "Width": 114, + "Height": 9, + "Text": "drops his guard to avoid falling.", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 491, + "Left": 735, + "Width": 128, + "Height": 9, + "Text": "Your sweep is effective. Foe is sent", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 501, + "Left": 735, + "Width": 152, + "Height": 9, + "Text": "reeling. Why he does not fall is a mystery.", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 520, + "Left": 237, + "Width": 33, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 253.5 + }, + { + "PageNumber": 1, + "Top": 520, + "Left": 387, + "Width": 36, + "Height": 9, + "Text": "\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 405 + }, + { + "PageNumber": 1, + "Top": 520, + "Left": 558, + "Width": 16, + "Height": 9, + "Text": "\u2211\u220F", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 520, + "Left": 687, + "Width": 40, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 707 + }, + { + "PageNumber": 1, + "Top": 520, + "Left": 847, + "Width": 37, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211", + "Confidence": null, + "CenterX": 865.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 141, + "Width": 119, + "Height": 9, + "Text": "You throw foe down, but he gets", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 141, + "Width": 103, + "Height": 9, + "Text": "up quickly. Your killing blow", + "Confidence": null, + "CenterX": 192.5 + }, + { + "PageNumber": 1, + "Top": 554, + "Left": 141, + "Width": 43, + "Height": 9, + "Text": "misses him.", + "Confidence": null, + "CenterX": 162.5 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 276, + "Width": 143, + "Height": 9, + "Text": "You grip foe\u0027s weapon arm, pulling and", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 276, + "Width": 147, + "Height": 9, + "Text": "twisting it brutally. Foe breaks free, he is", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 554, + "Left": 276, + "Width": 53, + "Height": 9, + "Text": "bruised badly.", + "Confidence": null, + "CenterX": 302.5 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 429, + "Width": 131, + "Height": 9, + "Text": "Your sweep results in an attempt at", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 429, + "Width": 128, + "Height": 9, + "Text": "throwing foe\u0027s arm. He is disarmed.", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 554, + "Left": 429, + "Width": 121, + "Height": 9, + "Text": "His arm, however, stays attached.", + "Confidence": null, + "CenterX": 489.5 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 582, + "Width": 136, + "Height": 9, + "Text": "You attempt a throw. Foe avoids your", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 582, + "Width": 135, + "Height": 9, + "Text": "main attack, but you steal his weapon", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 554, + "Left": 582, + "Width": 82, + "Height": 9, + "Text": "when he blocks with it.", + "Confidence": null, + "CenterX": 623 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 735, + "Width": 142, + "Height": 9, + "Text": "Excellent throw sends foe falling on his", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 735, + "Width": 137, + "Height": 9, + "Text": "weapon arm. He is disarmed. He must", + "Confidence": null, + "CenterX": 803.5 + }, + { + "PageNumber": 1, + "Top": 554, + "Left": 735, + "Width": 141, + "Height": 9, + "Text": "roll over to stand. You should have fun.", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 237, + "Width": 33, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211", + "Confidence": null, + "CenterX": 253.5 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 362, + "Width": 60, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 392 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 541, + "Width": 33, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 712, + "Width": 16, + "Height": 9, + "Text": "2\u2211", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 870, + "Width": 14, + "Height": 9, + "Text": "3\u2211", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 614, + "Left": 103, + "Width": 17, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 141, + "Width": 106, + "Height": 9, + "Text": "Throw dislocates foe\u0027s shield", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 141, + "Width": 126, + "Height": 9, + "Text": "shoulder. Foe does not fall, but his", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 141, + "Width": 68, + "Height": 9, + "Text": "shoulder is in pain.", + "Confidence": null, + "CenterX": 175 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 276, + "Width": 146, + "Height": 9, + "Text": "Nifty throw. You have foe pinned, on his", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 276, + "Width": 146, + "Height": 9, + "Text": "face, and in an armlock. Foe is disarmed", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 276, + "Width": 63, + "Height": 9, + "Text": "and immobilized.", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 429, + "Width": 144, + "Height": 9, + "Text": "Strike to foe\u0027s shins sweeps his legs up", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 429, + "Width": 147, + "Height": 9, + "Text": "and behind him. Foe comes down on his", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 429, + "Width": 137, + "Height": 9, + "Text": "knees. Both are broken. Foe falls over", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 619, + "Left": 429, + "Width": 34, + "Height": 9, + "Text": "helpless.", + "Confidence": null, + "CenterX": 446 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 582, + "Width": 131, + "Height": 9, + "Text": "You use your body to lift foe up and", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 582, + "Width": 145, + "Height": 9, + "Text": "throw him into the ground. He hits head", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 582, + "Width": 148, + "Height": 9, + "Text": "first. If he has a helm, he is knocked out.", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 619, + "Left": 582, + "Width": 132, + "Height": 9, + "Text": "If no helm, foe is paralyzed from the", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 629, + "Left": 582, + "Width": 45, + "Height": 9, + "Text": "waist down.", + "Confidence": null, + "CenterX": 604.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 735, + "Width": 146, + "Height": 9, + "Text": "Perfect throw sends foe flying over your", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 735, + "Width": 151, + "Height": 9, + "Text": "shoulder. He lands how you want him to,", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 735, + "Width": 132, + "Height": 9, + "Text": "within 10 feet. If you like, he dies on", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 619, + "Left": 735, + "Width": 117, + "Height": 9, + "Text": "impact. If not, he is knocked out.", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 222, + "Width": 48, + "Height": 9, + "Text": "3\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 408, + "Width": 15, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 500, + "Width": 74, + "Height": 9, + "Text": "\u002B15H \u2013 6\u2211\u220F \u2013(-80)", + "Confidence": null, + "CenterX": 537 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 650, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 874, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 141, + "Width": 122, + "Height": 9, + "Text": "Hard, but less than smooth throw", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 141, + "Width": 98, + "Height": 9, + "Text": "attempt. Foe is unbalanced.", + "Confidence": null, + "CenterX": 190 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 276, + "Width": 120, + "Height": 9, + "Text": "Strong throw. Foe is left a second", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 276, + "Width": 130, + "Height": 9, + "Text": "behind you and confused. You have", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 276, + "Width": 81, + "Height": 9, + "Text": "initiative for 6 rounds.", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 429, + "Width": 118, + "Height": 9, + "Text": "Glancing kick to foe\u0027s face. Your", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 429, + "Width": 137, + "Height": 9, + "Text": "recovery strikes foe in side. Foe steps", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 429, + "Width": 79, + "Height": 9, + "Text": "back 5 feet to recover.", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 582, + "Width": 143, + "Height": 9, + "Text": "You make it look simple. You throw foe", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 582, + "Width": 128, + "Height": 9, + "Text": "down on his shield shoulder. Break", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 582, + "Width": 131, + "Height": 9, + "Text": "collar bone and arm. Arm is useless.", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 735, + "Width": 151, + "Height": 9, + "Text": "Foe lands on shield arm. If foe has shield,", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 735, + "Width": 142, + "Height": 9, + "Text": "it is broken. If foe has no shield, arm is", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 682, + "Left": 735, + "Width": 80, + "Height": 9, + "Text": "shattered and useless.", + "Confidence": null, + "CenterX": 775 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 232, + "Width": 37, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211", + "Confidence": null, + "CenterX": 250.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 408, + "Width": 15, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 534, + "Width": 41, + "Height": 9, + "Text": "2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 554.5 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 662, + "Width": 65, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 694.5 + }, + { + "PageNumber": 1, + "Top": 700, + "Left": 821, + "Width": 62, + "Height": 9, + "Text": "with shield: \u002B20H", + "Confidence": null, + "CenterX": 852 + }, + { + "PageNumber": 1, + "Top": 710, + "Left": 767, + "Width": 118, + "Height": 9, + "Text": "w/o shield: \u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 826 + }, + { + "PageNumber": 1, + "Top": 742, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 141, + "Width": 112, + "Height": 9, + "Text": "Fall bruises foe\u0027s thigh. He gets", + "Confidence": null, + "CenterX": 197 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 141, + "Width": 91, + "Height": 9, + "Text": "back to his feet instantly.", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 276, + "Width": 142, + "Height": 9, + "Text": "Fall from throw tears ligaments in foe\u0027s", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 276, + "Width": 124, + "Height": 9, + "Text": "leg. Foe rises with some difficulty.", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 429, + "Width": 144, + "Height": 9, + "Text": "You sweep foe down and grip his leg to", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 429, + "Width": 142, + "Height": 9, + "Text": "keep it from breaking his fall. He strains", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 429, + "Width": 104, + "Height": 9, + "Text": "a muscle trying to break free.", + "Confidence": null, + "CenterX": 481 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 582, + "Width": 121, + "Height": 9, + "Text": "You assist foe in falling very hard.", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 582, + "Width": 149, + "Height": 9, + "Text": "Foe\u0027s leg is fractured. He rolls away from", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 582, + "Width": 111, + "Height": 9, + "Text": "you to get off his wounded leg.", + "Confidence": null, + "CenterX": 637.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 735, + "Width": 148, + "Height": 9, + "Text": "You sweep foe over. Foe falls and breaks", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 735, + "Width": 124, + "Height": 9, + "Text": "his hip. You strike at foe\u0027s mild hip", + "Confidence": null, + "CenterX": 797 + }, + { + "PageNumber": 1, + "Top": 746, + "Left": 735, + "Width": 83, + "Height": 9, + "Text": "fracture for advantage.", + "Confidence": null, + "CenterX": 776.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 202, + "Width": 67, + "Height": 9, + "Text": "\u002B2H \u2013 2\u2211\u220F \u2013 (-5)", + "Confidence": null, + "CenterX": 235.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 355, + "Width": 67, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 388.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 526, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 550 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 655, + "Width": 72, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 691 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 837, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 141, + "Width": 115, + "Height": 9, + "Text": "Foe falls on his shield side. If he", + "Confidence": null, + "CenterX": 198.5 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 141, + "Width": 110, + "Height": 9, + "Text": "has a shield, it is broken. If no", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 141, + "Width": 86, + "Height": 9, + "Text": "shield, arm is sprained.", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 276, + "Width": 149, + "Height": 9, + "Text": "Foe breaks his fall with his weapon hand.", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 276, + "Width": 133, + "Height": 9, + "Text": "He sprains two fingers when landing.", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 429, + "Width": 143, + "Height": 9, + "Text": "You knock foe over and ride him down.", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 429, + "Width": 128, + "Height": 9, + "Text": "He throws you off, but lands on his", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 429, + "Width": 139, + "Height": 9, + "Text": "shield arm. He dislocates his shoulder.", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 582, + "Width": 136, + "Height": 9, + "Text": "You throw foe down hard and deadly.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 582, + "Width": 130, + "Height": 9, + "Text": "He lands on his back and cracks his", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 582, + "Width": 57, + "Height": 9, + "Text": "shoulder blade.", + "Confidence": null, + "CenterX": 610.5 + }, + { + "PageNumber": 1, + "Top": 779, + "Left": 735, + "Width": 122, + "Height": 9, + "Text": "You send foe over backwards. He", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 789, + "Left": 735, + "Width": 145, + "Height": 9, + "Text": "stumbles 10 feet. He falls on his elbow .", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 799, + "Left": 735, + "Width": 123, + "Height": 9, + "Text": "Joint is shattered. Arm is useless.", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 818, + "Left": 229, + "Width": 41, + "Height": 9, + "Text": "2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 818, + "Left": 382, + "Width": 41, + "Height": 9, + "Text": "2\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 402.5 + }, + { + "PageNumber": 1, + "Top": 818, + "Left": 511, + "Width": 62, + "Height": 9, + "Text": "\u002B6H \u2013 6\u03C0 \u2013 (-40)", + "Confidence": null, + "CenterX": 542 + }, + { + "PageNumber": 1, + "Top": 818, + "Left": 655, + "Width": 72, + "Height": 9, + "Text": "\u002B9H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 691 + }, + { + "PageNumber": 1, + "Top": 818, + "Left": 855, + "Width": 30, + "Height": 9, + "Text": "4\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 870 + }, + { + "PageNumber": 1, + "Top": 855, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 141, + "Width": 115, + "Height": 9, + "Text": "Sweep unbalances foe and puts", + "Confidence": null, + "CenterX": 198.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 141, + "Width": 130, + "Height": 9, + "Text": "you in a good position for your next", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 141, + "Width": 22, + "Height": 9, + "Text": "strike.", + "Confidence": null, + "CenterX": 152 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 276, + "Width": 143, + "Height": 9, + "Text": "Sweep knocks foe 10 feet to side. If foe", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 276, + "Width": 149, + "Height": 9, + "Text": "has a cloak or cape, he falls down. If not,", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 276, + "Width": 100, + "Height": 9, + "Text": "foe is facing the wrong way.", + "Confidence": null, + "CenterX": 326 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 429, + "Width": 138, + "Height": 9, + "Text": "Sweep staggers foe. You step in close", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 429, + "Width": 136, + "Height": 9, + "Text": "for better position. Foe is oblivious to", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 429, + "Width": 57, + "Height": 9, + "Text": "your advantage.", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 582, + "Width": 122, + "Height": 9, + "Text": "Your throwing grip lands on foe\u0027s", + "Confidence": null, + "CenterX": 643 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 582, + "Width": 131, + "Height": 9, + "Text": "weapon hand. You tear tendons and", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 582, + "Width": 124, + "Height": 9, + "Text": "muscles in his wrist. He drops his", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 582, + "Width": 87, + "Height": 9, + "Text": "weapon. Arm is useless.", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 833, + "Left": 735, + "Width": 138, + "Height": 9, + "Text": "Throw foe with a running assault. You", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 735, + "Width": 141, + "Height": 9, + "Text": "carry him a good 10 feet to land on his", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 854, + "Left": 735, + "Width": 132, + "Height": 9, + "Text": "face. As he yells dirt shovels into his", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 735, + "Width": 104, + "Height": 9, + "Text": "mouth. You try not to laugh.", + "Confidence": null, + "CenterX": 787 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 203, + "Width": 66, + "Height": 9, + "Text": "\u002B3H \u2013 3\u2211 \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 236 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 378, + "Width": 45, + "Height": 9, + "Text": "\u002B9H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 400.5 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 524, + "Width": 50, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (\u002B30)", + "Confidence": null, + "CenterX": 549 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 708, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 840, + "Width": 45, + "Height": 9, + "Text": "\u002B5H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 141, + "Width": 129, + "Height": 9, + "Text": "Foe lands on his back. He rolls over", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 141, + "Width": 119, + "Height": 9, + "Text": "and stands up. Bruised muscles.", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 141, + "Width": 74, + "Height": 9, + "Text": "The damage is done.", + "Confidence": null, + "CenterX": 178 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 276, + "Width": 149, + "Height": 9, + "Text": "Foe lands on his back. He realizes that he", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 276, + "Width": 146, + "Height": 9, + "Text": "is in peril. The impact tears tendons and", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 276, + "Width": 52, + "Height": 9, + "Text": "breaks bones.", + "Confidence": null, + "CenterX": 302 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 429, + "Width": 145, + "Height": 9, + "Text": "Strike to legs. Throw foe to the ground.", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 429, + "Width": 140, + "Height": 9, + "Text": "He will always remember this one. Foe", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 429, + "Width": 87, + "Height": 9, + "Text": "has cracked a vertebrae.", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 582, + "Width": 145, + "Height": 9, + "Text": "Throw foe down. You immobilize him in", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 582, + "Width": 138, + "Height": 9, + "Text": "an arm lock. It will take a special move", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 582, + "Width": 81, + "Height": 9, + "Text": "to get out of your grip.", + "Confidence": null, + "CenterX": 622.5 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 735, + "Width": 144, + "Height": 9, + "Text": "Throw sends foe flying into an available", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 907, + "Left": 735, + "Width": 143, + "Height": 9, + "Text": "enemy within 10 feet. Both are knocked", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 735, + "Width": 75, + "Height": 9, + "Text": "down and confused.", + "Confidence": null, + "CenterX": 772.5 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 222, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 375, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 399 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 526, + "Width": 48, + "Height": 9, + "Text": "3\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 550 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 706, + "Width": 21, + "Height": 9, + "Text": "6\u2211\u220F", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 935, + "Left": 840, + "Width": 45, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 141, + "Width": 121, + "Height": 9, + "Text": "Foe breaks his nose on a piece of", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 141, + "Width": 116, + "Height": 9, + "Text": "equipment when you throw him.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 141, + "Width": 93, + "Height": 9, + "Text": "He is down and confused.", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 276, + "Width": 138, + "Height": 9, + "Text": "Fall breaks ribs, and disarms foe. Foe", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 276, + "Width": 141, + "Height": 9, + "Text": "hits the ground rolling. His attempts to", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 276, + "Width": 129, + "Height": 9, + "Text": "stand facing in the wrong direction.", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 429, + "Width": 141, + "Height": 9, + "Text": "Sweep downs foe and you put him in a", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 429, + "Width": 143, + "Height": 9, + "Text": "leg-breaking hold. You pin foe and may", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 429, + "Width": 105, + "Height": 9, + "Text": "break his leg at your leasure.", + "Confidence": null, + "CenterX": 481.5 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 582, + "Width": 139, + "Height": 9, + "Text": "Throw bashes foe against nearby hard", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 582, + "Width": 148, + "Height": 9, + "Text": "surface. Foe is knocked out. You may kill", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 582, + "Width": 144, + "Height": 9, + "Text": "him when you like. He is at your mercy.", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 951, + "Left": 735, + "Width": 144, + "Height": 9, + "Text": "Sly rolling throw sends foe into air. You", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 735, + "Width": 141, + "Height": 9, + "Text": "guide foe to the ground. He is knocked", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 971, + "Left": 735, + "Width": 101, + "Height": 9, + "Text": "unconscious and disarmed.", + "Confidence": null, + "CenterX": 785.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 197, + "Width": 72, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 370, + "Width": 53, + "Height": 9, + "Text": "12\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 396.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 534, + "Width": 40, + "Height": 9, + "Text": "\u002B9H \u2013 15\u220F", + "Confidence": null, + "CenterX": 554 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 708, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 874, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 93, + "Width": 39, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 112.5 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 141, + "Width": 127, + "Height": 9, + "Text": "Excellent throw sends foe down on", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 141, + "Width": 123, + "Height": 9, + "Text": "his head. If foe has no helm, he is", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 141, + "Width": 46, + "Height": 9, + "Text": "knocked out.", + "Confidence": null, + "CenterX": 164 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 276, + "Width": 133, + "Height": 9, + "Text": "With but one strike, you disarm foe ,", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 276, + "Width": 132, + "Height": 9, + "Text": "knock him out and kick him onto his", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 276, + "Width": 108, + "Height": 9, + "Text": "back. You\u0027re not a dragon yet.", + "Confidence": null, + "CenterX": 330 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 429, + "Width": 147, + "Height": 9, + "Text": "Throw foe against a hard surface of your", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 429, + "Width": 148, + "Height": 9, + "Text": "choice. Crack skull. If foe has helm, he is", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 429, + "Width": 147, + "Height": 9, + "Text": "in a coma. If no helm, he dies in 1 round.", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 582, + "Width": 146, + "Height": 9, + "Text": "Your attack breaks foe\u0027s ribs. You throw", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 582, + "Width": 146, + "Height": 9, + "Text": "him down and impale him on his broken", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 582, + "Width": 90, + "Height": 9, + "Text": "ribs. He dies in 6 rounds.", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 1005, + "Left": 735, + "Width": 140, + "Height": 9, + "Text": "You grapple your foe firmly, sweep his", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 1015, + "Left": 735, + "Width": 144, + "Height": 9, + "Text": "feet out from under him and then throw", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 735, + "Width": 150, + "Height": 9, + "Text": "him to the ground. The impact breaks his", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 735, + "Width": 85, + "Height": 9, + "Text": "neck. He dies instantly.", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 255, + "Width": 14, + "Height": 9, + "Text": "9\u2211", + "Confidence": null, + "CenterX": 262 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 403, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 412.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 564, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 717, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 1054, + "Left": 865, + "Width": 20, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 875 + }, + { + "PageNumber": 1, + "Top": 1090, + "Left": 99, + "Width": 25, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 141, + "Width": 129, + "Height": 9, + "Text": "Snazzy throw. Foe is knocked down", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 141, + "Width": 114, + "Height": 9, + "Text": "with a controlled grip. You may", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 141, + "Width": 82, + "Height": 9, + "Text": "finish him or hold him", + "Confidence": null, + "CenterX": 182 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 141, + "Width": 83, + "Height": 9, + "Text": "immobile and helpless.", + "Confidence": null, + "CenterX": 182.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 276, + "Width": 142, + "Height": 9, + "Text": "Fabulous throw sends foe flying. Foe\u0027s", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 276, + "Width": 135, + "Height": 9, + "Text": "neck is broken on impact and he dies", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 276, + "Width": 136, + "Height": 9, + "Text": "after rolling 15 feet. You are a mighty", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 276, + "Width": 118, + "Height": 9, + "Text": "warrior to all who see your work.", + "Confidence": null, + "CenterX": 335 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 429, + "Width": 137, + "Height": 9, + "Text": "Bring foe down with your knee under", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 429, + "Width": 120, + "Height": 9, + "Text": "his back. You break his back and", + "Confidence": null, + "CenterX": 489 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 429, + "Width": 142, + "Height": 9, + "Text": "paralyze him from the shoulders down.", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 429, + "Width": 119, + "Height": 9, + "Text": "You take a deadly looking stance.", + "Confidence": null, + "CenterX": 488.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 582, + "Width": 141, + "Height": 9, + "Text": "Foe lunges toward you in a threatening", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 582, + "Width": 126, + "Height": 9, + "Text": "move. A brutal grapple from below", + "Confidence": null, + "CenterX": 645 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 582, + "Width": 134, + "Height": 9, + "Text": "breaks foe\u0027s back, as you throw him.", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 582, + "Width": 130, + "Height": 9, + "Text": "He is paralyzed from the neck down.", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 735, + "Width": 126, + "Height": 9, + "Text": "Using but half the round, you use a", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 735, + "Width": 129, + "Height": 9, + "Text": "rolling throw to send foe against an", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 1088, + "Left": 735, + "Width": 150, + "Height": 9, + "Text": "available hard surface of your choice. Foe", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 1098, + "Left": 735, + "Width": 121, + "Height": 9, + "Text": "dies from many wounds instantly.", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 259, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 412, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 416.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 564, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 717, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 1117, + "Left": 865, + "Width": 20, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 875 + }, + { + "PageNumber": 1, + "Top": 40, + "Left": 217, + "Width": 541, + "Height": 13, + "Text": "4.6 martial arts sweeps critical strike table", + "Confidence": null, + "CenterX": 487.5 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 197, + "Width": 13, + "Height": 12, + "Text": "A", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 340, + "Width": 12, + "Height": 12, + "Text": "b", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 493, + "Width": 15, + "Height": 12, + "Text": "c", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 644, + "Width": 17, + "Height": 12, + "Text": "d", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 806, + "Width": 12, + "Height": 12, + "Text": "e", + "Confidence": null, + "CenterX": 812 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/pages/page-001.png new file mode 100644 index 0000000..e2af321 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/parsed-cells.json new file mode 100644 index 0000000..3eed6a0 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/parsed-cells.json @@ -0,0 +1,6752 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Acrobatic, but no extra damage.", + "\u002B0H" + ], + "BaseLines": [ + "Acrobatic, but no extra damage.", + "\u002B0H" + ], + "RawCellText": "Acrobatic, but no extra damage.\n\u002B0H", + "DescriptionText": "Acrobatic, but no extra damage.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 96, + "Width": 129, + "Height": 42 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 384, + "BoundsWidth": 516, + "BoundsHeight": 168, + "CropLeft": 516, + "CropTop": 352, + "CropWidth": 612, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "You look like you are trying to sweep", + "yourself. Fortunately, you fail.", + "\u002B0H" + ], + "BaseLines": [ + "You look like you are trying to sweep", + "yourself. Fortunately, you fail.", + "\u002B0H" + ], + "RawCellText": "You look like you are trying to sweep\nyourself. Fortunately, you fail.\n\u002B0H", + "DescriptionText": "You look like you are trying to sweep yourself. Fortunately, you fail.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 96, + "Width": 147, + "Height": 42 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 384, + "BoundsWidth": 588, + "BoundsHeight": 168, + "CropLeft": 1056, + "CropTop": 352, + "CropWidth": 684, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Clever strike exposes foe\u0027s garment tags", + "and washing instructions.", + "\u002B1H" + ], + "BaseLines": [ + "Clever strike exposes foe\u0027s garment tags", + "and washing instructions.", + "\u002B1H" + ], + "RawCellText": "Clever strike exposes foe\u0027s garment tags\nand washing instructions.\n\u002B1H", + "DescriptionText": "Clever strike exposes foe\u0027s garment tags and washing instructions.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 96, + "Width": 147, + "Height": 42 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 384, + "BoundsWidth": 588, + "BoundsHeight": 168, + "CropLeft": 1668, + "CropTop": 352, + "CropWidth": 684, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "You forget you are a master martial", + "artist and attack at rank 1.", + "\u002B2H" + ], + "BaseLines": [ + "You forget you are a master martial", + "artist and attack at rank 1.", + "\u002B2H" + ], + "RawCellText": "You forget you are a master martial\nartist and attack at rank 1.\n\u002B2H", + "DescriptionText": "You forget you are a master martial artist and attack at rank 1.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 96, + "Width": 145, + "Height": 42 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 384, + "BoundsWidth": 580, + "BoundsHeight": 168, + "CropLeft": 2280, + "CropTop": 352, + "CropWidth": 676, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Your attack looked deadly, but failed", + "to connect.", + "\u002B3H" + ], + "BaseLines": [ + "Your attack looked deadly, but failed", + "to connect.", + "\u002B3H" + ], + "RawCellText": "Your attack looked deadly, but failed\nto connect.\n\u002B3H", + "DescriptionText": "Your attack looked deadly, but failed to connect.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 96, + "Width": 150, + "Height": 42 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 384, + "BoundsWidth": 600, + "BoundsHeight": 168, + "CropLeft": 2892, + "CropTop": 352, + "CropWidth": 696, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Rip your pants and miss an", + "opportunity.", + "\u002B1H" + ], + "BaseLines": [ + "Rip your pants and miss an", + "opportunity.", + "\u002B1H" + ], + "RawCellText": "Rip your pants and miss an\nopportunity.\n\u002B1H", + "DescriptionText": "Rip your pants and miss an opportunity.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 143, + "Width": 129, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 572, + "BoundsWidth": 516, + "BoundsHeight": 152, + "CropLeft": 516, + "CropTop": 540, + "CropWidth": 612, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Your attack is little more than a clumsy", + "grip.", + "\u002B1H" + ], + "BaseLines": [ + "Your attack is little more than a clumsy", + "grip.", + "\u002B1H" + ], + "RawCellText": "Your attack is little more than a clumsy\ngrip.\n\u002B1H", + "DescriptionText": "Your attack is little more than a clumsy grip.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 143, + "Width": 147, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 572, + "BoundsWidth": 588, + "BoundsHeight": 152, + "CropLeft": 1056, + "CropTop": 540, + "CropWidth": 684, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "You slip in a punch, after failing your", + "sweep.", + "\u002B2H" + ], + "BaseLines": [ + "You slip in a punch, after failing your", + "sweep.", + "\u002B2H" + ], + "RawCellText": "You slip in a punch, after failing your\nsweep.\n\u002B2H", + "DescriptionText": "You slip in a punch, after failing your sweep.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 143, + "Width": 145, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 572, + "BoundsWidth": 580, + "BoundsHeight": 152, + "CropLeft": 1668, + "CropTop": 540, + "CropWidth": 676, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "It looks like you\u0027re sparring. Your foe is", + "serious.", + "\u002B3H" + ], + "BaseLines": [ + "It looks like you\u0027re sparring. Your foe is", + "serious.", + "\u002B3H" + ], + "RawCellText": "It looks like you\u0027re sparring. Your foe is\nserious.\n\u002B3H", + "DescriptionText": "It looks like you\u0027re sparring. Your foe is serious.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 143, + "Width": 145, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 572, + "BoundsWidth": 580, + "BoundsHeight": 152, + "CropLeft": 2280, + "CropTop": 540, + "CropWidth": 676, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Knee to thigh. Unbalance foe. You have", + "the initiative.", + "\u002B4H" + ], + "BaseLines": [ + "Knee to thigh. Unbalance foe. You have", + "the initiative.", + "\u002B4H" + ], + "RawCellText": "Knee to thigh. Unbalance foe. You have\nthe initiative.\n\u002B4H", + "DescriptionText": "Knee to thigh. Unbalance foe. You have the initiative.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 143, + "Width": 150, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 572, + "BoundsWidth": 600, + "BoundsHeight": 152, + "CropLeft": 2892, + "CropTop": 540, + "CropWidth": 696, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "You get to a better position and", + "you have the initiative next round.", + "\u002B1H" + ], + "BaseLines": [ + "You get to a better position and", + "you have the initiative next round.", + "\u002B1H" + ], + "RawCellText": "You get to a better position and\nyou have the initiative next round.\n\u002B1H", + "DescriptionText": "You get to a better position and you have the initiative next round.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 187, + "Width": 129, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 748, + "BoundsWidth": 516, + "BoundsHeight": 152, + "CropLeft": 516, + "CropTop": 716, + "CropWidth": 612, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Your attack is deflected, but you gain the", + "initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Your attack is deflected, but you gain the", + "initiative next round.", + "\u002B3H" + ], + "RawCellText": "Your attack is deflected, but you gain the\ninitiative next round.\n\u002B3H", + "DescriptionText": "Your attack is deflected, but you gain the initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 187, + "Width": 148, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 748, + "BoundsWidth": 592, + "BoundsHeight": 152, + "CropLeft": 1056, + "CropTop": 716, + "CropWidth": 688, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Your form confuses foe greatly. He", + "responds slowly, you have initiative.", + "(\u002B20)" + ], + "BaseLines": [ + "Your form confuses foe greatly. He", + "responds slowly, you have initiative.", + "(\u002B20)" + ], + "RawCellText": "Your form confuses foe greatly. He\nresponds slowly, you have initiative.\n(\u002B20)", + "DescriptionText": "Your form confuses foe greatly. He responds slowly, you have initiative.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 187, + "Width": 146, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 748, + "BoundsWidth": 584, + "BoundsHeight": 152, + "CropLeft": 1668, + "CropTop": 716, + "CropWidth": 680, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe steps out of your assault and puts", + "up a determined defense.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe steps out of your assault and puts", + "up a determined defense.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Foe steps out of your assault and puts\nup a determined defense.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Foe steps out of your assault and puts up a determined defense.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 187, + "Width": 145, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 748, + "BoundsWidth": 580, + "BoundsHeight": 152, + "CropLeft": 2280, + "CropTop": 716, + "CropWidth": 676, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Base your grip on a garment that tears", + "off. You miss a good throw.", + "\u2211 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Base your grip on a garment that tears", + "off. You miss a good throw.", + "\u2211 \u2013 (\u002B10)" + ], + "RawCellText": "Base your grip on a garment that tears\noff. You miss a good throw.\n\u2211 \u2013 (\u002B10)", + "DescriptionText": "Base your grip on a garment that tears off. You miss a good throw.", + "RawAffixText": "\u2211 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 187, + "Width": 150, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 748, + "BoundsWidth": 600, + "BoundsHeight": 152, + "CropLeft": 2892, + "CropTop": 716, + "CropWidth": 696, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Your attack causes foe to seek", + "saftey behind his weapon.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Your attack causes foe to seek", + "saftey behind his weapon.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Your attack causes foe to seek\nsaftey behind his weapon.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Your attack causes foe to seek saftey behind his weapon.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 232, + "Width": 128, + "Height": 37 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 928, + "BoundsWidth": 512, + "BoundsHeight": 148, + "CropLeft": 516, + "CropTop": 896, + "CropWidth": 608, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foe is dazzled by your form. He seeks to", + "avoid your onslaught.", + "(\u03C0-10)" + ], + "BaseLines": [ + "Foe is dazzled by your form. He seeks to", + "avoid your onslaught.", + "(\u03C0-10)" + ], + "RawCellText": "Foe is dazzled by your form. He seeks to\navoid your onslaught.\n(\u03C0-10)", + "DescriptionText": "Foe is dazzled by your form. He seeks to avoid your onslaught.", + "RawAffixText": "(\u03C0-10)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 232, + "Width": 146, + "Height": 37 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 928, + "BoundsWidth": 584, + "BoundsHeight": 148, + "CropLeft": 1056, + "CropTop": 896, + "CropWidth": 680, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Foe fights back and pushes you clear.", + "He unbalances himself in the process.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Foe fights back and pushes you clear.", + "He unbalances himself in the process.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "RawCellText": "Foe fights back and pushes you clear.\nHe unbalances himself in the process.\n\u002B3H \u2013 (\u03C0-20)", + "DescriptionText": "Foe fights back and pushes you clear. He unbalances himself in the process.", + "RawAffixText": "\u002B3H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 232, + "Width": 144, + "Height": 37 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 928, + "BoundsWidth": 576, + "BoundsHeight": 148, + "CropLeft": 1668, + "CropTop": 896, + "CropWidth": 672, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Your attack causes foe to strike himself", + "lightly. You are happy with the result.", + "\u002B4H \u2013 \u2211" + ], + "BaseLines": [ + "Your attack causes foe to strike himself", + "lightly. You are happy with the result.", + "\u002B4H \u2013 \u2211" + ], + "RawCellText": "Your attack causes foe to strike himself\nlightly. You are happy with the result.\n\u002B4H \u2013 \u2211", + "DescriptionText": "Your attack causes foe to strike himself lightly. You are happy with the result.", + "RawAffixText": "\u002B4H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 232, + "Width": 145, + "Height": 37 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 928, + "BoundsWidth": 580, + "BoundsHeight": 148, + "CropLeft": 2280, + "CropTop": 896, + "CropWidth": 676, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "A soft strike and a hard punch leaves an", + "openning for you to exploit.", + "\u002B2H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "A soft strike and a hard punch leaves an", + "openning for you to exploit.", + "\u002B2H \u2013 \u2211\u220F" + ], + "RawCellText": "A soft strike and a hard punch leaves an\nopenning for you to exploit.\n\u002B2H \u2013 \u2211\u220F", + "DescriptionText": "A soft strike and a hard punch leaves an openning for you to exploit.", + "RawAffixText": "\u002B2H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 232, + "Width": 149, + "Height": 37 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 928, + "BoundsWidth": 596, + "BoundsHeight": 148, + "CropLeft": 2892, + "CropTop": 896, + "CropWidth": 692, + "CropHeight": 212, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe leaps back from your attempts.", + "He needs some time to recover.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Foe leaps back from your attempts.", + "He needs some time to recover.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "RawCellText": "Foe leaps back from your attempts.\nHe needs some time to recover.\n\u002B2H \u2013 (\u03C0-10)", + "DescriptionText": "Foe leaps back from your attempts. He needs some time to recover.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 275, + "Width": 128, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 1100, + "BoundsWidth": 512, + "BoundsHeight": 188, + "CropLeft": 516, + "CropTop": 1068, + "CropWidth": 608, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "You almost connect your grapple with", + "the force of a kick. Foe escapes and", + "wards you away.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "You almost connect your grapple with", + "the force of a kick. Foe escapes and", + "wards you away.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "RawCellText": "You almost connect your grapple with\nthe force of a kick. Foe escapes and\nwards you away.\n\u002B3H \u2013 (\u03C0-20)", + "DescriptionText": "You almost connect your grapple with the force of a kick. Foe escapes and wards you away.", + "RawAffixText": "\u002B3H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 275, + "Width": 146, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 1100, + "BoundsWidth": 584, + "BoundsHeight": 188, + "CropLeft": 1056, + "CropTop": 1068, + "CropWidth": 680, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Solid strike is not a sweep. Your foe", + "stands listless for a moment and then", + "recovers.", + "\u002B4H \u2013 \u2211" + ], + "BaseLines": [ + "Solid strike is not a sweep. Your foe", + "stands listless for a moment and then", + "recovers.", + "\u002B4H \u2013 \u2211" + ], + "RawCellText": "Solid strike is not a sweep. Your foe\nstands listless for a moment and then\nrecovers.\n\u002B4H \u2013 \u2211", + "DescriptionText": "Solid strike is not a sweep. Your foe stands listless for a moment and then recovers.", + "RawAffixText": "\u002B4H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 275, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 1100, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 1668, + "CropTop": 1068, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Sweep almost takes foe off his feet.", + "He drops down on one knee, but", + "struggles back to his feet.", + "\u002B4H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Sweep almost takes foe off his feet.", + "He drops down on one knee, but", + "struggles back to his feet.", + "\u002B4H \u2013 \u2211\u220F" + ], + "RawCellText": "Sweep almost takes foe off his feet.\nHe drops down on one knee, but\nstruggles back to his feet.\n\u002B4H \u2013 \u2211\u220F", + "DescriptionText": "Sweep almost takes foe off his feet. He drops down on one knee, but struggles back to his feet.", + "RawAffixText": "\u002B4H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 275, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1100, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 2280, + "CropTop": 1068, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Sweep foe over. He spends some time", + "trying to recover his balance. You recover", + "and prepare for an opportunity.", + "2\u2211" + ], + "BaseLines": [ + "Sweep foe over. He spends some time", + "trying to recover his balance. You recover", + "and prepare for an opportunity.", + "2\u2211" + ], + "RawCellText": "Sweep foe over. He spends some time\ntrying to recover his balance. You recover\nand prepare for an opportunity.\n2\u2211", + "DescriptionText": "Sweep foe over. He spends some time trying to recover his balance. You recover and prepare for an opportunity.", + "RawAffixText": "2\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 275, + "Width": 151, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1100, + "BoundsWidth": 604, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 1068, + "CropWidth": 700, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Sweep is little more than a", + "threatening kick. Foe steps back.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Sweep is little more than a", + "threatening kick. Foe steps back.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "RawCellText": "Sweep is little more than a\nthreatening kick. Foe steps back.\n\u002B3H \u2013 (\u03C0-20)", + "DescriptionText": "Sweep is little more than a threatening kick. Foe steps back.", + "RawAffixText": "\u002B3H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 329, + "Width": 128, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 1316, + "BoundsWidth": 512, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 1284, + "CropWidth": 608, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Sweep bruises foe\u0027s leg. Foe limps clear", + "of your attack.", + "\u002B4H \u2013 3(-25)" + ], + "BaseLines": [ + "Sweep bruises foe\u0027s leg. Foe limps clear", + "of your attack.", + "\u002B4H \u2013 3(-25)" + ], + "RawCellText": "Sweep bruises foe\u0027s leg. Foe limps clear\nof your attack.\n\u002B4H \u2013 3(-25)", + "DescriptionText": "Sweep bruises foe\u0027s leg. Foe limps clear of your attack.", + "RawAffixText": "\u002B4H \u2013 3(-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 329, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 1316, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 1284, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Sweep to foe\u0027s legs. Foe jumps over", + "some of your assault, but not all of it.", + "Leg is bruised. You have initiative.", + "(-10)" + ], + "BaseLines": [ + "Sweep to foe\u0027s legs. Foe jumps over", + "some of your assault, but not all of it.", + "Leg is bruised. You have initiative.", + "(-10)" + ], + "RawCellText": "Sweep to foe\u0027s legs. Foe jumps over\nsome of your assault, but not all of it.\nLeg is bruised. You have initiative.\n(-10)", + "DescriptionText": "Sweep to foe\u0027s legs. Foe jumps over some of your assault, but not all of it. Leg is bruised. You have initiative.", + "RawAffixText": "(-10)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 329, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 1316, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 1284, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Sweep strikes foe\u0027s calf. Foe does not", + "fall, but the bruise is heavy. Foe is in", + "pain.", + "\u002B5H \u2013 (-20)" + ], + "BaseLines": [ + "Sweep strikes foe\u0027s calf. Foe does not", + "fall, but the bruise is heavy. Foe is in", + "pain.", + "\u002B5H \u2013 (-20)" + ], + "RawCellText": "Sweep strikes foe\u0027s calf. Foe does not\nfall, but the bruise is heavy. Foe is in\npain.\n\u002B5H \u2013 (-20)", + "DescriptionText": "Sweep strikes foe\u0027s calf. Foe does not fall, but the bruise is heavy. Foe is in pain.", + "RawAffixText": "\u002B5H \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 329, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1316, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 1284, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Sweep takes foe down on one knee. He", + "breaks free and stands in pain. Try a shot", + "to that bruise and you have him.", + "\u002B5H \u2013 \u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Sweep takes foe down on one knee. He", + "breaks free and stands in pain. Try a shot", + "to that bruise and you have him.", + "\u002B5H \u2013 \u2211 \u2013 (-20)" + ], + "RawCellText": "Sweep takes foe down on one knee. He\nbreaks free and stands in pain. Try a shot\nto that bruise and you have him.\n\u002B5H \u2013 \u2211 \u2013 (-20)", + "DescriptionText": "Sweep takes foe down on one knee. He breaks free and stands in pain. Try a shot to that bruise and you have him.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 329, + "Width": 150, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1316, + "BoundsWidth": 600, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 1284, + "CropWidth": 696, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Foe jumps over your assault. He", + "strikes out at you in defense.", + "\u002B4H \u2013 (\u03C0-25)" + ], + "BaseLines": [ + "Foe jumps over your assault. He", + "strikes out at you in defense.", + "\u002B4H \u2013 (\u03C0-25)" + ], + "RawCellText": "Foe jumps over your assault. He\nstrikes out at you in defense.\n\u002B4H \u2013 (\u03C0-25)", + "DescriptionText": "Foe jumps over your assault. He strikes out at you in defense.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 382, + "Width": 128, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 1528, + "BoundsWidth": 512, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 1496, + "CropWidth": 608, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Your sweep pushes foe to the side.", + "He recovers at bay.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Your sweep pushes foe to the side.", + "He recovers at bay.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Your sweep pushes foe to the side.\nHe recovers at bay.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Your sweep pushes foe to the side. He recovers at bay.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 382, + "Width": 147, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 1528, + "BoundsWidth": 588, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 1496, + "CropWidth": 684, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Sweep foe over. He does not fall. You", + "look for a good opening, while foe", + "recovers.", + "\u002B4H \u2013 2\u2211" + ], + "BaseLines": [ + "Sweep foe over. He does not fall. You", + "look for a good opening, while foe", + "recovers.", + "\u002B4H \u2013 2\u2211" + ], + "RawCellText": "Sweep foe over. He does not fall. You\nlook for a good opening, while foe\nrecovers.\n\u002B4H \u2013 2\u2211", + "DescriptionText": "Sweep foe over. He does not fall. You look for a good opening, while foe recovers.", + "RawAffixText": "\u002B4H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 382, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 1528, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 1496, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Foe\u0027s feet come out from under him.", + "He makes a remarkable recovery, but", + "it\u0027s not that remarkable.", + "\u002B5H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Foe\u0027s feet come out from under him.", + "He makes a remarkable recovery, but", + "it\u0027s not that remarkable.", + "\u002B5H \u2013 \u2211\u220F" + ], + "RawCellText": "Foe\u0027s feet come out from under him.\nHe makes a remarkable recovery, but\nit\u0027s not that remarkable.\n\u002B5H \u2013 \u2211\u220F", + "DescriptionText": "Foe\u0027s feet come out from under him. He makes a remarkable recovery, but it\u0027s not that remarkable.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 382, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1528, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 1496, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "You almost disarm foe. He bends down", + "to recover his weapon. You have the", + "advantage. Finish him.", + "\u002B7H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "You almost disarm foe. He bends down", + "to recover his weapon. You have the", + "advantage. Finish him.", + "\u002B7H \u2013 2\u2211\u220F" + ], + "RawCellText": "You almost disarm foe. He bends down\nto recover his weapon. You have the\nadvantage. Finish him.\n\u002B7H \u2013 2\u2211\u220F", + "DescriptionText": "You almost disarm foe. He bends down to recover his weapon. You have the advantage. Finish him.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 382, + "Width": 150, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1528, + "BoundsWidth": 600, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 1496, + "CropWidth": 696, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Foe must step back 3 feet to avoid", + "your sweep.", + "\u002B5H \u2013 (\u03C0-30)" + ], + "BaseLines": [ + "Foe must step back 3 feet to avoid", + "your sweep.", + "\u002B5H \u2013 (\u03C0-30)" + ], + "RawCellText": "Foe must step back 3 feet to avoid\nyour sweep.\n\u002B5H \u2013 (\u03C0-30)", + "DescriptionText": "Foe must step back 3 feet to avoid your sweep.", + "RawAffixText": "\u002B5H \u2013 (\u03C0-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 437, + "Width": 128, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 1748, + "BoundsWidth": 512, + "BoundsHeight": 188, + "CropLeft": 516, + "CropTop": 1716, + "CropWidth": 608, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Throw knocks the wind out of foe. It fails", + "to knock him down.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Throw knocks the wind out of foe. It fails", + "to knock him down.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Throw knocks the wind out of foe. It fails\nto knock him down.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Throw knocks the wind out of foe. It fails to knock him down.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 437, + "Width": 148, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 1748, + "BoundsWidth": 592, + "BoundsHeight": 188, + "CropLeft": 1056, + "CropTop": 1716, + "CropWidth": 688, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Steady grip sends foe stumbling. Your", + "follow up misses, but who is perfect?", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "Steady grip sends foe stumbling. Your", + "follow up misses, but who is perfect?", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "Steady grip sends foe stumbling. Your\nfollow up misses, but who is perfect?\n\u002B6H \u2013 2\u2211", + "DescriptionText": "Steady grip sends foe stumbling. Your follow up misses, but who is perfect?", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 437, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 1748, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 1668, + "CropTop": 1716, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "You step in and grab foe. The impact", + "breaks ribs. You fail to throw him down", + "as planned.", + "\u002B6H \u2013 \u2211 \u2013 (-20)" + ], + "BaseLines": [ + "You step in and grab foe. The impact", + "breaks ribs. You fail to throw him down", + "as planned.", + "\u002B6H \u2013 \u2211 \u2013 (-20)" + ], + "RawCellText": "You step in and grab foe. The impact\nbreaks ribs. You fail to throw him down\nas planned.\n\u002B6H \u2013 \u2211 \u2013 (-20)", + "DescriptionText": "You step in and grab foe. The impact breaks ribs. You fail to throw him down as planned.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 437, + "Width": 145, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1748, + "BoundsWidth": 580, + "BoundsHeight": 188, + "CropLeft": 2280, + "CropTop": 1716, + "CropWidth": 676, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Stumble foe in the direction of your", + "choice 5 feet. Foe does not fall, but he", + "looks like he will.", + "3\u2211" + ], + "BaseLines": [ + "Stumble foe in the direction of your", + "choice 5 feet. Foe does not fall, but he", + "looks like he will.", + "3\u2211" + ], + "RawCellText": "Stumble foe in the direction of your\nchoice 5 feet. Foe does not fall, but he\nlooks like he will.\n3\u2211", + "DescriptionText": "Stumble foe in the direction of your choice 5 feet. Foe does not fall, but he looks like he will.", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 437, + "Width": 149, + "Height": 47 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1748, + "BoundsWidth": 596, + "BoundsHeight": 188, + "CropLeft": 2892, + "CropTop": 1716, + "CropWidth": 692, + "CropHeight": 252, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "You try to throw foe, but he breaks", + "free. Foe is unbalanced.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "You try to throw foe, but he breaks", + "free. Foe is unbalanced.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "You try to throw foe, but he breaks\nfree. Foe is unbalanced.\n\u002B6H \u2013 \u2211", + "DescriptionText": "You try to throw foe, but he breaks free. Foe is unbalanced.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 491, + "Width": 129, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 1964, + "BoundsWidth": 516, + "BoundsHeight": 152, + "CropLeft": 516, + "CropTop": 1932, + "CropWidth": 612, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Grip foe\u0027s weapon hand and sprain his", + "finger. Foe keeps hold of his weapon.", + "\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Grip foe\u0027s weapon hand and sprain his", + "finger. Foe keeps hold of his weapon.", + "\u2211 \u2013 (-10)" + ], + "RawCellText": "Grip foe\u0027s weapon hand and sprain his\nfinger. Foe keeps hold of his weapon.\n\u2211 \u2013 (-10)", + "DescriptionText": "Grip foe\u0027s weapon hand and sprain his finger. Foe keeps hold of his weapon.", + "RawAffixText": "\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 491, + "Width": 147, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 1964, + "BoundsWidth": 588, + "BoundsHeight": 152, + "CropLeft": 1056, + "CropTop": 1932, + "CropWidth": 684, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Your attack breaks foe\u0027s guard down.", + "You see an open spot.", + "\u2211\u220F" + ], + "BaseLines": [ + "Your attack breaks foe\u0027s guard down.", + "You see an open spot.", + "\u2211\u220F" + ], + "RawCellText": "Your attack breaks foe\u0027s guard down.\nYou see an open spot.\n\u2211\u220F", + "DescriptionText": "Your attack breaks foe\u0027s guard down. You see an open spot.", + "RawAffixText": "\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 491, + "Width": 145, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 1964, + "BoundsWidth": 580, + "BoundsHeight": 152, + "CropLeft": 1668, + "CropTop": 1932, + "CropWidth": 676, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Sweep nearly knocks foe down. Foe", + "drops his guard to avoid falling.", + "\u002B7H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Sweep nearly knocks foe down. Foe", + "drops his guard to avoid falling.", + "\u002B7H \u2013 \u2211\u220F" + ], + "RawCellText": "Sweep nearly knocks foe down. Foe\ndrops his guard to avoid falling.\n\u002B7H \u2013 \u2211\u220F", + "DescriptionText": "Sweep nearly knocks foe down. Foe drops his guard to avoid falling.", + "RawAffixText": "\u002B7H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 491, + "Width": 145, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 1964, + "BoundsWidth": 580, + "BoundsHeight": 152, + "CropLeft": 2280, + "CropTop": 1932, + "CropWidth": 676, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Your sweep is effective. Foe is sent", + "reeling. Why he does not fall is a mystery.", + "\u002B9H \u2013 3\u2211" + ], + "BaseLines": [ + "Your sweep is effective. Foe is sent", + "reeling. Why he does not fall is a mystery.", + "\u002B9H \u2013 3\u2211" + ], + "RawCellText": "Your sweep is effective. Foe is sent\nreeling. Why he does not fall is a mystery.\n\u002B9H \u2013 3\u2211", + "DescriptionText": "Your sweep is effective. Foe is sent reeling. Why he does not fall is a mystery.", + "RawAffixText": "\u002B9H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 491, + "Width": 152, + "Height": 38 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 1964, + "BoundsWidth": 608, + "BoundsHeight": 152, + "CropLeft": 2892, + "CropTop": 1932, + "CropWidth": 704, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "You throw foe down, but he gets", + "up quickly. Your killing blow", + "misses him.", + "\u002B7H \u2013 \u2211" + ], + "BaseLines": [ + "You throw foe down, but he gets", + "up quickly. Your killing blow", + "misses him.", + "\u002B7H \u2013 \u2211" + ], + "RawCellText": "You throw foe down, but he gets\nup quickly. Your killing blow\nmisses him.\n\u002B7H \u2013 \u2211", + "DescriptionText": "You throw foe down, but he gets up quickly. Your killing blow misses him.", + "RawAffixText": "\u002B7H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 534, + "Width": 129, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 2136, + "BoundsWidth": 516, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 2104, + "CropWidth": 612, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "You grip foe\u0027s weapon arm, pulling and", + "twisting it brutally. Foe breaks free, he is", + "bruised badly.", + "\u002B3H \u2013 \u2211 \u2013 (-20)" + ], + "BaseLines": [ + "You grip foe\u0027s weapon arm, pulling and", + "twisting it brutally. Foe breaks free, he is", + "bruised badly.", + "\u002B3H \u2013 \u2211 \u2013 (-20)" + ], + "RawCellText": "You grip foe\u0027s weapon arm, pulling and\ntwisting it brutally. Foe breaks free, he is\nbruised badly.\n\u002B3H \u2013 \u2211 \u2013 (-20)", + "DescriptionText": "You grip foe\u0027s weapon arm, pulling and twisting it brutally. Foe breaks free, he is bruised badly.", + "RawAffixText": "\u002B3H \u2013 \u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 534, + "Width": 147, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 2136, + "BoundsWidth": 588, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 2104, + "CropWidth": 684, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Your sweep results in an attempt at", + "throwing foe\u0027s arm. He is disarmed.", + "His arm, however, stays attached.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Your sweep results in an attempt at", + "throwing foe\u0027s arm. He is disarmed.", + "His arm, however, stays attached.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Your sweep results in an attempt at\nthrowing foe\u0027s arm. He is disarmed.\nHis arm, however, stays attached.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Your sweep results in an attempt at throwing foe\u0027s arm. He is disarmed. His arm, however, stays attached.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 534, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 2136, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 2104, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "You attempt a throw. Foe avoids your", + "main attack, but you steal his weapon", + "when he blocks with it.", + "2\u2211" + ], + "BaseLines": [ + "You attempt a throw. Foe avoids your", + "main attack, but you steal his weapon", + "when he blocks with it.", + "2\u2211" + ], + "RawCellText": "You attempt a throw. Foe avoids your\nmain attack, but you steal his weapon\nwhen he blocks with it.\n2\u2211", + "DescriptionText": "You attempt a throw. Foe avoids your main attack, but you steal his weapon when he blocks with it.", + "RawAffixText": "2\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 534, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2136, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 2104, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Excellent throw sends foe falling on his", + "weapon arm. He is disarmed. He must", + "roll over to stand. You should have fun.", + "3\u2211" + ], + "BaseLines": [ + "Excellent throw sends foe falling on his", + "weapon arm. He is disarmed. He must", + "roll over to stand. You should have fun.", + "3\u2211" + ], + "RawCellText": "Excellent throw sends foe falling on his\nweapon arm. He is disarmed. He must\nroll over to stand. You should have fun.\n3\u2211", + "DescriptionText": "Excellent throw sends foe falling on his weapon arm. He is disarmed. He must roll over to stand. You should have fun.", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 534, + "Width": 149, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2136, + "BoundsWidth": 596, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 2104, + "CropWidth": 692, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Throw dislocates foe\u0027s shield", + "shoulder. Foe does not fall, but his", + "shoulder is in pain.", + "3\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Throw dislocates foe\u0027s shield", + "shoulder. Foe does not fall, but his", + "shoulder is in pain.", + "3\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Throw dislocates foe\u0027s shield\nshoulder. Foe does not fall, but his\nshoulder is in pain.\n3\u2211\u220F \u2013 (-50)", + "DescriptionText": "Throw dislocates foe\u0027s shield shoulder. Foe does not fall, but his shoulder is in pain.", + "RawAffixText": "3\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 588, + "Width": 129, + "Height": 68 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 2352, + "BoundsWidth": 516, + "BoundsHeight": 272, + "CropLeft": 516, + "CropTop": 2320, + "CropWidth": 612, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Nifty throw. You have foe pinned, on his", + "face, and in an armlock. Foe is disarmed", + "and immobilized.", + "\u002B9H" + ], + "BaseLines": [ + "Nifty throw. You have foe pinned, on his", + "face, and in an armlock. Foe is disarmed", + "and immobilized.", + "\u002B9H" + ], + "RawCellText": "Nifty throw. You have foe pinned, on his\nface, and in an armlock. Foe is disarmed\nand immobilized.\n\u002B9H", + "DescriptionText": "Nifty throw. You have foe pinned, on his face, and in an armlock. Foe is disarmed and immobilized.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 588, + "Width": 147, + "Height": 68 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 2352, + "BoundsWidth": 588, + "BoundsHeight": 272, + "CropLeft": 1056, + "CropTop": 2320, + "CropWidth": 684, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s shins sweeps his legs up", + "and behind him. Foe comes down on his", + "knees. Both are broken. Foe falls over", + "helpless.", + "\u002B15H \u2013 6\u2211\u220F \u2013(-80)" + ], + "BaseLines": [ + "Strike to foe\u0027s shins sweeps his legs up", + "and behind him. Foe comes down on his", + "knees. Both are broken. Foe falls over", + "helpless.", + "\u002B15H \u2013 6\u2211\u220F \u2013(-80)" + ], + "RawCellText": "Strike to foe\u0027s shins sweeps his legs up\nand behind him. Foe comes down on his\nknees. Both are broken. Foe falls over\nhelpless.\n\u002B15H \u2013 6\u2211\u220F \u2013(-80)", + "DescriptionText": "Strike to foe\u0027s shins sweeps his legs up and behind him. Foe comes down on his knees. Both are broken. Foe falls over helpless.", + "RawAffixText": "\u002B15H \u2013 6\u2211\u220F \u2013(-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 588, + "Width": 147, + "Height": 68 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 2352, + "BoundsWidth": 588, + "BoundsHeight": 272, + "CropLeft": 1668, + "CropTop": 2320, + "CropWidth": 684, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "You use your body to lift foe up and", + "throw him into the ground. He hits head", + "first. If he has a helm, he is knocked out.", + "If no helm, foe is paralyzed from the", + "waist down.", + "\u002B10H \u2013 4\u2211\u220F \u2013 (-90)" + ], + "BaseLines": [ + "You use your body to lift foe up and", + "throw him into the ground. He hits head", + "first. If he has a helm, he is knocked out.", + "If no helm, foe is paralyzed from the", + "waist down.", + "\u002B10H \u2013 4\u2211\u220F \u2013 (-90)" + ], + "RawCellText": "You use your body to lift foe up and\nthrow him into the ground. He hits head\nfirst. If he has a helm, he is knocked out.\nIf no helm, foe is paralyzed from the\nwaist down.\n\u002B10H \u2013 4\u2211\u220F \u2013 (-90)", + "DescriptionText": "You use your body to lift foe up and throw him into the ground. He hits head first. If he has a helm, he is knocked out. If no helm, foe is paralyzed from the waist down.", + "RawAffixText": "\u002B10H \u2013 4\u2211\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 588, + "Width": 148, + "Height": 68 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2352, + "BoundsWidth": 592, + "BoundsHeight": 272, + "CropLeft": 2280, + "CropTop": 2320, + "CropWidth": 688, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Perfect throw sends foe flying over your", + "shoulder. He lands how you want him to,", + "within 10 feet. If you like, he dies on", + "impact. If not, he is knocked out.", + "\u2014" + ], + "BaseLines": [ + "Perfect throw sends foe flying over your", + "shoulder. He lands how you want him to,", + "within 10 feet. If you like, he dies on", + "impact. If not, he is knocked out.", + "\u2014" + ], + "RawCellText": "Perfect throw sends foe flying over your\nshoulder. He lands how you want him to,\nwithin 10 feet. If you like, he dies on\nimpact. If not, he is knocked out.\n\u2014", + "DescriptionText": "Perfect throw sends foe flying over your shoulder. He lands how you want him to, within 10 feet. If you like, he dies on impact. If not, he is knocked out.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 588, + "Width": 151, + "Height": 68 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2352, + "BoundsWidth": 604, + "BoundsHeight": 272, + "CropLeft": 2892, + "CropTop": 2320, + "CropWidth": 700, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Hard, but less than smooth throw", + "attempt. Foe is unbalanced.", + "\u002B7H \u2013 2\u2211" + ], + "BaseLines": [ + "Hard, but less than smooth throw", + "attempt. Foe is unbalanced.", + "\u002B7H \u2013 2\u2211" + ], + "RawCellText": "Hard, but less than smooth throw\nattempt. Foe is unbalanced.\n\u002B7H \u2013 2\u2211", + "DescriptionText": "Hard, but less than smooth throw attempt. Foe is unbalanced.", + "RawAffixText": "\u002B7H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 662, + "Width": 128, + "Height": 57 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 2648, + "BoundsWidth": 512, + "BoundsHeight": 228, + "CropLeft": 516, + "CropTop": 2616, + "CropWidth": 608, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Strong throw. Foe is left a second", + "behind you and confused. You have", + "initiative for 6 rounds.", + "\u002B8H" + ], + "BaseLines": [ + "Strong throw. Foe is left a second", + "behind you and confused. You have", + "initiative for 6 rounds.", + "\u002B8H" + ], + "RawCellText": "Strong throw. Foe is left a second\nbehind you and confused. You have\ninitiative for 6 rounds.\n\u002B8H", + "DescriptionText": "Strong throw. Foe is left a second behind you and confused. You have initiative for 6 rounds.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 662, + "Width": 147, + "Height": 57 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 2648, + "BoundsWidth": 588, + "BoundsHeight": 228, + "CropLeft": 1056, + "CropTop": 2616, + "CropWidth": 684, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Glancing kick to foe\u0027s face. Your", + "recovery strikes foe in side. Foe steps", + "back 5 feet to recover.", + "2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Glancing kick to foe\u0027s face. Your", + "recovery strikes foe in side. Foe steps", + "back 5 feet to recover.", + "2\u2211 \u2013 (-10)" + ], + "RawCellText": "Glancing kick to foe\u0027s face. Your\nrecovery strikes foe in side. Foe steps\nback 5 feet to recover.\n2\u2211 \u2013 (-10)", + "DescriptionText": "Glancing kick to foe\u0027s face. Your recovery strikes foe in side. Foe steps back 5 feet to recover.", + "RawAffixText": "2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 662, + "Width": 146, + "Height": 57 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 2648, + "BoundsWidth": 584, + "BoundsHeight": 228, + "CropLeft": 1668, + "CropTop": 2616, + "CropWidth": 680, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "You make it look simple. You throw foe", + "down on his shield shoulder. Break", + "collar bone and arm. Arm is useless.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "You make it look simple. You throw foe", + "down on his shield shoulder. Break", + "collar bone and arm. Arm is useless.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "You make it look simple. You throw foe\ndown on his shield shoulder. Break\ncollar bone and arm. Arm is useless.\n\u002B5H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "You make it look simple. You throw foe down on his shield shoulder. Break collar bone and arm. Arm is useless.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 662, + "Width": 145, + "Height": 57 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2648, + "BoundsWidth": 580, + "BoundsHeight": 228, + "CropLeft": 2280, + "CropTop": 2616, + "CropWidth": 676, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Foe lands on shield arm. If foe has shield,", + "it is broken. If foe has no shield, arm is", + "shattered and useless.", + "with shield: \u002B20H", + "w/o shield: \u002B10H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Foe lands on shield arm. If foe has shield,", + "it is broken. If foe has no shield, arm is", + "shattered and useless." + ], + "RawCellText": "Foe lands on shield arm. If foe has shield,\nit is broken. If foe has no shield, arm is\nshattered and useless.", + "DescriptionText": "Foe lands on shield arm. If foe has shield, it is broken. If foe has no shield, arm is shattered and useless.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B20H", + "DescriptionText": "", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 662, + "Width": 151, + "Height": 57 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2648, + "BoundsWidth": 604, + "BoundsHeight": 228, + "CropLeft": 2892, + "CropTop": 2616, + "CropWidth": 700, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Fall bruises foe\u0027s thigh. He gets", + "back to his feet instantly.", + "\u002B2H \u2013 2\u2211\u220F \u2013 (-5)" + ], + "BaseLines": [ + "Fall bruises foe\u0027s thigh. He gets", + "back to his feet instantly.", + "\u002B2H \u2013 2\u2211\u220F \u2013 (-5)" + ], + "RawCellText": "Fall bruises foe\u0027s thigh. He gets\nback to his feet instantly.\n\u002B2H \u2013 2\u2211\u220F \u2013 (-5)", + "DescriptionText": "Fall bruises foe\u0027s thigh. He gets back to his feet instantly.", + "RawAffixText": "\u002B2H \u2013 2\u2211\u220F \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 726, + "Width": 128, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 2904, + "BoundsWidth": 512, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 2872, + "CropWidth": 608, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Fall from throw tears ligaments in foe\u0027s", + "leg. Foe rises with some difficulty.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Fall from throw tears ligaments in foe\u0027s", + "leg. Foe rises with some difficulty.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Fall from throw tears ligaments in foe\u0027s\nleg. Foe rises with some difficulty.\n\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Fall from throw tears ligaments in foe\u0027s leg. Foe rises with some difficulty.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 726, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 2904, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 2872, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "You sweep foe down and grip his leg to", + "keep it from breaking his fall. He strains", + "a muscle trying to break free.", + "2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "You sweep foe down and grip his leg to", + "keep it from breaking his fall. He strains", + "a muscle trying to break free.", + "2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "You sweep foe down and grip his leg to\nkeep it from breaking his fall. He strains\na muscle trying to break free.\n2\u2211\u220F \u2013 (-25)", + "DescriptionText": "You sweep foe down and grip his leg to keep it from breaking his fall. He strains a muscle trying to break free.", + "RawAffixText": "2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 726, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 2904, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 2872, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "You assist foe in falling very hard.", + "Foe\u0027s leg is fractured. He rolls away from", + "you to get off his wounded leg.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "You assist foe in falling very hard.", + "Foe\u0027s leg is fractured. He rolls away from", + "you to get off his wounded leg.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "You assist foe in falling very hard.\nFoe\u0027s leg is fractured. He rolls away from\nyou to get off his wounded leg.\n\u002B5H \u2013 2\u2211\u220F \u2013 (-30)", + "DescriptionText": "You assist foe in falling very hard. Foe\u0027s leg is fractured. He rolls away from you to get off his wounded leg.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 726, + "Width": 149, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 2904, + "BoundsWidth": 596, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 2872, + "CropWidth": 692, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "You sweep foe over. Foe falls and breaks", + "his hip. You strike at foe\u0027s mild hip", + "fracture for advantage.", + "2\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "You sweep foe over. Foe falls and breaks", + "his hip. You strike at foe\u0027s mild hip", + "fracture for advantage.", + "2\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "You sweep foe over. Foe falls and breaks\nhis hip. You strike at foe\u0027s mild hip\nfracture for advantage.\n2\u2211\u220F \u2013 (-40)", + "DescriptionText": "You sweep foe over. Foe falls and breaks his hip. You strike at foe\u0027s mild hip fracture for advantage.", + "RawAffixText": "2\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 726, + "Width": 150, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 2904, + "BoundsWidth": 600, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 2872, + "CropWidth": 696, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Foe falls on his shield side. If he", + "has a shield, it is broken. If no", + "shield, arm is sprained.", + "2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Foe falls on his shield side. If he", + "has a shield, it is broken. If no", + "shield, arm is sprained.", + "2\u2211 \u2013 (-10)" + ], + "RawCellText": "Foe falls on his shield side. If he\nhas a shield, it is broken. If no\nshield, arm is sprained.\n2\u2211 \u2013 (-10)", + "DescriptionText": "Foe falls on his shield side. If he has a shield, it is broken. If no shield, arm is sprained.", + "RawAffixText": "2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 779, + "Width": 129, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 3116, + "BoundsWidth": 516, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 3084, + "CropWidth": 612, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Foe breaks his fall with his weapon hand.", + "He sprains two fingers when landing.", + "2\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Foe breaks his fall with his weapon hand.", + "He sprains two fingers when landing.", + "2\u2211 \u2013 (-25)" + ], + "RawCellText": "Foe breaks his fall with his weapon hand.\nHe sprains two fingers when landing.\n2\u2211 \u2013 (-25)", + "DescriptionText": "Foe breaks his fall with his weapon hand. He sprains two fingers when landing.", + "RawAffixText": "2\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 779, + "Width": 149, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 3116, + "BoundsWidth": 596, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 3084, + "CropWidth": 692, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "You knock foe over and ride him down.", + "He throws you off, but lands on his", + "shield arm. He dislocates his shoulder.", + "\u002B6H \u2013 6\u03C0 \u2013 (-40)" + ], + "BaseLines": [ + "You knock foe over and ride him down.", + "He throws you off, but lands on his", + "shield arm. He dislocates his shoulder.", + "\u002B6H \u2013 6\u03C0 \u2013 (-40)" + ], + "RawCellText": "You knock foe over and ride him down.\nHe throws you off, but lands on his\nshield arm. He dislocates his shoulder.\n\u002B6H \u2013 6\u03C0 \u2013 (-40)", + "DescriptionText": "You knock foe over and ride him down. He throws you off, but lands on his shield arm. He dislocates his shoulder.", + "RawAffixText": "\u002B6H \u2013 6\u03C0 \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 779, + "Width": 144, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 3116, + "BoundsWidth": 576, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 3084, + "CropWidth": 672, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "You throw foe down hard and deadly.", + "He lands on his back and cracks his", + "shoulder blade.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "You throw foe down hard and deadly.", + "He lands on his back and cracks his", + "shoulder blade.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "You throw foe down hard and deadly.\nHe lands on his back and cracks his\nshoulder blade.\n\u002B9H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "You throw foe down hard and deadly. He lands on his back and cracks his shoulder blade.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 779, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3116, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 3084, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "You send foe over backwards. He", + "stumbles 10 feet. He falls on his elbow .", + "Joint is shattered. Arm is useless.", + "4\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "You send foe over backwards. He", + "stumbles 10 feet. He falls on his elbow .", + "Joint is shattered. Arm is useless.", + "4\u2211 \u2013 \u220F" + ], + "RawCellText": "You send foe over backwards. He\nstumbles 10 feet. He falls on his elbow .\nJoint is shattered. Arm is useless.\n4\u2211 \u2013 \u220F", + "DescriptionText": "You send foe over backwards. He stumbles 10 feet. He falls on his elbow . Joint is shattered. Arm is useless.", + "RawAffixText": "4\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 779, + "Width": 150, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3116, + "BoundsWidth": 600, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 3084, + "CropWidth": 696, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Sweep unbalances foe and puts", + "you in a good position for your next", + "strike.", + "\u002B3H \u2013 3\u2211 \u2013 (\u002B25)" + ], + "BaseLines": [ + "Sweep unbalances foe and puts", + "you in a good position for your next", + "strike.", + "\u002B3H \u2013 3\u2211 \u2013 (\u002B25)" + ], + "RawCellText": "Sweep unbalances foe and puts\nyou in a good position for your next\nstrike.\n\u002B3H \u2013 3\u2211 \u2013 (\u002B25)", + "DescriptionText": "Sweep unbalances foe and puts you in a good position for your next strike.", + "RawAffixText": "\u002B3H \u2013 3\u2211 \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 833, + "Width": 130, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 3332, + "BoundsWidth": 520, + "BoundsHeight": 232, + "CropLeft": 516, + "CropTop": 3300, + "CropWidth": 616, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Sweep knocks foe 10 feet to side. If foe", + "has a cloak or cape, he falls down. If not,", + "foe is facing the wrong way.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Sweep knocks foe 10 feet to side. If foe", + "has a cloak or cape, he falls down. If not,", + "foe is facing the wrong way.", + "\u002B9H \u2013 2\u2211\u220F" + ], + "RawCellText": "Sweep knocks foe 10 feet to side. If foe\nhas a cloak or cape, he falls down. If not,\nfoe is facing the wrong way.\n\u002B9H \u2013 2\u2211\u220F", + "DescriptionText": "Sweep knocks foe 10 feet to side. If foe has a cloak or cape, he falls down. If not, foe is facing the wrong way.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 833, + "Width": 149, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 3332, + "BoundsWidth": 596, + "BoundsHeight": 232, + "CropLeft": 1056, + "CropTop": 3300, + "CropWidth": 692, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Sweep staggers foe. You step in close", + "for better position. Foe is oblivious to", + "your advantage.", + "2\u2211\u220F \u2013 (\u002B30)" + ], + "BaseLines": [ + "Sweep staggers foe. You step in close", + "for better position. Foe is oblivious to", + "your advantage.", + "2\u2211\u220F \u2013 (\u002B30)" + ], + "RawCellText": "Sweep staggers foe. You step in close\nfor better position. Foe is oblivious to\nyour advantage.\n2\u2211\u220F \u2013 (\u002B30)", + "DescriptionText": "Sweep staggers foe. You step in close for better position. Foe is oblivious to your advantage.", + "RawAffixText": "2\u2211\u220F \u2013 (\u002B30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 833, + "Width": 145, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 3332, + "BoundsWidth": 580, + "BoundsHeight": 232, + "CropLeft": 1668, + "CropTop": 3300, + "CropWidth": 676, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Your throwing grip lands on foe\u0027s", + "weapon hand. You tear tendons and", + "muscles in his wrist. He drops his", + "weapon. Arm is useless.", + "\u002B10H" + ], + "BaseLines": [ + "Your throwing grip lands on foe\u0027s", + "weapon hand. You tear tendons and", + "muscles in his wrist. He drops his", + "weapon. Arm is useless.", + "\u002B10H" + ], + "RawCellText": "Your throwing grip lands on foe\u0027s\nweapon hand. You tear tendons and\nmuscles in his wrist. He drops his\nweapon. Arm is useless.\n\u002B10H", + "DescriptionText": "Your throwing grip lands on foe\u0027s weapon hand. You tear tendons and muscles in his wrist. He drops his weapon. Arm is useless.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 833, + "Width": 145, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3332, + "BoundsWidth": 580, + "BoundsHeight": 232, + "CropLeft": 2280, + "CropTop": 3300, + "CropWidth": 676, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Throw foe with a running assault. You", + "carry him a good 10 feet to land on his", + "face. As he yells dirt shovels into his", + "mouth. You try not to laugh.", + "\u002B5H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "Throw foe with a running assault. You", + "carry him a good 10 feet to land on his", + "face. As he yells dirt shovels into his", + "mouth. You try not to laugh.", + "\u002B5H \u2013 6\u2211\u220F" + ], + "RawCellText": "Throw foe with a running assault. You\ncarry him a good 10 feet to land on his\nface. As he yells dirt shovels into his\nmouth. You try not to laugh.\n\u002B5H \u2013 6\u2211\u220F", + "DescriptionText": "Throw foe with a running assault. You carry him a good 10 feet to land on his face. As he yells dirt shovels into his mouth. You try not to laugh.", + "RawAffixText": "\u002B5H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 833, + "Width": 150, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3332, + "BoundsWidth": 600, + "BoundsHeight": 232, + "CropLeft": 2892, + "CropTop": 3300, + "CropWidth": 696, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Foe lands on his back. He rolls over", + "and stands up. Bruised muscles.", + "The damage is done.", + "2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Foe lands on his back. He rolls over", + "and stands up. Bruised muscles.", + "The damage is done.", + "2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Foe lands on his back. He rolls over\nand stands up. Bruised muscles.\nThe damage is done.\n2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Foe lands on his back. He rolls over and stands up. Bruised muscles. The damage is done.", + "RawAffixText": "2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 896, + "Width": 129, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 3584, + "BoundsWidth": 516, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 3552, + "CropWidth": 612, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Foe lands on his back. He realizes that he", + "is in peril. The impact tears tendons and", + "breaks bones.", + "2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Foe lands on his back. He realizes that he", + "is in peril. The impact tears tendons and", + "breaks bones.", + "2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Foe lands on his back. He realizes that he\nis in peril. The impact tears tendons and\nbreaks bones.\n2\u2211\u220F \u2013 (-25)", + "DescriptionText": "Foe lands on his back. He realizes that he is in peril. The impact tears tendons and breaks bones.", + "RawAffixText": "2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 896, + "Width": 149, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 3584, + "BoundsWidth": 596, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 3552, + "CropWidth": 692, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Strike to legs. Throw foe to the ground.", + "He will always remember this one. Foe", + "has cracked a vertebrae.", + "3\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Strike to legs. Throw foe to the ground.", + "He will always remember this one. Foe", + "has cracked a vertebrae.", + "3\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Strike to legs. Throw foe to the ground.\nHe will always remember this one. Foe\nhas cracked a vertebrae.\n3\u2211\u220F \u2013 (-50)", + "DescriptionText": "Strike to legs. Throw foe to the ground. He will always remember this one. Foe has cracked a vertebrae.", + "RawAffixText": "3\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 896, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 3584, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 3552, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Throw foe down. You immobilize him in", + "an arm lock. It will take a special move", + "to get out of your grip.", + "6\u2211\u220F" + ], + "BaseLines": [ + "Throw foe down. You immobilize him in", + "an arm lock. It will take a special move", + "to get out of your grip.", + "6\u2211\u220F" + ], + "RawCellText": "Throw foe down. You immobilize him in\nan arm lock. It will take a special move\nto get out of your grip.\n6\u2211\u220F", + "DescriptionText": "Throw foe down. You immobilize him in an arm lock. It will take a special move to get out of your grip.", + "RawAffixText": "6\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 896, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3584, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 3552, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Throw sends foe flying into an available", + "enemy within 10 feet. Both are knocked", + "down and confused.", + "\u002B9H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Throw sends foe flying into an available", + "enemy within 10 feet. Both are knocked", + "down and confused.", + "\u002B9H \u2013 3\u2211\u220F" + ], + "RawCellText": "Throw sends foe flying into an available\nenemy within 10 feet. Both are knocked\ndown and confused.\n\u002B9H \u2013 3\u2211\u220F", + "DescriptionText": "Throw sends foe flying into an available enemy within 10 feet. Both are knocked down and confused.", + "RawAffixText": "\u002B9H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 896, + "Width": 150, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3584, + "BoundsWidth": 600, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 3552, + "CropWidth": 696, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Foe breaks his nose on a piece of", + "equipment when you throw him.", + "He is down and confused.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Foe breaks his nose on a piece of", + "equipment when you throw him.", + "He is down and confused.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Foe breaks his nose on a piece of\nequipment when you throw him.\nHe is down and confused.\n\u002B7H \u2013 2\u2211\u220F \u2013 (-25)", + "DescriptionText": "Foe breaks his nose on a piece of equipment when you throw him. He is down and confused.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 951, + "Width": 128, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 3804, + "BoundsWidth": 512, + "BoundsHeight": 192, + "CropLeft": 516, + "CropTop": 3772, + "CropWidth": 608, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Fall breaks ribs, and disarms foe. Foe", + "hits the ground rolling. His attempts to", + "stand facing in the wrong direction.", + "12\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Fall breaks ribs, and disarms foe. Foe", + "hits the ground rolling. His attempts to", + "stand facing in the wrong direction.", + "12\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Fall breaks ribs, and disarms foe. Foe\nhits the ground rolling. His attempts to\nstand facing in the wrong direction.\n12\u2211\u220F \u2013 (-30)", + "DescriptionText": "Fall breaks ribs, and disarms foe. Foe hits the ground rolling. His attempts to stand facing in the wrong direction.", + "RawAffixText": "12\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 951, + "Width": 147, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 3804, + "BoundsWidth": 588, + "BoundsHeight": 192, + "CropLeft": 1056, + "CropTop": 3772, + "CropWidth": 684, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Sweep downs foe and you put him in a", + "leg-breaking hold. You pin foe and may", + "break his leg at your leasure.", + "\u002B9H \u2013 15\u220F" + ], + "BaseLines": [ + "Sweep downs foe and you put him in a", + "leg-breaking hold. You pin foe and may", + "break his leg at your leasure.", + "\u002B9H \u2013 15\u220F" + ], + "RawCellText": "Sweep downs foe and you put him in a\nleg-breaking hold. You pin foe and may\nbreak his leg at your leasure.\n\u002B9H \u2013 15\u220F", + "DescriptionText": "Sweep downs foe and you put him in a leg-breaking hold. You pin foe and may break his leg at your leasure.", + "RawAffixText": "\u002B9H \u2013 15\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 951, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 3804, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 1668, + "CropTop": 3772, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Throw bashes foe against nearby hard", + "surface. Foe is knocked out. You may kill", + "him when you like. He is at your mercy.", + "\u002B10H" + ], + "BaseLines": [ + "Throw bashes foe against nearby hard", + "surface. Foe is knocked out. You may kill", + "him when you like. He is at your mercy.", + "\u002B10H" + ], + "RawCellText": "Throw bashes foe against nearby hard\nsurface. Foe is knocked out. You may kill\nhim when you like. He is at your mercy.\n\u002B10H", + "DescriptionText": "Throw bashes foe against nearby hard surface. Foe is knocked out. You may kill him when you like. He is at your mercy.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 951, + "Width": 148, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 3804, + "BoundsWidth": 592, + "BoundsHeight": 192, + "CropLeft": 2280, + "CropTop": 3772, + "CropWidth": 688, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Sly rolling throw sends foe into air. You", + "guide foe to the ground. He is knocked", + "unconscious and disarmed.", + "\u2014" + ], + "BaseLines": [ + "Sly rolling throw sends foe into air. You", + "guide foe to the ground. He is knocked", + "unconscious and disarmed.", + "\u2014" + ], + "RawCellText": "Sly rolling throw sends foe into air. You\nguide foe to the ground. He is knocked\nunconscious and disarmed.\n\u2014", + "DescriptionText": "Sly rolling throw sends foe into air. You guide foe to the ground. He is knocked unconscious and disarmed.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 951, + "Width": 148, + "Height": 48 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 3804, + "BoundsWidth": 592, + "BoundsHeight": 192, + "CropLeft": 2892, + "CropTop": 3772, + "CropWidth": 688, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Excellent throw sends foe down on", + "his head. If foe has no helm, he is", + "knocked out.", + "9\u2211" + ], + "BaseLines": [ + "Excellent throw sends foe down on", + "his head. If foe has no helm, he is", + "knocked out.", + "9\u2211" + ], + "RawCellText": "Excellent throw sends foe down on\nhis head. If foe has no helm, he is\nknocked out.\n9\u2211", + "DescriptionText": "Excellent throw sends foe down on his head. If foe has no helm, he is knocked out.", + "RawAffixText": "9\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 1005, + "Width": 128, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 4020, + "BoundsWidth": 512, + "BoundsHeight": 232, + "CropLeft": 516, + "CropTop": 3988, + "CropWidth": 608, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "With but one strike, you disarm foe ,", + "knock him out and kick him onto his", + "back. You\u0027re not a dragon yet.", + "\u002B20H" + ], + "BaseLines": [ + "With but one strike, you disarm foe ,", + "knock him out and kick him onto his", + "back. You\u0027re not a dragon yet.", + "\u002B20H" + ], + "RawCellText": "With but one strike, you disarm foe ,\nknock him out and kick him onto his\nback. You\u0027re not a dragon yet.\n\u002B20H", + "DescriptionText": "With but one strike, you disarm foe , knock him out and kick him onto his back. You\u0027re not a dragon yet.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 1005, + "Width": 146, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 4020, + "BoundsWidth": 584, + "BoundsHeight": 232, + "CropLeft": 1056, + "CropTop": 3988, + "CropWidth": 680, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Throw foe against a hard surface of your", + "choice. Crack skull. If foe has helm, he is", + "in a coma. If no helm, he dies in 1 round.", + "\u2014" + ], + "BaseLines": [ + "Throw foe against a hard surface of your", + "choice. Crack skull. If foe has helm, he is", + "in a coma. If no helm, he dies in 1 round.", + "\u2014" + ], + "RawCellText": "Throw foe against a hard surface of your\nchoice. Crack skull. If foe has helm, he is\nin a coma. If no helm, he dies in 1 round.\n\u2014", + "DescriptionText": "Throw foe against a hard surface of your choice. Crack skull. If foe has helm, he is in a coma. If no helm, he dies in 1 round.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 1005, + "Width": 148, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 4020, + "BoundsWidth": 592, + "BoundsHeight": 232, + "CropLeft": 1668, + "CropTop": 3988, + "CropWidth": 688, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Your attack breaks foe\u0027s ribs. You throw", + "him down and impale him on his broken", + "ribs. He dies in 6 rounds.", + "\u2014" + ], + "BaseLines": [ + "Your attack breaks foe\u0027s ribs. You throw", + "him down and impale him on his broken", + "ribs. He dies in 6 rounds.", + "\u2014" + ], + "RawCellText": "Your attack breaks foe\u0027s ribs. You throw\nhim down and impale him on his broken\nribs. He dies in 6 rounds.\n\u2014", + "DescriptionText": "Your attack breaks foe\u0027s ribs. You throw him down and impale him on his broken ribs. He dies in 6 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 1005, + "Width": 146, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 4020, + "BoundsWidth": 584, + "BoundsHeight": 232, + "CropLeft": 2280, + "CropTop": 3988, + "CropWidth": 680, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "You grapple your foe firmly, sweep his", + "feet out from under him and then throw", + "him to the ground. The impact breaks his", + "neck. He dies instantly.", + "(\u002B25)" + ], + "BaseLines": [ + "You grapple your foe firmly, sweep his", + "feet out from under him and then throw", + "him to the ground. The impact breaks his", + "neck. He dies instantly.", + "(\u002B25)" + ], + "RawCellText": "You grapple your foe firmly, sweep his\nfeet out from under him and then throw\nhim to the ground. The impact breaks his\nneck. He dies instantly.\n(\u002B25)", + "DescriptionText": "You grapple your foe firmly, sweep his feet out from under him and then throw him to the ground. The impact breaks his neck. He dies instantly.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 1005, + "Width": 150, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 4020, + "BoundsWidth": 600, + "BoundsHeight": 232, + "CropLeft": 2892, + "CropTop": 3988, + "CropWidth": 696, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Snazzy throw. Foe is knocked down", + "with a controlled grip. You may", + "finish him or hold him", + "immobile and helpless.", + "\u2014" + ], + "BaseLines": [ + "Snazzy throw. Foe is knocked down", + "with a controlled grip. You may", + "finish him or hold him", + "immobile and helpless.", + "\u2014" + ], + "RawCellText": "Snazzy throw. Foe is knocked down\nwith a controlled grip. You may\nfinish him or hold him\nimmobile and helpless.\n\u2014", + "DescriptionText": "Snazzy throw. Foe is knocked down with a controlled grip. You may finish him or hold him immobile and helpless.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 141, + "Top": 1068, + "Width": 129, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 564, + "BoundsTop": 4272, + "BoundsWidth": 516, + "BoundsHeight": 232, + "CropLeft": 516, + "CropTop": 4240, + "CropWidth": 612, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Fabulous throw sends foe flying. Foe\u0027s", + "neck is broken on impact and he dies", + "after rolling 15 feet. You are a mighty", + "warrior to all who see your work.", + "\u2014" + ], + "BaseLines": [ + "Fabulous throw sends foe flying. Foe\u0027s", + "neck is broken on impact and he dies", + "after rolling 15 feet. You are a mighty", + "warrior to all who see your work.", + "\u2014" + ], + "RawCellText": "Fabulous throw sends foe flying. Foe\u0027s\nneck is broken on impact and he dies\nafter rolling 15 feet. You are a mighty\nwarrior to all who see your work.\n\u2014", + "DescriptionText": "Fabulous throw sends foe flying. Foe\u0027s neck is broken on impact and he dies after rolling 15 feet. You are a mighty warrior to all who see your work.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 276, + "Top": 1068, + "Width": 145, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1104, + "BoundsTop": 4272, + "BoundsWidth": 580, + "BoundsHeight": 232, + "CropLeft": 1056, + "CropTop": 4240, + "CropWidth": 676, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Bring foe down with your knee under", + "his back. You break his back and", + "paralyze him from the shoulders down.", + "You take a deadly looking stance.", + "\u2014" + ], + "BaseLines": [ + "Bring foe down with your knee under", + "his back. You break his back and", + "paralyze him from the shoulders down.", + "You take a deadly looking stance.", + "\u2014" + ], + "RawCellText": "Bring foe down with your knee under\nhis back. You break his back and\nparalyze him from the shoulders down.\nYou take a deadly looking stance.\n\u2014", + "DescriptionText": "Bring foe down with your knee under his back. You break his back and paralyze him from the shoulders down. You take a deadly looking stance.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 429, + "Top": 1068, + "Width": 144, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1716, + "BoundsTop": 4272, + "BoundsWidth": 576, + "BoundsHeight": 232, + "CropLeft": 1668, + "CropTop": 4240, + "CropWidth": 672, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Foe lunges toward you in a threatening", + "move. A brutal grapple from below", + "breaks foe\u0027s back, as you throw him.", + "He is paralyzed from the neck down.", + "\u2014" + ], + "BaseLines": [ + "Foe lunges toward you in a threatening", + "move. A brutal grapple from below", + "breaks foe\u0027s back, as you throw him.", + "He is paralyzed from the neck down.", + "\u2014" + ], + "RawCellText": "Foe lunges toward you in a threatening\nmove. A brutal grapple from below\nbreaks foe\u0027s back, as you throw him.\nHe is paralyzed from the neck down.\n\u2014", + "DescriptionText": "Foe lunges toward you in a threatening move. A brutal grapple from below breaks foe\u0027s back, as you throw him. He is paralyzed from the neck down.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 582, + "Top": 1068, + "Width": 144, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2328, + "BoundsTop": 4272, + "BoundsWidth": 576, + "BoundsHeight": 232, + "CropLeft": 2280, + "CropTop": 4240, + "CropWidth": 672, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Using but half the round, you use a", + "rolling throw to send foe against an", + "available hard surface of your choice. Foe", + "dies from many wounds instantly.", + "(\u002B25)" + ], + "BaseLines": [ + "Using but half the round, you use a", + "rolling throw to send foe against an", + "available hard surface of your choice. Foe", + "dies from many wounds instantly.", + "(\u002B25)" + ], + "RawCellText": "Using but half the round, you use a\nrolling throw to send foe against an\navailable hard surface of your choice. Foe\ndies from many wounds instantly.\n(\u002B25)", + "DescriptionText": "Using but half the round, you use a rolling throw to send foe against an available hard surface of your choice. Foe dies from many wounds instantly.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 735, + "Top": 1068, + "Width": 150, + "Height": 58 + }, + "SourceImagePath": "ma-sweeps/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2940, + "BoundsTop": 4272, + "BoundsWidth": 600, + "BoundsHeight": 232, + "CropLeft": 2892, + "CropTop": 4240, + "CropWidth": 696, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/source.xml b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/source.xml new file mode 100644 index 0000000..4739a5e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/source.xml @@ -0,0 +1,411 @@ + + + + + + + + + + + + + +99 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +Acrobatic, but no extra damage. +You look like you are trying to sweep +yourself. Fortunately, you fail. +Clever strike exposes foe's garment tags +and washing instructions. +You forget you are a master martial +artist and attack at rank 1. +Your attack looked deadly, but failed +to connect. ++0H ++0H ++1H ++2H ++3H +06-10 +Rip your pants and miss an +opportunity. +Your attack is little more than a clumsy +grip. +You slip in a punch, after failing your +sweep. +It looks like you're sparring. Your foe is +serious. +Knee to thigh. Unbalance foe. You have +the initiative. ++1H ++1H ++2H ++3H ++4H +11-15 +You get to a better position and +you have the initiative next round. +Your attack is deflected, but you gain the +initiative next round. +Your form confuses foe greatly. He +responds slowly, you have initiative. +Foe steps out of your assault and puts +up a determined defense. +Base your grip on a garment that tears +off. You miss a good throw. ++1H ++3H +(+20) ++4H – π +∑ – (+10) +16-20 +Your attack causes foe to seek +saftey behind his weapon. +Foe is dazzled by your form. He seeks to +avoid your onslaught. +Foe fights back and pushes you clear. +He unbalances himself in the process. +Your attack causes foe to strike himself +lightly. You are happy with the result. +A soft strike and a hard punch leaves an +openning for you to exploit. ++2H – π +(π-10) ++3H – (π-20) ++4H – ∑ ++2H – ∑∏ +21-35 +Foe leaps back from your attempts. +He needs some time to recover. +You almost connect your grapple with +the force of a kick. Foe escapes and +wards you away. +Solid strike is not a sweep. Your foe +stands listless for a moment and then +recovers. +Sweep almost takes foe off his feet. +He drops down on one knee, but +struggles back to his feet. +Sweep foe over. He spends some time +trying to recover his balance. You recover +and prepare for an opportunity. ++2H – (π-10) ++3H – (π-20) ++4H – ∑ ++4H – ∑∏ +2∑ +36-45 +Sweep is little more than a +threatening kick. Foe steps back. +Sweep bruises foe's leg. Foe limps clear +of your attack. +Sweep to foe's legs. Foe jumps over +some of your assault, but not all of it. +Leg is bruised. You have initiative. +Sweep strikes foe's calf. Foe does not +fall, but the bruise is heavy. Foe is in +pain. +Sweep takes foe down on one knee. He +breaks free and stands in pain. Try a shot +to that bruise and you have him. ++3H – (π-20) ++4H – 3(-25) +(-10) ++5H – (-20) ++5H – ∑ – (-20) +46-50 +Foe jumps over your assault. He +strikes out at you in defense. +Your sweep pushes foe to the side. +He recovers at bay. +Sweep foe over. He does not fall. You +look for a good opening, while foe +recovers. +Foe's feet come out from under him. +He makes a remarkable recovery, but +it's not that remarkable. +You almost disarm foe. He bends down +to recover his weapon. You have the +advantage. Finish him. ++4H – (π-25) ++5H – ∑ ++4H – 2∑ ++5H – ∑∏ ++7H – 2∑∏ +51-55 +Foe must step back 3 feet to avoid +your sweep. +Throw knocks the wind out of foe. It fails +to knock him down. +Steady grip sends foe stumbling. Your +follow up misses, but who is perfect? +You step in and grab foe. The impact +breaks ribs. You fail to throw him down +as planned. +Stumble foe in the direction of your +choice 5 feet. Foe does not fall, but he +looks like he will. ++5H – (π-30) ++6H – ∑ ++6H – 2∑ ++6H – ∑ – (-20) +3∑ +56-60 +You try to throw foe, but he breaks +free. Foe is unbalanced. +Grip foe's weapon hand and sprain his +finger. Foe keeps hold of his weapon. +Your attack breaks foe's guard down. +You see an open spot. +Sweep nearly knocks foe down. Foe +drops his guard to avoid falling. +Your sweep is effective. Foe is sent +reeling. Why he does not fall is a mystery. ++6H – ∑ +∑ – (-10) +∑∏ ++7H – ∑∏ ++9H – 3∑ +61-65 +You throw foe down, but he gets +up quickly. Your killing blow +misses him. +You grip foe's weapon arm, pulling and +twisting it brutally. Foe breaks free, he is +bruised badly. +Your sweep results in an attempt at +throwing foe's arm. He is disarmed. +His arm, however, stays attached. +You attempt a throw. Foe avoids your +main attack, but you steal his weapon +when he blocks with it. +Excellent throw sends foe falling on his +weapon arm. He is disarmed. He must +roll over to stand. You should have fun. ++7H – ∑ ++3H – ∑ – (-20) ++3H – ∑ +2∑ +3∑ +66 +Throw dislocates foe's shield +shoulder. Foe does not fall, but his +shoulder is in pain. +Nifty throw. You have foe pinned, on his +face, and in an armlock. Foe is disarmed +and immobilized. +Strike to foe's shins sweeps his legs up +and behind him. Foe comes down on his +knees. Both are broken. Foe falls over +helpless. +You use your body to lift foe up and +throw him into the ground. He hits head +first. If he has a helm, he is knocked out. +If no helm, foe is paralyzed from the +waist down. +Perfect throw sends foe flying over your +shoulder. He lands how you want him to, +within 10 feet. If you like, he dies on +impact. If not, he is knocked out. +3∑∏ – (-50) ++9H ++15H – 6∑∏ –(-80) ++10H – 4∑∏ – (-90) + +67-70 +Hard, but less than smooth throw +attempt. Foe is unbalanced. +Strong throw. Foe is left a second +behind you and confused. You have +initiative for 6 rounds. +Glancing kick to foe's face. Your +recovery strikes foe in side. Foe steps +back 5 feet to recover. +You make it look simple. You throw foe +down on his shield shoulder. Break +collar bone and arm. Arm is useless. +Foe lands on shield arm. If foe has shield, +it is broken. If foe has no shield, arm is +shattered and useless. ++7H – 2∑ ++8H +2∑ – (-10) ++5H – 2∑ – (-20) +with shield: +20H +w/o shield: +10H – 2∑∏ – (-20) +71-75 +Fall bruises foe's thigh. He gets +back to his feet instantly. +Fall from throw tears ligaments in foe's +leg. Foe rises with some difficulty. +You sweep foe down and grip his leg to +keep it from breaking his fall. He strains +a muscle trying to break free. +You assist foe in falling very hard. +Foe's leg is fractured. He rolls away from +you to get off his wounded leg. +You sweep foe over. Foe falls and breaks +his hip. You strike at foe's mild hip +fracture for advantage. ++2H – 2∑∏ – (-5) ++5H – ∑∏ – (-10) +2∑∏ – (-25) ++5H – 2∑∏ – (-30) +2∑∏ – (-40) +76-80 +Foe falls on his shield side. If he +has a shield, it is broken. If no +shield, arm is sprained. +Foe breaks his fall with his weapon hand. +He sprains two fingers when landing. +You knock foe over and ride him down. +He throws you off, but lands on his +shield arm. He dislocates his shoulder. +You throw foe down hard and deadly. +He lands on his back and cracks his +shoulder blade. +You send foe over backwards. He +stumbles 10 feet. He falls on his elbow . +Joint is shattered. Arm is useless. +2∑ – (-10) +2∑ – (-25) ++6H – 6π – (-40) ++9H – 2∑∏ – (-20) +4∑ – ∏ +81-85 +Sweep unbalances foe and puts +you in a good position for your next +strike. +Sweep knocks foe 10 feet to side. If foe +has a cloak or cape, he falls down. If not, +foe is facing the wrong way. +Sweep staggers foe. You step in close +for better position. Foe is oblivious to +your advantage. +Your throwing grip lands on foe's +weapon hand. You tear tendons and +muscles in his wrist. He drops his +weapon. Arm is useless. +Throw foe with a running assault. You +carry him a good 10 feet to land on his +face. As he yells dirt shovels into his +mouth. You try not to laugh. ++3H – 3∑ – (+25) ++9H – 2∑∏ +2∑∏ – (+30) ++10H ++5H – 6∑∏ +86-90 +Foe lands on his back. He rolls over +and stands up. Bruised muscles. +The damage is done. +Foe lands on his back. He realizes that he +is in peril. The impact tears tendons and +breaks bones. +Strike to legs. Throw foe to the ground. +He will always remember this one. Foe +has cracked a vertebrae. +Throw foe down. You immobilize him in +an arm lock. It will take a special move +to get out of your grip. +Throw sends foe flying into an available +enemy within 10 feet. Both are knocked +down and confused. +2∑∏ – (-20) +2∑∏ – (-25) +3∑∏ – (-50) +6∑∏ ++9H – 3∑∏ +91-95 +Foe breaks his nose on a piece of +equipment when you throw him. +He is down and confused. +Fall breaks ribs, and disarms foe. Foe +hits the ground rolling. His attempts to +stand facing in the wrong direction. +Sweep downs foe and you put him in a +leg-breaking hold. You pin foe and may +break his leg at your leasure. +Throw bashes foe against nearby hard +surface. Foe is knocked out. You may kill +him when you like. He is at your mercy. +Sly rolling throw sends foe into air. You +guide foe to the ground. He is knocked +unconscious and disarmed. ++7H – 2∑∏ – (-25) +12∑∏ – (-30) ++9H – 15∏ ++10H + +96-99 +Excellent throw sends foe down on +his head. If foe has no helm, he is +knocked out. +With but one strike, you disarm foe , +knock him out and kick him onto his +back. You're not a dragon yet. +Throw foe against a hard surface of your +choice. Crack skull. If foe has helm, he is +in a coma. If no helm, he dies in 1 round. +Your attack breaks foe's ribs. You throw +him down and impale him on his broken +ribs. He dies in 6 rounds. +You grapple your foe firmly, sweep his +feet out from under him and then throw +him to the ground. The impact breaks his +neck. He dies instantly. +9∑ ++20H + + +(+25) +100 +Snazzy throw. Foe is knocked down +with a controlled grip. You may +finish him or hold him +immobile and helpless. +Fabulous throw sends foe flying. Foe's +neck is broken on impact and he dies +after rolling 15 feet. You are a mighty +warrior to all who see your work. +Bring foe down with your knee under +his back. You break his back and +paralyze him from the shoulders down. +You take a deadly looking stance. +Foe lunges toward you in a threatening +move. A brutal grapple from below +breaks foe's back, as you throw him. +He is paralyzed from the neck down. +Using but half the round, you use a +rolling throw to send foe against an +available hard surface of your choice. Foe +dies from many wounds instantly. + + + + +(+25) +4.6 martial arts sweeps critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/ma-sweeps/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__01-05.png new file mode 100644 index 0000000..6850c0d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__06-10.png new file mode 100644 index 0000000..7a907c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__100.png new file mode 100644 index 0000000..ad38797 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__11-15.png new file mode 100644 index 0000000..ac573fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__16-20.png new file mode 100644 index 0000000..25d177b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__21-35.png new file mode 100644 index 0000000..e6b6565 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__36-45.png new file mode 100644 index 0000000..743973b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__46-50.png new file mode 100644 index 0000000..f953ebd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__51-55.png new file mode 100644 index 0000000..bc7debf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__56-60.png new file mode 100644 index 0000000..e9bcb18 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__61-65.png new file mode 100644 index 0000000..afeb93e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__66.png new file mode 100644 index 0000000..b178b66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__67-70.png new file mode 100644 index 0000000..32d122f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__71-75.png new file mode 100644 index 0000000..28befac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__76-80.png new file mode 100644 index 0000000..4daa558 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__81-85.png new file mode 100644 index 0000000..ea494c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__86-90.png new file mode 100644 index 0000000..55a8bb1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__91-95.png new file mode 100644 index 0000000..76205d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__96-99.png new file mode 100644 index 0000000..c7e86e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__01-05.png new file mode 100644 index 0000000..12cefb7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__06-10.png new file mode 100644 index 0000000..f813dad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__100.png new file mode 100644 index 0000000..70a099d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__11-15.png new file mode 100644 index 0000000..a91955d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__16-20.png new file mode 100644 index 0000000..19646fb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__21-35.png new file mode 100644 index 0000000..f342c3f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__36-45.png new file mode 100644 index 0000000..d4cc484 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__46-50.png new file mode 100644 index 0000000..e733452 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__51-55.png new file mode 100644 index 0000000..738f558 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__56-60.png new file mode 100644 index 0000000..f63cf24 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__61-65.png new file mode 100644 index 0000000..2895753 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__66.png new file mode 100644 index 0000000..f7c7807 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__67-70.png new file mode 100644 index 0000000..ff09857 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__71-75.png new file mode 100644 index 0000000..88c4788 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__76-80.png new file mode 100644 index 0000000..060cfa5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__81-85.png new file mode 100644 index 0000000..31339b3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__86-90.png new file mode 100644 index 0000000..52d7cee Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__91-95.png new file mode 100644 index 0000000..0768994 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__96-99.png new file mode 100644 index 0000000..af6c08e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__01-05.png new file mode 100644 index 0000000..e3957d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__06-10.png new file mode 100644 index 0000000..7856e13 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__100.png new file mode 100644 index 0000000..506df2a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__11-15.png new file mode 100644 index 0000000..9ad3c4a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__16-20.png new file mode 100644 index 0000000..ccf3c55 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__21-35.png new file mode 100644 index 0000000..6f5a350 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__36-45.png new file mode 100644 index 0000000..a5a2c1d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__46-50.png new file mode 100644 index 0000000..316273f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__51-55.png new file mode 100644 index 0000000..b9186b8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__56-60.png new file mode 100644 index 0000000..17cb246 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__61-65.png new file mode 100644 index 0000000..317375e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__66.png new file mode 100644 index 0000000..bd69532 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__67-70.png new file mode 100644 index 0000000..9afdabd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__71-75.png new file mode 100644 index 0000000..af3d73c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__76-80.png new file mode 100644 index 0000000..9350b7b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__81-85.png new file mode 100644 index 0000000..4e2682c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__86-90.png new file mode 100644 index 0000000..0a56b49 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__91-95.png new file mode 100644 index 0000000..1882d8e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__96-99.png new file mode 100644 index 0000000..770894f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__01-05.png new file mode 100644 index 0000000..769c817 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__06-10.png new file mode 100644 index 0000000..f9ac88f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__100.png new file mode 100644 index 0000000..b357a01 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__11-15.png new file mode 100644 index 0000000..0ab9250 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__16-20.png new file mode 100644 index 0000000..0867417 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__21-35.png new file mode 100644 index 0000000..a28cb00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__36-45.png new file mode 100644 index 0000000..a8e7584 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__46-50.png new file mode 100644 index 0000000..fe95d85 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__51-55.png new file mode 100644 index 0000000..f346dd7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__56-60.png new file mode 100644 index 0000000..e542168 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__61-65.png new file mode 100644 index 0000000..d8aff96 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__66.png new file mode 100644 index 0000000..3c253a2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__67-70.png new file mode 100644 index 0000000..47468f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__71-75.png new file mode 100644 index 0000000..221f998 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__76-80.png new file mode 100644 index 0000000..2883f69 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__81-85.png new file mode 100644 index 0000000..2f0357b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__86-90.png new file mode 100644 index 0000000..58d4a27 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__91-95.png new file mode 100644 index 0000000..28cc98f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__96-99.png new file mode 100644 index 0000000..878a2a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__01-05.png new file mode 100644 index 0000000..c292f46 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__06-10.png new file mode 100644 index 0000000..8b5cffc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__100.png new file mode 100644 index 0000000..7e69450 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__11-15.png new file mode 100644 index 0000000..27f8995 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__16-20.png new file mode 100644 index 0000000..300c559 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__21-35.png new file mode 100644 index 0000000..6a45370 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__36-45.png new file mode 100644 index 0000000..beb3557 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__46-50.png new file mode 100644 index 0000000..8f49259 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__51-55.png new file mode 100644 index 0000000..e24b95c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__56-60.png new file mode 100644 index 0000000..88b0b0f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__61-65.png new file mode 100644 index 0000000..5b103a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__66.png new file mode 100644 index 0000000..c007b95 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__67-70.png new file mode 100644 index 0000000..2183b81 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__71-75.png new file mode 100644 index 0000000..5e570ca Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__76-80.png new file mode 100644 index 0000000..ecaea99 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__81-85.png new file mode 100644 index 0000000..8d32c74 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__86-90.png new file mode 100644 index 0000000..d7ce75e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__91-95.png new file mode 100644 index 0000000..2b92793 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__96-99.png new file mode 100644 index 0000000..4673ffc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/mana/fragments.json new file mode 100644 index 0000000..231c871 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/mana/fragments.json @@ -0,0 +1,5612 @@ +[ + { + "PageNumber": 1, + "Top": 117, + "Left": 216, + "Width": 8, + "Height": 10, + "Text": "A", + "Confidence": null, + "CenterX": 220 + }, + { + "PageNumber": 1, + "Top": 117, + "Left": 344, + "Width": 8, + "Height": 10, + "Text": "B", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 117, + "Left": 468, + "Width": 8, + "Height": 10, + "Text": "C", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 117, + "Left": 591, + "Width": 8, + "Height": 10, + "Text": "D", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 117, + "Left": 717, + "Width": 7, + "Height": 10, + "Text": "E", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 155, + "Width": 121, + "Height": 8, + "Text": "Lots of fireworks, but little effect.", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 288, + "Width": 89, + "Height": 8, + "Text": "Somewhere a bell tolls.", + "Confidence": null, + "CenterX": 332.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 411, + "Width": 47, + "Height": 8, + "Text": "Weak blast.", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 535, + "Width": 226, + "Height": 8, + "Text": "Foe dances around your blast. Foe does damage trying to", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 658, + "Width": 28, + "Height": 8, + "Text": "dodge.", + "Confidence": null, + "CenterX": 672 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 270, + "Width": 16, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 393, + "Width": 16, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 516, + "Width": 16, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 524 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 639, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 768, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 776 + }, + { + "PageNumber": 1, + "Top": 164, + "Left": 155, + "Width": 83, + "Height": 8, + "Text": "Power flows over foe.", + "Confidence": null, + "CenterX": 196.5 + }, + { + "PageNumber": 1, + "Top": 164, + "Left": 288, + "Width": 101, + "Height": 8, + "Text": "Foe is singed by the mana", + "Confidence": null, + "CenterX": 338.5 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 288, + "Width": 22, + "Height": 8, + "Text": "blast.", + "Confidence": null, + "CenterX": 299 + }, + { + "PageNumber": 1, + "Top": 164, + "Left": 411, + "Width": 113, + "Height": 8, + "Text": "A few extra sparks startle foe.", + "Confidence": null, + "CenterX": 467.5 + }, + { + "PageNumber": 1, + "Top": 164, + "Left": 535, + "Width": 116, + "Height": 8, + "Text": "Foe must have mana repellant", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 535, + "Width": 97, + "Height": 8, + "Text": "on! Why didn\u0027t that work?", + "Confidence": null, + "CenterX": 583.5 + }, + { + "PageNumber": 1, + "Top": 164, + "Left": 658, + "Width": 116, + "Height": 8, + "Text": "Foe dodges, but loses ground.", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 174, + "Left": 658, + "Width": 125, + "Height": 8, + "Text": "You have the iniative next round.", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 270, + "Width": 16, + "Height": 8, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 393, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 516, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 524 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 639, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 768, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 776 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 155, + "Width": 110, + "Height": 8, + "Text": "Foe\u0027s eyes are filled with raw", + "Confidence": null, + "CenterX": 210 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 155, + "Width": 130, + "Height": 8, + "Text": "power. You have the initiative next", + "Confidence": null, + "CenterX": 220 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 155, + "Width": 26, + "Height": 8, + "Text": "round.", + "Confidence": null, + "CenterX": 168 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 288, + "Width": 110, + "Height": 8, + "Text": "Foe is shaken by the force of", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 288, + "Width": 93, + "Height": 8, + "Text": "your blast. You have the", + "Confidence": null, + "CenterX": 334.5 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 288, + "Width": 77, + "Height": 8, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 326.5 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 411, + "Width": 121, + "Height": 8, + "Text": "Foe is impressed, but you know", + "Confidence": null, + "CenterX": 471.5 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 411, + "Width": 86, + "Height": 8, + "Text": "your blast was nothing", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 411, + "Width": 100, + "Height": 8, + "Text": "spectacular. You have the", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 535, + "Width": 113, + "Height": 8, + "Text": "Foe is completely surrounded", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 535, + "Width": 93, + "Height": 8, + "Text": "by mana; he seems only", + "Confidence": null, + "CenterX": 581.5 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 535, + "Width": 121, + "Height": 8, + "Text": "shaken. You have initiative next", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 197, + "Left": 658, + "Width": 114, + "Height": 8, + "Text": "The quick flash of light makes", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 208, + "Left": 658, + "Width": 102, + "Height": 8, + "Text": "foe cautious. You have the", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 219, + "Left": 658, + "Width": 77, + "Height": 8, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 696.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 270, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 393, + "Width": 16, + "Height": 8, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 516, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 524 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 639, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 711, + "Width": 72, + "Height": 8, + "Text": "\u002B7H - \u002B(4d10-30)P", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 155, + "Width": 128, + "Height": 8, + "Text": "Blast shakes foe to the bone. You", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 253, + "Left": 155, + "Width": 112, + "Height": 8, + "Text": "have the initiative next round.", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 288, + "Width": 110, + "Height": 8, + "Text": "Foe cannot evade. You have", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 253, + "Left": 288, + "Width": 107, + "Height": 8, + "Text": "the initiative for the next two", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 411, + "Width": 100, + "Height": 8, + "Text": "Foe gets an unusual rash.", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 253, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "You have the initiative next", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 535, + "Width": 116, + "Height": 8, + "Text": "Foe attacks the blast itself and", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 253, + "Left": 535, + "Width": 66, + "Height": 8, + "Text": "it seems to work!", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 658, + "Width": 126, + "Height": 8, + "Text": "Foe is taken aback by your fierce", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 253, + "Left": 658, + "Width": 45, + "Height": 8, + "Text": "expression.", + "Confidence": null, + "CenterX": 680.5 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 270, + "Width": 16, + "Height": 8, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 393, + "Width": 16, + "Height": 8, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 516, + "Width": 16, + "Height": 8, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 524 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 567, + "Width": 25, + "Height": 8, + "Text": "\u002B7H -", + "Confidence": null, + "CenterX": 579.5 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 592, + "Width": 8, + "Height": 8, + "Text": "\uF072", + "Confidence": null, + "CenterX": 596 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-24)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 697, + "Width": 25, + "Height": 8, + "Text": "\u002B8H -", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 265, + "Left": 723, + "Width": 8, + "Height": 8, + "Text": "\uF072", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 266, + "Left": 731, + "Width": 52, + "Height": 8, + "Text": "-\u002B(4d10-28)P", + "Confidence": null, + "CenterX": 757 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 155, + "Width": 131, + "Height": 8, + "Text": "Foe\u0027s gear begins to glow from the", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 155, + "Width": 31, + "Height": 8, + "Text": "assault!", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 288, + "Width": 107, + "Height": 8, + "Text": "The blast rattles foe\u0027s armor", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 288, + "Width": 84, + "Height": 8, + "Text": "(which must check for", + "Confidence": null, + "CenterX": 330 + }, + { + "PageNumber": 1, + "Top": 298, + "Left": 288, + "Width": 111, + "Height": 8, + "Text": "breakage). For a moment the", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 308, + "Left": 288, + "Width": 51, + "Height": 8, + "Text": "armor glows.", + "Confidence": null, + "CenterX": 313.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "This fancy lightshow makes foe", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 411, + "Width": 118, + "Height": 8, + "Text": "wary of you. His equipment will", + "Confidence": null, + "CenterX": 470 + }, + { + "PageNumber": 1, + "Top": 298, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "glow for the next d10 days.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 535, + "Width": 96, + "Height": 8, + "Text": "Good blast causes foe to", + "Confidence": null, + "CenterX": 583 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 535, + "Width": 67, + "Height": 8, + "Text": "stagger. He won\u0027t", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 298, + "Left": 535, + "Width": 94, + "Height": 8, + "Text": "underestimate you again.", + "Confidence": null, + "CenterX": 582 + }, + { + "PageNumber": 1, + "Top": 277, + "Left": 658, + "Width": 123, + "Height": 8, + "Text": "You force foe back, but he is not", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 287, + "Left": 658, + "Width": 128, + "Height": 8, + "Text": "as seriously damaged as you had", + "Confidence": null, + "CenterX": 722 + }, + { + "PageNumber": 1, + "Top": 298, + "Left": 658, + "Width": 26, + "Height": 8, + "Text": "hoped.", + "Confidence": null, + "CenterX": 671 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 270, + "Width": 16, + "Height": 8, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 393, + "Width": 16, + "Height": 8, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 445, + "Width": 25, + "Height": 8, + "Text": "\u002B8H -", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 470, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 477, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-18)P", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 570, + "Width": 25, + "Height": 8, + "Text": "\u002B9H -", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 595, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 598.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 603, + "Width": 52, + "Height": 8, + "Text": "- \u002B(3d10-21)P", + "Confidence": null, + "CenterX": 629 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 687, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 2", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 721, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 322, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-25)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 155, + "Width": 124, + "Height": 8, + "Text": "Raw mana ripples foe\u0027s exposed", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 155, + "Width": 104, + "Height": 8, + "Text": "skin. He is easily distracted.", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 288, + "Width": 121, + "Height": 8, + "Text": "Foe\u0027s shield begins to melt from", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 288, + "Width": 115, + "Height": 8, + "Text": "the blast. Unless he drops it, it", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 355, + "Left": 288, + "Width": 49, + "Height": 8, + "Text": "will burn him.", + "Confidence": null, + "CenterX": 312.5 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 411, + "Width": 113, + "Height": 8, + "Text": "Foe legs get weak from the of", + "Confidence": null, + "CenterX": 467.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "the blast. You gain the initiative", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 355, + "Left": 411, + "Width": 100, + "Height": 8, + "Text": "while he tries to regain his", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 411, + "Width": 32, + "Height": 8, + "Text": "balance.", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 535, + "Width": 112, + "Height": 8, + "Text": "A wave of mana washes over", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 535, + "Width": 116, + "Height": 8, + "Text": "foe. Any exposed skin is given", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 355, + "Left": 535, + "Width": 121, + "Height": 8, + "Text": "a good sunburn. He doesn\u0027t feel", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 535, + "Width": 32, + "Height": 8, + "Text": "so good.", + "Confidence": null, + "CenterX": 551 + }, + { + "PageNumber": 1, + "Top": 333, + "Left": 658, + "Width": 109, + "Height": 8, + "Text": "Something in foe\u0027s backpack", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 344, + "Left": 658, + "Width": 113, + "Height": 8, + "Text": "seems to attract the blast. His", + "Confidence": null, + "CenterX": 714.5 + }, + { + "PageNumber": 1, + "Top": 355, + "Left": 658, + "Width": 114, + "Height": 8, + "Text": "neck and shoulders are lightly", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 658, + "Width": 29, + "Height": 8, + "Text": "burned.", + "Confidence": null, + "CenterX": 672.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 252, + "Width": 25, + "Height": 8, + "Text": "\u002B7H -", + "Confidence": null, + "CenterX": 264.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 277, + "Width": 8, + "Height": 8, + "Text": "\uF072", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 321, + "Width": 25, + "Height": 8, + "Text": "\u002B8H -", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 378, + "Left": 347, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 354, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-18)P", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 445, + "Width": 25, + "Height": 8, + "Text": "\u002B9H -", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 378, + "Left": 470, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 477, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-16)P", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 2", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 378, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-20)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 687, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 3", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 378, + "Left": 721, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-24)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 155, + "Width": 122, + "Height": 8, + "Text": "Foe\u0027s shirt now glows magically.", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 288, + "Width": 113, + "Height": 8, + "Text": "Foe dodges most of the blast,", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 288, + "Width": 57, + "Height": 8, + "Text": "but not all of it.", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 411, + "Width": 94, + "Height": 8, + "Text": "The raw power slaps foe", + "Confidence": null, + "CenterX": 458 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 411, + "Width": 122, + "Height": 8, + "Text": "around. All exposed skin suffers", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 411, + "Width": 77, + "Height": 8, + "Text": "from a mild sunburn.", + "Confidence": null, + "CenterX": 449.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 535, + "Width": 106, + "Height": 8, + "Text": "Foe is surprised by the pain", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 535, + "Width": 109, + "Height": 8, + "Text": "from your blast. He is having", + "Confidence": null, + "CenterX": 589.5 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 535, + "Width": 119, + "Height": 8, + "Text": "difficulty focussing his attention", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 535, + "Width": 27, + "Height": 8, + "Text": "on you.", + "Confidence": null, + "CenterX": 548.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 658, + "Width": 102, + "Height": 8, + "Text": "Blast strikes foe\u0027s weapon.", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 401, + "Left": 658, + "Width": 116, + "Height": 8, + "Text": "Wooden weapon is destroyed.", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 658, + "Width": 119, + "Height": 8, + "Text": "Metal weapon becomes too hot", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 658, + "Width": 28, + "Height": 8, + "Text": "to hold.", + "Confidence": null, + "CenterX": 672 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 208, + "Width": 25, + "Height": 8, + "Text": "\u002B8H -", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-9)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 321, + "Width": 25, + "Height": 8, + "Text": "\u002B9H -", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 347, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 354, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-16)P", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 435, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 2", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 470, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 477, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-14)P", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 3", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-19)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 687, + "Width": 35, + "Height": 8, + "Text": "\u002B13H - 4", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 434, + "Left": 721, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 436, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-24)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 155, + "Width": 133, + "Height": 8, + "Text": "A random piece of foe\u0027s equipment", + "Confidence": null, + "CenterX": 221.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 155, + "Width": 115, + "Height": 8, + "Text": "bursts from the influx of power.", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 288, + "Width": 120, + "Height": 8, + "Text": "Foe ducks, but the blast hits his", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 288, + "Width": 108, + "Height": 8, + "Text": "back. He is falls forward, but", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 288, + "Width": 54, + "Height": 8, + "Text": "keeps his feet.", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 411, + "Width": 120, + "Height": 8, + "Text": "Foe turns to avoid the blast and", + "Confidence": null, + "CenterX": 471 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 411, + "Width": 116, + "Height": 8, + "Text": "takes the full force on his side.", + "Confidence": null, + "CenterX": 469 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 411, + "Width": 78, + "Height": 8, + "Text": "Armor does not help.", + "Confidence": null, + "CenterX": 450 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 535, + "Width": 100, + "Height": 8, + "Text": "Good blast. Foe thinks his", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 535, + "Width": 106, + "Height": 8, + "Text": "clothes are ablaze and runs", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "aimlessly about for 3 rounds.", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 658, + "Width": 118, + "Height": 8, + "Text": "The raw power is seeking foe\u0027s", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 658, + "Width": 114, + "Height": 8, + "Text": "heart. He frantically scampers", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 658, + "Width": 96, + "Height": 8, + "Text": "back. His chest is burned.", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 208, + "Width": 25, + "Height": 8, + "Text": "\u002B9H -", + "Confidence": null, + "CenterX": 220.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-8)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 317, + "Width": 30, + "Height": 8, + "Text": "\u002B9H - 2", + "Confidence": null, + "CenterX": 332 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 347, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 354, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-14)P", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 435, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 4", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 470, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 477, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-12)P", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 4", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-18)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 673, + "Width": 35, + "Height": 8, + "Text": "\u002B14H - 3", + "Confidence": null, + "CenterX": 690.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 708, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 715, + "Width": 7, + "Height": 8, + "Text": "-", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 480, + "Left": 723, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 726 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-22)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 155, + "Width": 103, + "Height": 8, + "Text": "Foe\u0027s hair is now magically", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 155, + "Width": 127, + "Height": 8, + "Text": "imbued! If he does not wear a hat", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 155, + "Width": 128, + "Height": 8, + "Text": "(or helm), his head will glow like a", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 155, + "Width": 28, + "Height": 8, + "Text": "lantern.", + "Confidence": null, + "CenterX": 169 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 288, + "Width": 112, + "Height": 8, + "Text": "Mana engulfs foe completely.", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 288, + "Width": 94, + "Height": 8, + "Text": "When the blast ends, he", + "Confidence": null, + "CenterX": 335 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 288, + "Width": 103, + "Height": 8, + "Text": "realizes that he is not dead.", + "Confidence": null, + "CenterX": 339.5 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 411, + "Width": 94, + "Height": 8, + "Text": "Strong blast to foe\u0027s legs", + "Confidence": null, + "CenterX": 458 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 411, + "Width": 104, + "Height": 8, + "Text": "knocks him back 5 feet. He", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 411, + "Width": 98, + "Height": 8, + "Text": "doesn\u0027t know what hit him.", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 535, + "Width": 119, + "Height": 8, + "Text": "Foe staggers to get clear of the", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 535, + "Width": 101, + "Height": 8, + "Text": "blast that has targetted his", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 535, + "Width": 21, + "Height": 8, + "Text": "head.", + "Confidence": null, + "CenterX": 545.5 + }, + { + "PageNumber": 1, + "Top": 492, + "Left": 658, + "Width": 108, + "Height": 8, + "Text": "Blast targets foe\u0027s neck. Any", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 503, + "Left": 658, + "Width": 114, + "Height": 8, + "Text": "neck gear is melted away and", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 513, + "Left": 658, + "Width": 108, + "Height": 8, + "Text": "clothes on the shoulders are", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 658, + "Width": 60, + "Height": 8, + "Text": "partially burned.", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 198, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 2", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 536, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-7)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 312, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 3", + "Confidence": null, + "CenterX": 329.5 + }, + { + "PageNumber": 1, + "Top": 536, + "Left": 347, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 354, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-12)P", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 438, + "Width": 32, + "Height": 8, + "Text": "\u002B11H -3", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 536, + "Left": 470, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 477, + "Width": 54, + "Height": 8, + "Text": "- \u002B(2d10-10)P", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 2", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 536, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-17)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 687, + "Width": 35, + "Height": 8, + "Text": "\u002B16H - 4", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 536, + "Left": 721, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 538, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-20)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 155, + "Width": 126, + "Height": 8, + "Text": "Foe\u0027s left side is hit, spinning him", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 155, + "Width": 127, + "Height": 8, + "Text": "around. Any object held in the left", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 155, + "Width": 96, + "Height": 8, + "Text": "hand is now permanently", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 155, + "Width": 38, + "Height": 8, + "Text": "damaged.", + "Confidence": null, + "CenterX": 174 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 288, + "Width": 115, + "Height": 8, + "Text": "Focussed blast melts foe\u0027s leg", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 288, + "Width": 116, + "Height": 8, + "Text": "armor. The blast is short-lived,", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 288, + "Width": 86, + "Height": 8, + "Text": "but armor is now gone.", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 411, + "Width": 114, + "Height": 8, + "Text": "Raw magic completely covers", + "Confidence": null, + "CenterX": 468 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 411, + "Width": 122, + "Height": 8, + "Text": "foe. He almost loses his footing.", + "Confidence": null, + "CenterX": 472 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 411, + "Width": 86, + "Height": 8, + "Text": "He thinks he is on fire.", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 535, + "Width": 120, + "Height": 8, + "Text": "Powerlul blast disarms foe. The", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 535, + "Width": 106, + "Height": 8, + "Text": "mana seems to cling to foe,", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "making him glow for a while.", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 658, + "Width": 111, + "Height": 8, + "Text": "Raw power strikes foe\u0027s legs.", + "Confidence": null, + "CenterX": 713.5 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 658, + "Width": 127, + "Height": 8, + "Text": "They begin to feel like runny jello.", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 658, + "Width": 119, + "Height": 8, + "Text": "skin is burned and muscles are", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 581, + "Left": 658, + "Width": 38, + "Height": 8, + "Text": "damaged.", + "Confidence": null, + "CenterX": 677 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 198, + "Width": 35, + "Height": 8, + "Text": "\u002B10H - 3", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-6)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 298, + "Width": 32, + "Height": 8, + "Text": "\u002B10H- 2", + "Confidence": null, + "CenterX": 314 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 331, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 334.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 338, + "Width": 7, + "Height": 8, + "Text": "-", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 346, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 352, + "Width": 57, + "Height": 8, + "Text": "- \u002B (2d10-11)P", + "Confidence": null, + "CenterX": 380.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 420, + "Width": 31, + "Height": 7, + "Text": "\u002B11H - 3", + "Confidence": null, + "CenterX": 435.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 450, + "Width": 7, + "Height": 8, + "Text": "\uF052", + "Confidence": null, + "CenterX": 453.5 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 457, + "Width": 7, + "Height": 7, + "Text": "-", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 464, + "Width": 6, + "Height": 8, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 467 + }, + { + "PageNumber": 1, + "Top": 596, + "Left": 469, + "Width": 63, + "Height": 7, + "Text": "- (-5) - \u002B(2d10-9)P", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B14H - 7", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 600, + "Width": 96, + "Height": 8, + "Text": "- \u002B(3d10-14)P \u002B16H - 5", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 696, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 699.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 704, + "Width": 80, + "Height": 8, + "Text": "- (-10) - \u002B(4d10-16)P", + "Confidence": null, + "CenterX": 744 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 155, + "Width": 112, + "Height": 8, + "Text": "Mana completely engulfs foe,", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 155, + "Width": 122, + "Height": 8, + "Text": "making him stumble backwards.", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 288, + "Width": 97, + "Height": 8, + "Text": "Foe throws himself to the", + "Confidence": null, + "CenterX": 336.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 288, + "Width": 111, + "Height": 8, + "Text": "ground to avoid the blast, but", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 288, + "Width": 96, + "Height": 8, + "Text": "the blast hits him anyway.", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 411, + "Width": 116, + "Height": 8, + "Text": "Powerful blast to foe\u0027s weapon", + "Confidence": null, + "CenterX": 469 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 411, + "Width": 105, + "Height": 8, + "Text": "arm spins him around twice", + "Confidence": null, + "CenterX": 463.5 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 411, + "Width": 110, + "Height": 8, + "Text": "before he falls to the ground.", + "Confidence": null, + "CenterX": 466 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 535, + "Width": 122, + "Height": 8, + "Text": "Foe closes his eyes too late! He", + "Confidence": null, + "CenterX": 596 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 535, + "Width": 116, + "Height": 8, + "Text": "is blinded for 2d10 rounds and", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 535, + "Width": 110, + "Height": 8, + "Text": "has severe burns on his face.", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 606, + "Left": 658, + "Width": 118, + "Height": 8, + "Text": "Foe will glow for d10 hours. He", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 658, + "Width": 124, + "Height": 8, + "Text": "screams in pain, drops, and dies", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 627, + "Left": 658, + "Width": 44, + "Height": 8, + "Text": "in 6 rounds.", + "Confidence": null, + "CenterX": 680 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 174, + "Width": 30, + "Height": 8, + "Text": "\u002B10H -", + "Confidence": null, + "CenterX": 189 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 204, + "Width": 14, + "Height": 9, + "Text": "\uF052\uF06C", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 218, + "Width": 67, + "Height": 8, + "Text": "- (-10) - \u002B(2d10)P", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 324, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 5", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 359, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 362.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 366, + "Width": 42, + "Height": 8, + "Text": "- \u002B(2d10)P", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 447, + "Width": 35, + "Height": 8, + "Text": "\u002B13H - 3", + "Confidence": null, + "CenterX": 464.5 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 482, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 485.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 490, + "Width": 42, + "Height": 8, + "Text": "- \u002B(3d10)P", + "Confidence": null, + "CenterX": 511 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 573, + "Width": 12, + "Height": 8, + "Text": "15", + "Confidence": null, + "CenterX": 579 + }, + { + "PageNumber": 1, + "Top": 639, + "Left": 585, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 592, + "Width": 63, + "Height": 8, + "Text": "- (-5) - \u002B(4d10)P", + "Confidence": null, + "CenterX": 623.5 + }, + { + "PageNumber": 1, + "Top": 640, + "Left": 718, + "Width": 65, + "Height": 8, + "Text": "\u002B26H - (\u002B5d10)P", + "Confidence": null, + "CenterX": 750.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 155, + "Width": 122, + "Height": 8, + "Text": "Foe spins to avoid the blast. His", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 155, + "Width": 126, + "Height": 8, + "Text": "side glows for a moment. Any old", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 155, + "Width": 90, + "Height": 8, + "Text": "wounds are aggrevated.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 288, + "Width": 109, + "Height": 8, + "Text": "Foe cannot evade the strike.", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 288, + "Width": 112, + "Height": 8, + "Text": "Mana invades foe\u0027s garments", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 288, + "Width": 90, + "Height": 8, + "Text": "and equipment; making", + "Confidence": null, + "CenterX": 333 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 288, + "Width": 110, + "Height": 8, + "Text": "everything glow for 6 rounds.", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "Foe attempts to dodge, the", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "blast, but trips. He drops to one", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "knee, but rises quickly. His skin", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 411, + "Width": 31, + "Height": 8, + "Text": "blisters.", + "Confidence": null, + "CenterX": 426.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 535, + "Width": 102, + "Height": 8, + "Text": "Foe can be quite acrobatic", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 535, + "Width": 120, + "Height": 8, + "Text": "when he wants to be. He jumps", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 535, + "Width": 114, + "Height": 8, + "Text": "away from your blast, but falls", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 535, + "Width": 119, + "Height": 8, + "Text": "to the ground in doing so. He is", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 535, + "Width": 67, + "Height": 8, + "Text": "prone for 1 round.", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 658, + "Width": 119, + "Height": 8, + "Text": "The blast completely destroyed", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 658, + "Width": 116, + "Height": 8, + "Text": "anything organic in foe\u0027s hand.", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 658, + "Width": 125, + "Height": 8, + "Text": "Non-organic materials are turned", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 658, + "Width": 29, + "Height": 8, + "Text": "to slag.", + "Confidence": null, + "CenterX": 672.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 183, + "Width": 30, + "Height": 8, + "Text": "\u002B9H - 3", + "Confidence": null, + "CenterX": 198 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 213, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 220, + "Width": 65, + "Height": 8, + "Text": "- (-5) - \u002B(d10-6)P", + "Confidence": null, + "CenterX": 252.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 362, + "Width": 13, + "Height": 8, + "Text": "( )", + "Confidence": null, + "CenterX": 368.5 + }, + { + "PageNumber": 1, + "Top": 699, + "Left": 387, + "Width": 2, + "Height": 7, + "Text": "(", + "Confidence": null, + "CenterX": 388 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 393, + "Width": 16, + "Height": 7, + "Text": "10)P", + "Confidence": null, + "CenterX": 401 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 429, + "Width": 7, + "Height": 8, + "Text": "3", + "Confidence": null, + "CenterX": 432.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 436, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 439.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 443, + "Width": 7, + "Height": 8, + "Text": "-", + "Confidence": null, + "CenterX": 446.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 451, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-10) - \u002B(2d10-8)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 558, + "Width": 35, + "Height": 8, + "Text": "\u002B16H - 3", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 593, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 600, + "Width": 54, + "Height": 8, + "Text": "- \u002B(3d10-13)P", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 691, + "Width": 7, + "Height": 8, + "Text": "5", + "Confidence": null, + "CenterX": 694.5 + }, + { + "PageNumber": 1, + "Top": 707, + "Left": 698, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 701.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 706, + "Width": 77, + "Height": 8, + "Text": "- (-10) - \u002B(4d10-14)P", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 155, + "Width": 107, + "Height": 8, + "Text": "Raw mana melts away foe\u0027s", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 155, + "Width": 104, + "Height": 8, + "Text": "clothing and singes his hair.", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 288, + "Width": 120, + "Height": 8, + "Text": "Mana blast is strong around the", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 288, + "Width": 120, + "Height": 8, + "Text": "edges, damaging foe\u0027s arm and", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 288, + "Width": 100, + "Height": 8, + "Text": "leg armor. Everything else", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 288, + "Width": 37, + "Height": 8, + "Text": "heats up.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 411, + "Width": 111, + "Height": 8, + "Text": "Quick blast hits foe directly in", + "Confidence": null, + "CenterX": 466.5 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "the chest. Organic armor is", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 411, + "Width": 112, + "Height": 8, + "Text": "immediately destroyed. Metal", + "Confidence": null, + "CenterX": 467 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 411, + "Width": 47, + "Height": 8, + "Text": "armor melts.", + "Confidence": null, + "CenterX": 434.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 535, + "Width": 92, + "Height": 8, + "Text": "Mana blast causes foe\u0027s", + "Confidence": null, + "CenterX": 581 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 535, + "Width": 121, + "Height": 8, + "Text": "nervous system to ovedoad. He", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 535, + "Width": 106, + "Height": 8, + "Text": "suffers nerve damage in his", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 535, + "Width": 49, + "Height": 8, + "Text": "weapon arm.", + "Confidence": null, + "CenterX": 559.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 658, + "Width": 114, + "Height": 8, + "Text": "Chest strike knocks foe down.", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 658, + "Width": 113, + "Height": 8, + "Text": "Any chest armor is destroyed.", + "Confidence": null, + "CenterX": 714.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 658, + "Width": 122, + "Height": 8, + "Text": "The raw mana crackles over foe.", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 204, + "Width": 30, + "Height": 8, + "Text": "\u002B13H -", + "Confidence": null, + "CenterX": 219 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 234, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 237 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 240, + "Width": 82, + "Height": 8, + "Text": "- \u002B(d10-5)P \u002B10H -", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 323, + "Width": 14, + "Height": 9, + "Text": "\uF052\uF06C", + "Confidence": null, + "CenterX": 330 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 336, + "Width": 72, + "Height": 8, + "Text": "- (\u002B10)-\u002B(2d10-8)P", + "Confidence": null, + "CenterX": 372 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 442, + "Width": 7, + "Height": 8, + "Text": "8", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-10) - \u002B(2d10-6)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 559, + "Width": 7, + "Height": 8, + "Text": "5", + "Confidence": null, + "CenterX": 562.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 566, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 573, + "Width": 123, + "Height": 8, + "Text": "- (-45) - \u002B(3d10-11 )P \u002B16H - 6", + "Confidence": null, + "CenterX": 634.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 696, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 699.5 + }, + { + "PageNumber": 1, + "Top": 765, + "Left": 704, + "Width": 80, + "Height": 8, + "Text": "- (-55) - \u002B(4d10-12)P", + "Confidence": null, + "CenterX": 744 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 155, + "Width": 127, + "Height": 8, + "Text": "Foe\u0027s right arm is targetted by the", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 155, + "Width": 101, + "Height": 8, + "Text": "blast. Any weapon there is", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 797, + "Left": 155, + "Width": 38, + "Height": 8, + "Text": "damaged.", + "Confidence": null, + "CenterX": 174 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 288, + "Width": 108, + "Height": 8, + "Text": "Foe\u0027s waist is gripped by the", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 288, + "Width": 91, + "Height": 8, + "Text": "blast. He finds it hard to", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 797, + "Left": 288, + "Width": 33, + "Height": 8, + "Text": "breathe.", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 411, + "Width": 102, + "Height": 8, + "Text": "Strike proves fatal for foe\u0027s", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 411, + "Width": 114, + "Height": 8, + "Text": "hand. One hand is completely", + "Confidence": null, + "CenterX": 468 + }, + { + "PageNumber": 1, + "Top": 797, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "useless (and scarred). Clothing", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 807, + "Left": 411, + "Width": 48, + "Height": 8, + "Text": "is destroyed.", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 535, + "Width": 122, + "Height": 8, + "Text": "Blast goes right through foe. His", + "Confidence": null, + "CenterX": 596 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 535, + "Width": 97, + "Height": 8, + "Text": "abdomen is badly burned.", + "Confidence": null, + "CenterX": 583.5 + }, + { + "PageNumber": 1, + "Top": 776, + "Left": 658, + "Width": 112, + "Height": 8, + "Text": "The magical forces fuse all of", + "Confidence": null, + "CenterX": 714 + }, + { + "PageNumber": 1, + "Top": 786, + "Left": 658, + "Width": 127, + "Height": 8, + "Text": "foe\u0027s fingers into one appendage.", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 797, + "Left": 658, + "Width": 111, + "Height": 8, + "Text": "The skin on his arms is badly", + "Confidence": null, + "CenterX": 713.5 + }, + { + "PageNumber": 1, + "Top": 807, + "Left": 658, + "Width": 30, + "Height": 8, + "Text": "scarred.", + "Confidence": null, + "CenterX": 673 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 185, + "Width": 35, + "Height": 8, + "Text": "\u002B11H - 3", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 219, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 222.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 227, + "Width": 7, + "Height": 8, + "Text": "-", + "Confidence": null, + "CenterX": 230.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 234, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 237 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-4)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 314, + "Width": 35, + "Height": 8, + "Text": "\u002B21H - 2", + "Confidence": null, + "CenterX": 331.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 349, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 357, + "Width": 52, + "Height": 8, + "Text": "- \u002B(2d10-6) P", + "Confidence": null, + "CenterX": 383 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 442, + "Width": 7, + "Height": 8, + "Text": "5", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-35) - \u002B(2d10-5)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 572, + "Width": 7, + "Height": 8, + "Text": "7", + "Confidence": null, + "CenterX": 575.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 579, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 582.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 587, + "Width": 12, + "Height": 8, + "Text": "- 3", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 599, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 602 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 605, + "Width": 50, + "Height": 8, + "Text": "- \u002B(3d10-9)P", + "Confidence": null, + "CenterX": 630 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 684, + "Width": 37, + "Height": 8, + "Text": "\u002B21H -11", + "Confidence": null, + "CenterX": 702.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 721, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 729, + "Width": 54, + "Height": 8, + "Text": "- \u002B(4d10-10)P", + "Confidence": null, + "CenterX": 756 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 155, + "Width": 124, + "Height": 8, + "Text": "Foe ducks to avoid the blast, but", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 155, + "Width": 107, + "Height": 8, + "Text": "takes it full in the face. He is", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 155, + "Width": 56, + "Height": 8, + "Text": "knocked down.", + "Confidence": null, + "CenterX": 183 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 288, + "Width": 120, + "Height": 8, + "Text": "Forceful blast knocks foe down.", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 288, + "Width": 111, + "Height": 8, + "Text": "All equipment must check for", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 288, + "Width": 37, + "Height": 8, + "Text": "breakage.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 411, + "Width": 98, + "Height": 8, + "Text": "Massive blast destroys all", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 411, + "Width": 111, + "Height": 8, + "Text": "leather covers on foe; though", + "Confidence": null, + "CenterX": 466.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 411, + "Width": 120, + "Height": 8, + "Text": "foe stumbles clear of the rest of", + "Confidence": null, + "CenterX": 471 + }, + { + "PageNumber": 1, + "Top": 864, + "Left": 411, + "Width": 34, + "Height": 8, + "Text": "the blast.", + "Confidence": null, + "CenterX": 428 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 535, + "Width": 101, + "Height": 8, + "Text": "Blast grabs foe around the", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 535, + "Width": 115, + "Height": 8, + "Text": "chest. Any armor on the upper", + "Confidence": null, + "CenterX": 592.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "arms and chest is destroyed.", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 658, + "Width": 125, + "Height": 8, + "Text": "The raw magic enter foe\u0027s mouth", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 843, + "Left": 658, + "Width": 127, + "Height": 8, + "Text": "and fills him up. He glows brightly", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 853, + "Left": 658, + "Width": 91, + "Height": 8, + "Text": "for 12 rounds, then dies.", + "Confidence": null, + "CenterX": 703.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 178, + "Width": 30, + "Height": 8, + "Text": "\u002B9H - 3", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 208, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 215, + "Width": 70, + "Height": 8, + "Text": "- (-15) - \u002B(d10-3)P", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 344, + "Width": 7, + "Height": 8, + "Text": "2", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 352, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 359, + "Width": 50, + "Height": 8, + "Text": "- \u002B(2d10-4)P", + "Confidence": null, + "CenterX": 384 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 442, + "Width": 7, + "Height": 8, + "Text": "2", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-15) - \u002B(2d10-3)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 563, + "Width": 35, + "Height": 8, + "Text": "\u002B16H - 8", + "Confidence": null, + "CenterX": 580.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 598, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 605, + "Width": 50, + "Height": 8, + "Text": "- \u002B(3d10-6)P", + "Confidence": null, + "CenterX": 630 + }, + { + "PageNumber": 1, + "Top": 878, + "Left": 711, + "Width": 72, + "Height": 8, + "Text": "\u002B21H - \u002B(4d10-8)P", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 155, + "Width": 122, + "Height": 8, + "Text": "Foe is blasted backwards by the", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 155, + "Width": 132, + "Height": 8, + "Text": "blast. He tries to stand, but one leg", + "Confidence": null, + "CenterX": 221 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 155, + "Width": 124, + "Height": 8, + "Text": "refuses to operate (paralyzed for", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 921, + "Left": 155, + "Width": 47, + "Height": 8, + "Text": "d10 rounds).", + "Confidence": null, + "CenterX": 178.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 288, + "Width": 108, + "Height": 8, + "Text": "All leg coverings are blasted", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 288, + "Width": 96, + "Height": 8, + "Text": "away. Skin underneath is", + "Confidence": null, + "CenterX": 336 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 288, + "Width": 62, + "Height": 8, + "Text": "severely burned.", + "Confidence": null, + "CenterX": 319 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 411, + "Width": 117, + "Height": 8, + "Text": "Foe\u0027s shield arm no longer has", + "Confidence": null, + "CenterX": 469.5 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 411, + "Width": 106, + "Height": 8, + "Text": "any flesh (and is completely", + "Confidence": null, + "CenterX": 464 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 411, + "Width": 110, + "Height": 8, + "Text": "useless). His head, side, and", + "Confidence": null, + "CenterX": 466 + }, + { + "PageNumber": 1, + "Top": 921, + "Left": 411, + "Width": 107, + "Height": 8, + "Text": "legs are burned. If foe has a", + "Confidence": null, + "CenterX": 464.5 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 411, + "Width": 81, + "Height": 8, + "Text": "shield, it is destroyed.", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 535, + "Width": 118, + "Height": 8, + "Text": "Powerlul blast to foe. If foe has", + "Confidence": null, + "CenterX": 594 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 535, + "Width": 122, + "Height": 8, + "Text": "abdominal armor, he is knocked", + "Confidence": null, + "CenterX": 596 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 535, + "Width": 121, + "Height": 8, + "Text": "out. If not, he dies in 12 inactive", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 921, + "Left": 535, + "Width": 104, + "Height": 8, + "Text": "rounds from organ damage.", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 889, + "Left": 658, + "Width": 109, + "Height": 8, + "Text": "Massive fluxes of mana fuse", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 900, + "Left": 658, + "Width": 123, + "Height": 8, + "Text": "foe\u0027s kneecaps to the leg bones.", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 910, + "Left": 658, + "Width": 108, + "Height": 8, + "Text": "Foe will die in 9 rounds from", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 921, + "Left": 658, + "Width": 102, + "Height": 8, + "Text": "shock and nervous system", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 931, + "Left": 658, + "Width": 35, + "Height": 8, + "Text": "overload.", + "Confidence": null, + "CenterX": 675.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 193, + "Width": 93, + "Height": 8, + "Text": "\u002B11H - 2(-5) - \u002B(d10-2)P", + "Confidence": null, + "CenterX": 239.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 317, + "Width": 35, + "Height": 8, + "Text": "\u002B17H - 2", + "Confidence": null, + "CenterX": 334.5 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 352, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 359, + "Width": 90, + "Height": 8, + "Text": "- \u002B(2d10-3)P \u002B16H - 8", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 945, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-80) - \u002B(2d10-2)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 587, + "Width": 68, + "Height": 8, + "Text": "\u002B1H - \u002B(3d10-5)P", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 946, + "Left": 711, + "Width": 72, + "Height": 8, + "Text": "\u002B21H - \u002B(4d10-6)P", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 155, + "Width": 117, + "Height": 8, + "Text": "Foe takes the strike right in the", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 155, + "Width": 124, + "Height": 8, + "Text": "chest. Any armor there heats up,", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 978, + "Left": 155, + "Width": 118, + "Height": 8, + "Text": "burning foe\u0027s chest. Foe\u0027s neck", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 155, + "Width": 94, + "Height": 8, + "Text": "now has a nice sunburn.", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 288, + "Width": 115, + "Height": 8, + "Text": "The blast hits foe between the", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 288, + "Width": 113, + "Height": 8, + "Text": "eyes. If wearing a helmet, it is", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 978, + "Left": 288, + "Width": 112, + "Height": 8, + "Text": "blasted off his head. Hair and", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 288, + "Width": 111, + "Height": 8, + "Text": "scalp are singed. Blast blinds", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 999, + "Left": 288, + "Width": 61, + "Height": 8, + "Text": "foe for 6 rounds.", + "Confidence": null, + "CenterX": 318.5 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 411, + "Width": 108, + "Height": 8, + "Text": "Foe falls under the weight of", + "Confidence": null, + "CenterX": 465 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 411, + "Width": 98, + "Height": 8, + "Text": "your blast. He can find no", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 978, + "Left": 411, + "Width": 109, + "Height": 8, + "Text": "release from the pain. Foe is", + "Confidence": null, + "CenterX": 465.5 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "unconscious and twitching.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "Mana consumes foe\u0027s upper", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "body. If he has a helm, he is", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 978, + "Left": 535, + "Width": 110, + "Height": 8, + "Text": "permanently blinded and in a", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 535, + "Width": 114, + "Height": 8, + "Text": "coma for 2d10 days. If not, he", + "Confidence": null, + "CenterX": 592 + }, + { + "PageNumber": 1, + "Top": 999, + "Left": 535, + "Width": 62, + "Height": 8, + "Text": "dies in 6 rounds.", + "Confidence": null, + "CenterX": 566 + }, + { + "PageNumber": 1, + "Top": 957, + "Left": 658, + "Width": 123, + "Height": 8, + "Text": "Foe glows intensely for 6 rounds", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 968, + "Left": 658, + "Width": 119, + "Height": 8, + "Text": "(while he writhes in pain). Then", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 978, + "Left": 658, + "Width": 99, + "Height": 8, + "Text": "foe collapses into a pile of", + "Confidence": null, + "CenterX": 707.5 + }, + { + "PageNumber": 1, + "Top": 989, + "Left": 658, + "Width": 47, + "Height": 8, + "Text": "glowing ash.", + "Confidence": null, + "CenterX": 681.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 198, + "Width": 35, + "Height": 8, + "Text": "\u002B16H - 2", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 233, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 236.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 240, + "Width": 45, + "Height": 8, + "Text": "- \u002B(d10-1)P", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 344, + "Width": 7, + "Height": 8, + "Text": "8", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 352, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 359, + "Width": 90, + "Height": 8, + "Text": "- \u002B(2d10-2)P \u002B19H - 9", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 457, + "Width": 75, + "Height": 8, + "Text": "- (-85) - \u002B(2d10-1)P", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 587, + "Width": 68, + "Height": 8, + "Text": "\u002B1H - \u002B(3d10-4)P", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 1014, + "Left": 711, + "Width": 72, + "Height": 8, + "Text": "\u002B26H - \u002B(4d10-4)P", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 155, + "Width": 124, + "Height": 8, + "Text": "Raw power fills foe until his eyes", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 155, + "Width": 132, + "Height": 8, + "Text": "glow. He is blinded for d10 rounds.", + "Confidence": null, + "CenterX": 221 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 288, + "Width": 113, + "Height": 8, + "Text": "The mana blast hits foe in the", + "Confidence": null, + "CenterX": 344.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 288, + "Width": 120, + "Height": 8, + "Text": "neck. Powerlul light erupts from", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 288, + "Width": 95, + "Height": 8, + "Text": "his mouth. He falls to the", + "Confidence": null, + "CenterX": 335.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 288, + "Width": 117, + "Height": 8, + "Text": "ground and dies in nine painful", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 288, + "Width": 28, + "Height": 8, + "Text": "rounds.", + "Confidence": null, + "CenterX": 302 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 411, + "Width": 117, + "Height": 8, + "Text": "Massive magical blast mutates", + "Confidence": null, + "CenterX": 469.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 411, + "Width": 112, + "Height": 8, + "Text": "foe. If he has no chest armor,", + "Confidence": null, + "CenterX": 467 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "he dies instantly. Otherwise, he", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 411, + "Width": 119, + "Height": 8, + "Text": "screams for nine rounds before", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 411, + "Width": 25, + "Height": 8, + "Text": "dieing.", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 535, + "Width": 108, + "Height": 8, + "Text": "Magical blast begins to cook", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 535, + "Width": 119, + "Height": 8, + "Text": "foe. Internal organs are toasted", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 535, + "Width": 116, + "Height": 8, + "Text": "and blood evaporates. He dies", + "Confidence": null, + "CenterX": 593 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 535, + "Width": 105, + "Height": 8, + "Text": "in 6 inactive rounds. Oh the", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 535, + "Width": 18, + "Height": 8, + "Text": "pain!", + "Confidence": null, + "CenterX": 544 + }, + { + "PageNumber": 1, + "Top": 1025, + "Left": 658, + "Width": 121, + "Height": 8, + "Text": "Foe is momentarily transformed", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 1035, + "Left": 658, + "Width": 106, + "Height": 8, + "Text": "into a power monster, but is", + "Confidence": null, + "CenterX": 711 + }, + { + "PageNumber": 1, + "Top": 1046, + "Left": 658, + "Width": 118, + "Height": 8, + "Text": "consumed by the raging mana.", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 658, + "Width": 118, + "Height": 8, + "Text": "All that is left are the echoes of", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 658, + "Width": 47, + "Height": 8, + "Text": "his screams.", + "Confidence": null, + "CenterX": 681.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 213, + "Width": 9, + "Height": 8, + "Text": "11", + "Confidence": null, + "CenterX": 217.5 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 222, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 225.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 230, + "Width": 12, + "Height": 8, + "Text": "- 4", + "Confidence": null, + "CenterX": 236 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 242, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 245 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 248, + "Width": 78, + "Height": 8, + "Text": "- \u002B(d10)P \u002B21H -12", + "Confidence": null, + "CenterX": 287 + }, + { + "PageNumber": 1, + "Top": 1080, + "Left": 326, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 329.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 334, + "Width": 40, + "Height": 8, + "Text": "- (\u002B10) - \u002B", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 1083, + "Left": 373, + "Width": 35, + "Height": 7, + "Text": "(2d10-1 )P", + "Confidence": null, + "CenterX": 390.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 472, + "Width": 60, + "Height": 8, + "Text": "\u002B1H - \u002B(2d10)P", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 583, + "Width": 72, + "Height": 8, + "Text": "\u002B21H - \u002B(3d10-2)P", + "Confidence": null, + "CenterX": 619 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 711, + "Width": 72, + "Height": 8, + "Text": "(\u002B10) - \u002B(4d10-2)P", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 155, + "Width": 129, + "Height": 8, + "Text": "The mana scars foe\u0027 permanently.", + "Confidence": null, + "CenterX": 219.5 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 155, + "Width": 126, + "Height": 8, + "Text": "He loses consciousness from the", + "Confidence": null, + "CenterX": 218 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 155, + "Width": 127, + "Height": 8, + "Text": "blast and has dreams of being on", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 1124, + "Left": 155, + "Width": 14, + "Height": 8, + "Text": "fire.", + "Confidence": null, + "CenterX": 162 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 288, + "Width": 116, + "Height": 8, + "Text": "The powerful blast melts away", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 288, + "Width": 118, + "Height": 8, + "Text": "foe\u0027s clothing and starts to peel", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 288, + "Width": 117, + "Height": 8, + "Text": "away the skin underneath. Foe", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 1124, + "Left": 288, + "Width": 121, + "Height": 8, + "Text": "falls into a coma for d10 weeks,", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 1135, + "Left": 288, + "Width": 37, + "Height": 8, + "Text": "then dies.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 411, + "Width": 109, + "Height": 8, + "Text": "Focussed blast to foe\u0027s head", + "Confidence": null, + "CenterX": 465.5 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 411, + "Width": 115, + "Height": 8, + "Text": "proves fatal. If foe has a helm,", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 411, + "Width": 95, + "Height": 8, + "Text": "his head cooks (dies in 2", + "Confidence": null, + "CenterX": 458.5 + }, + { + "PageNumber": 1, + "Top": 1124, + "Left": 411, + "Width": 103, + "Height": 8, + "Text": "rounds); otherwise, head is", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 1135, + "Left": 411, + "Width": 72, + "Height": 8, + "Text": "vaporized instantly.", + "Confidence": null, + "CenterX": 447 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 535, + "Width": 110, + "Height": 8, + "Text": "Foe cannot handle the mana", + "Confidence": null, + "CenterX": 590 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 535, + "Width": 100, + "Height": 8, + "Text": "ovedoad. His screams are", + "Confidence": null, + "CenterX": 585 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 535, + "Width": 121, + "Height": 8, + "Text": "heard miles away, while he dies", + "Confidence": null, + "CenterX": 595.5 + }, + { + "PageNumber": 1, + "Top": 1124, + "Left": 535, + "Width": 107, + "Height": 8, + "Text": "in 2 rounds. He continues to", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 1135, + "Left": 535, + "Width": 20, + "Height": 8, + "Text": "glow.", + "Confidence": null, + "CenterX": 545 + }, + { + "PageNumber": 1, + "Top": 1093, + "Left": 658, + "Width": 124, + "Height": 8, + "Text": "Mana consumes everything. Foe", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 1103, + "Left": 658, + "Width": 107, + "Height": 8, + "Text": "is instantly dead. Everything", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 658, + "Width": 119, + "Height": 8, + "Text": "within 10\u0027 will glow for d10 days", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 1124, + "Left": 658, + "Width": 102, + "Height": 8, + "Text": "(within 50\u0027 will glow for d10", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 1135, + "Left": 658, + "Width": 26, + "Height": 8, + "Text": "hours).", + "Confidence": null, + "CenterX": 671 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 206, + "Width": 35, + "Height": 8, + "Text": "\u002B21H - 5", + "Confidence": null, + "CenterX": 223.5 + }, + { + "PageNumber": 1, + "Top": 1148, + "Left": 241, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 248, + "Width": 38, + "Height": 8, + "Text": "- \u002B(d10)P", + "Confidence": null, + "CenterX": 267 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 386, + "Width": 23, + "Height": 8, + "Text": "\u002B26H", + "Confidence": null, + "CenterX": 397.5 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 467, + "Width": 64, + "Height": 8, + "Text": "(\u002B10) - \u002B(2d10)P", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 590, + "Width": 64, + "Height": 8, + "Text": "(\u002B15) - \u002B(3d10)P", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 1150, + "Left": 719, + "Width": 64, + "Height": 8, + "Text": "(\u002B20) - \u002B(4d10)P", + "Confidence": null, + "CenterX": 751 + }, + { + "PageNumber": 1, + "Top": 1161, + "Left": 305, + "Width": 49, + "Height": 8, + "Text": "must parry =", + "Confidence": null, + "CenterX": 329.5 + }, + { + "PageNumber": 1, + "Top": 1160, + "Left": 354, + "Width": 8, + "Height": 8, + "Text": "\uF072", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 1161, + "Left": 363, + "Width": 47, + "Height": 8, + "Text": "/ no parry =", + "Confidence": null, + "CenterX": 386.5 + }, + { + "PageNumber": 1, + "Top": 1159, + "Left": 410, + "Width": 6, + "Height": 9, + "Text": "\uF06C", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1161, + "Left": 416, + "Width": 32, + "Height": 8, + "Text": "/ stun =", + "Confidence": null, + "CenterX": 432 + }, + { + "PageNumber": 1, + "Top": 1159, + "Left": 449, + "Width": 7, + "Height": 9, + "Text": "\uF052", + "Confidence": null, + "CenterX": 452.5 + }, + { + "PageNumber": 1, + "Top": 1161, + "Left": 456, + "Width": 130, + "Height": 8, + "Text": "/ powerpoint modification (foe) = P", + "Confidence": null, + "CenterX": 521 + }, + { + "PageNumber": 1, + "Top": 855, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "81-85", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "86-90", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "91-95", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 1053, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "96-99", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 1121, + "Left": 123, + "Width": 14, + "Height": 8, + "Text": "100", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 572, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "61-65", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 623, + "Left": 126, + "Width": 9, + "Height": 8, + "Text": "66", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "67-70", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 742, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "71-75", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "76-80", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 299, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "21-35", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 356, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "36-45", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 413, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "46-50", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "51-55", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 515, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "56-60", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 98, + "Left": 360, + "Width": 171, + "Height": 10, + "Text": "MANA CRITICAL STRIKE TABLE", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "01-05", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "06-10", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 214, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "11-15", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 120, + "Width": 21, + "Height": 8, + "Text": "16-20", + "Confidence": null, + "CenterX": 130.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/mana/pages/page-001.png new file mode 100644 index 0000000..3d1f4a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/mana/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/mana/parsed-cells.json new file mode 100644 index 0000000..d37f233 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/mana/parsed-cells.json @@ -0,0 +1,7275 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Lots of fireworks, but little effect.", + "\u002B1H" + ], + "BaseLines": [ + "Lots of fireworks, but little effect.", + "\u002B1H" + ], + "RawCellText": "Lots of fireworks, but little effect.\n\u002B1H", + "DescriptionText": "Lots of fireworks, but little effect.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 130, + "Width": 131, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 520, + "BoundsWidth": 524, + "BoundsHeight": 124, + "CropLeft": 572, + "CropTop": 488, + "CropWidth": 620, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Somewhere a bell tolls.", + "\u002B1H" + ], + "BaseLines": [ + "Somewhere a bell tolls.", + "\u002B1H" + ], + "RawCellText": "Somewhere a bell tolls.\n\u002B1H", + "DescriptionText": "Somewhere a bell tolls.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 130, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 520, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1104, + "CropTop": 488, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Weak blast.", + "\u002B2H" + ], + "BaseLines": [ + "Weak blast.", + "\u002B2H" + ], + "RawCellText": "Weak blast.\n\u002B2H", + "DescriptionText": "Weak blast.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 130, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 520, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1596, + "CropTop": 488, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Foe dances around your blast.", + "\u002B3H" + ], + "BaseLines": [ + "Foe dances around your blast.", + "\u002B3H" + ], + "RawCellText": "Foe dances around your blast.\n\u002B3H", + "DescriptionText": "Foe dances around your blast.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 130, + "Width": 120, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 520, + "BoundsWidth": 480, + "BoundsHeight": 124, + "CropLeft": 2092, + "CropTop": 488, + "CropWidth": 576, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Foe does damage trying to", + "dodge.", + "\u002B4H" + ], + "BaseLines": [ + "Foe does damage trying to", + "dodge.", + "\u002B4H" + ], + "RawCellText": "Foe does damage trying to\ndodge.\n\u002B4H", + "DescriptionText": "Foe does damage trying to dodge.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 130, + "Width": 126, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 520, + "BoundsWidth": 504, + "BoundsHeight": 124, + "CropLeft": 2584, + "CropTop": 488, + "CropWidth": 600, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Power flows over foe.", + "\u002B2H" + ], + "BaseLines": [ + "Power flows over foe.", + "\u002B2H" + ], + "RawCellText": "Power flows over foe.\n\u002B2H", + "DescriptionText": "Power flows over foe.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 164, + "Width": 131, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 656, + "BoundsWidth": 524, + "BoundsHeight": 124, + "CropLeft": 572, + "CropTop": 624, + "CropWidth": 620, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Foe is singed by the mana", + "blast.", + "\u002B3H" + ], + "BaseLines": [ + "Foe is singed by the mana", + "blast.", + "\u002B3H" + ], + "RawCellText": "Foe is singed by the mana\nblast.\n\u002B3H", + "DescriptionText": "Foe is singed by the mana blast.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 164, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 656, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1104, + "CropTop": 624, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "A few extra sparks startle foe.", + "\u002B4H" + ], + "BaseLines": [ + "A few extra sparks startle foe.", + "\u002B4H" + ], + "RawCellText": "A few extra sparks startle foe.\n\u002B4H", + "DescriptionText": "A few extra sparks startle foe.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 164, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 656, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1596, + "CropTop": 624, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Foe must have mana repellant", + "on! Why didn\u0027t that work?", + "\u002B5H" + ], + "BaseLines": [ + "Foe must have mana repellant", + "on! Why didn\u0027t that work?", + "\u002B5H" + ], + "RawCellText": "Foe must have mana repellant\non! Why didn\u0027t that work?\n\u002B5H", + "DescriptionText": "Foe must have mana repellant on! Why didn\u0027t that work?", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 164, + "Width": 120, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 656, + "BoundsWidth": 480, + "BoundsHeight": 124, + "CropLeft": 2092, + "CropTop": 624, + "CropWidth": 576, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Foe dodges, but loses ground.", + "You have the iniative next round.", + "\u002B5H" + ], + "BaseLines": [ + "Foe dodges, but loses ground.", + "You have the iniative next round.", + "\u002B5H" + ], + "RawCellText": "Foe dodges, but loses ground.\nYou have the iniative next round.\n\u002B5H", + "DescriptionText": "Foe dodges, but loses ground. You have the iniative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 164, + "Width": 126, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 656, + "BoundsWidth": 504, + "BoundsHeight": 124, + "CropLeft": 2584, + "CropTop": 624, + "CropWidth": 600, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s eyes are filled with raw", + "power. You have the initiative next", + "round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe\u0027s eyes are filled with raw", + "power. You have the initiative next", + "round.", + "\u002B3H" + ], + "RawCellText": "Foe\u0027s eyes are filled with raw\npower. You have the initiative next\nround.\n\u002B3H", + "DescriptionText": "Foe\u0027s eyes are filled with raw power. You have the initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 197, + "Width": 131, + "Height": 43 + }, + "SourceImagePath": "mana/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 788, + "BoundsWidth": 524, + "BoundsHeight": 172, + "CropLeft": 572, + "CropTop": 756, + "CropWidth": 620, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe is shaken by the force of", + "your blast. You have the", + "initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe is shaken by the force of", + "your blast. You have the", + "initiative next round.", + "\u002B3H" + ], + "RawCellText": "Foe is shaken by the force of\nyour blast. You have the\ninitiative next round.\n\u002B3H", + "DescriptionText": "Foe is shaken by the force of your blast. You have the initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 197, + "Width": 121, + "Height": 43 + }, + "SourceImagePath": "mana/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 788, + "BoundsWidth": 484, + "BoundsHeight": 172, + "CropLeft": 1104, + "CropTop": 756, + "CropWidth": 580, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Foe is impressed, but you know", + "your blast was nothing", + "spectacular. You have the", + "\u002B4H" + ], + "BaseLines": [ + "Foe is impressed, but you know", + "your blast was nothing", + "spectacular. You have the", + "\u002B4H" + ], + "RawCellText": "Foe is impressed, but you know\nyour blast was nothing\nspectacular. You have the\n\u002B4H", + "DescriptionText": "Foe is impressed, but you know your blast was nothing spectacular. You have the", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 197, + "Width": 121, + "Height": 43 + }, + "SourceImagePath": "mana/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 788, + "BoundsWidth": 484, + "BoundsHeight": 172, + "CropLeft": 1596, + "CropTop": 756, + "CropWidth": 580, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe is completely surrounded", + "by mana; he seems only", + "shaken. You have initiative next", + "\u002B5H" + ], + "BaseLines": [ + "Foe is completely surrounded", + "by mana; he seems only", + "shaken. You have initiative next", + "\u002B5H" + ], + "RawCellText": "Foe is completely surrounded\nby mana; he seems only\nshaken. You have initiative next\n\u002B5H", + "DescriptionText": "Foe is completely surrounded by mana; he seems only shaken. You have initiative next", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 197, + "Width": 121, + "Height": 43 + }, + "SourceImagePath": "mana/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 788, + "BoundsWidth": 484, + "BoundsHeight": 172, + "CropLeft": 2092, + "CropTop": 756, + "CropWidth": 580, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "The quick flash of light makes", + "foe cautious. You have the", + "initiative next round.", + "\u002B7H - \u002B(4d10-30)P" + ], + "BaseLines": [ + "The quick flash of light makes", + "foe cautious. You have the", + "initiative next round.", + "\u002B7H - \u002B(4d10-30)P" + ], + "RawCellText": "The quick flash of light makes\nfoe cautious. You have the\ninitiative next round.\n\u002B7H - \u002B(4d10-30)P", + "DescriptionText": "The quick flash of light makes foe cautious. You have the initiative next round.", + "RawAffixText": "\u002B7H - \u002B(4d10-30)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-30", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-30)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 197, + "Width": 125, + "Height": 43 + }, + "SourceImagePath": "mana/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 788, + "BoundsWidth": 500, + "BoundsHeight": 172, + "CropLeft": 2584, + "CropTop": 756, + "CropWidth": 596, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Blast shakes foe to the bone. You", + "have the initiative next round.", + "\u002B4H" + ], + "BaseLines": [ + "Blast shakes foe to the bone. You", + "have the initiative next round.", + "\u002B4H" + ], + "RawCellText": "Blast shakes foe to the bone. You\nhave the initiative next round.\n\u002B4H", + "DescriptionText": "Blast shakes foe to the bone. You have the initiative next round.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 243, + "Width": 131, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 972, + "BoundsWidth": 524, + "BoundsHeight": 124, + "CropLeft": 572, + "CropTop": 940, + "CropWidth": 620, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Foe cannot evade. You have", + "the initiative for the next two", + "\u002B1H" + ], + "BaseLines": [ + "Foe cannot evade. You have", + "the initiative for the next two", + "\u002B1H" + ], + "RawCellText": "Foe cannot evade. You have\nthe initiative for the next two\n\u002B1H", + "DescriptionText": "Foe cannot evade. You have the initiative for the next two", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 243, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 972, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1104, + "CropTop": 940, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Foe gets an unusual rash.", + "You have the initiative next", + "\u002B6H" + ], + "BaseLines": [ + "Foe gets an unusual rash.", + "You have the initiative next", + "\u002B6H" + ], + "RawCellText": "Foe gets an unusual rash.\nYou have the initiative next\n\u002B6H", + "DescriptionText": "Foe gets an unusual rash. You have the initiative next", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 243, + "Width": 121, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 972, + "BoundsWidth": 484, + "BoundsHeight": 124, + "CropLeft": 1596, + "CropTop": 940, + "CropWidth": 580, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Foe attacks the blast itself and", + "it seems to work!", + "\u002B7H - \uF072 - \u002B(3d10-24)P" + ], + "BaseLines": [ + "Foe attacks the blast itself and", + "it seems to work!", + "\u002B7H - \uF072 - \u002B(3d10-24)P" + ], + "RawCellText": "Foe attacks the blast itself and\nit seems to work!\n\u002B7H - \uF072 - \u002B(3d10-24)P", + "DescriptionText": "Foe attacks the blast itself and it seems to work!", + "RawAffixText": "\u002B7H - \uF072 - \u002B(3d10-24)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF072" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-24", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-24)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 243, + "Width": 119, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 972, + "BoundsWidth": 476, + "BoundsHeight": 124, + "CropLeft": 2092, + "CropTop": 940, + "CropWidth": 572, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe is taken aback by your fierce", + "expression.", + "\u002B8H - \uF072 -\u002B(4d10-28)P" + ], + "BaseLines": [ + "Foe is taken aback by your fierce", + "expression.", + "\u002B8H - \uF072 -\u002B(4d10-28)P" + ], + "RawCellText": "Foe is taken aback by your fierce\nexpression.\n\u002B8H - \uF072 -\u002B(4d10-28)P", + "DescriptionText": "Foe is taken aback by your fierce expression.", + "RawAffixText": "\u002B8H - \uF072 -\u002B(4d10-28)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF072" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-28", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-28)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 243, + "Width": 126, + "Height": 31 + }, + "SourceImagePath": "mana/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 972, + "BoundsWidth": 504, + "BoundsHeight": 124, + "CropLeft": 2584, + "CropTop": 940, + "CropWidth": 600, + "CropHeight": 188, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s gear begins to glow from the", + "assault!", + "\u002B5H" + ], + "BaseLines": [ + "Foe\u0027s gear begins to glow from the", + "assault!", + "\u002B5H" + ], + "RawCellText": "Foe\u0027s gear begins to glow from the\nassault!\n\u002B5H", + "DescriptionText": "Foe\u0027s gear begins to glow from the assault!", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 277, + "Width": 131, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 1108, + "BoundsWidth": 524, + "BoundsHeight": 212, + "CropLeft": 572, + "CropTop": 1076, + "CropWidth": 620, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "The blast rattles foe\u0027s armor", + "(which must check for", + "breakage). For a moment the", + "armor glows.", + "\u002B7H" + ], + "BaseLines": [ + "The blast rattles foe\u0027s armor", + "(which must check for", + "breakage). For a moment the", + "armor glows.", + "\u002B7H" + ], + "RawCellText": "The blast rattles foe\u0027s armor\n(which must check for\nbreakage). For a moment the\narmor glows.\n\u002B7H", + "DescriptionText": "The blast rattles foe\u0027s armor (which must check for breakage). For a moment the armor glows.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 277, + "Width": 121, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 1108, + "BoundsWidth": 484, + "BoundsHeight": 212, + "CropLeft": 1104, + "CropTop": 1076, + "CropWidth": 580, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "This fancy lightshow makes foe", + "wary of you. His equipment will", + "glow for the next d10 days.", + "\u002B8H - \uF052 - \u002B(2d10-18)P" + ], + "BaseLines": [ + "This fancy lightshow makes foe", + "wary of you. His equipment will", + "glow for the next d10 days.", + "\u002B8H - \uF052 - \u002B(2d10-18)P" + ], + "RawCellText": "This fancy lightshow makes foe\nwary of you. His equipment will\nglow for the next d10 days.\n\u002B8H - \uF052 - \u002B(2d10-18)P", + "DescriptionText": "This fancy lightshow makes foe wary of you. His equipment will glow for the next d10 days.", + "RawAffixText": "\u002B8H - \uF052 - \u002B(2d10-18)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-18", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-18)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 277, + "Width": 120, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 1108, + "BoundsWidth": 480, + "BoundsHeight": 212, + "CropLeft": 1596, + "CropTop": 1076, + "CropWidth": 576, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Good blast causes foe to", + "stagger. He won\u0027t", + "underestimate you again.", + "\u002B9H - \uF052 - \u002B(3d10-21)P" + ], + "BaseLines": [ + "Good blast causes foe to", + "stagger. He won\u0027t", + "underestimate you again.", + "\u002B9H - \uF052 - \u002B(3d10-21)P" + ], + "RawCellText": "Good blast causes foe to\nstagger. He won\u0027t\nunderestimate you again.\n\u002B9H - \uF052 - \u002B(3d10-21)P", + "DescriptionText": "Good blast causes foe to stagger. He won\u0027t underestimate you again.", + "RawAffixText": "\u002B9H - \uF052 - \u002B(3d10-21)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-21", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-21)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 277, + "Width": 120, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 1108, + "BoundsWidth": 480, + "BoundsHeight": 212, + "CropLeft": 2092, + "CropTop": 1076, + "CropWidth": 576, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "You force foe back, but he is not", + "as seriously damaged as you had", + "hoped.", + "\u002B10H - 2 \uF052 - \u002B(4d10-25)P" + ], + "BaseLines": [ + "You force foe back, but he is not", + "as seriously damaged as you had", + "hoped.", + "\u002B10H - 2 \uF052 - \u002B(4d10-25)P" + ], + "RawCellText": "You force foe back, but he is not\nas seriously damaged as you had\nhoped.\n\u002B10H - 2 \uF052 - \u002B(4d10-25)P", + "DescriptionText": "You force foe back, but he is not as seriously damaged as you had hoped.", + "RawAffixText": "\u002B10H - 2 \uF052 - \u002B(4d10-25)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-25", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-25)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 277, + "Width": 128, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 1108, + "BoundsWidth": 512, + "BoundsHeight": 212, + "CropLeft": 2584, + "CropTop": 1076, + "CropWidth": 608, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Raw mana ripples foe\u0027s exposed", + "skin. He is easily distracted.", + "\u002B7H - \uF072" + ], + "BaseLines": [ + "Raw mana ripples foe\u0027s exposed", + "skin. He is easily distracted.", + "\u002B7H - \uF072" + ], + "RawCellText": "Raw mana ripples foe\u0027s exposed\nskin. He is easily distracted.\n\u002B7H - \uF072", + "DescriptionText": "Raw mana ripples foe\u0027s exposed skin. He is easily distracted.", + "RawAffixText": "\u002B7H - \uF072", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF072" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 333, + "Width": 130, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 1332, + "BoundsWidth": 520, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 1300, + "CropWidth": 616, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s shield begins to melt from", + "the blast. Unless he drops it, it", + "will burn him.", + "\u002B8H - \uF052 - \u002B(2d10-18)P" + ], + "BaseLines": [ + "Foe\u0027s shield begins to melt from", + "the blast. Unless he drops it, it", + "will burn him.", + "\u002B8H - \uF052 - \u002B(2d10-18)P" + ], + "RawCellText": "Foe\u0027s shield begins to melt from\nthe blast. Unless he drops it, it\nwill burn him.\n\u002B8H - \uF052 - \u002B(2d10-18)P", + "DescriptionText": "Foe\u0027s shield begins to melt from the blast. Unless he drops it, it will burn him.", + "RawAffixText": "\u002B8H - \uF052 - \u002B(2d10-18)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-18", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-18)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 333, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 1332, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 1300, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Foe legs get weak from the of", + "the blast. You gain the initiative", + "while he tries to regain his", + "balance.", + "\u002B9H - \uF052 - \u002B(2d10-16)P" + ], + "BaseLines": [ + "Foe legs get weak from the of", + "the blast. You gain the initiative", + "while he tries to regain his", + "balance.", + "\u002B9H - \uF052 - \u002B(2d10-16)P" + ], + "RawCellText": "Foe legs get weak from the of\nthe blast. You gain the initiative\nwhile he tries to regain his\nbalance.\n\u002B9H - \uF052 - \u002B(2d10-16)P", + "DescriptionText": "Foe legs get weak from the of the blast. You gain the initiative while he tries to regain his balance.", + "RawAffixText": "\u002B9H - \uF052 - \u002B(2d10-16)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-16", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-16)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 333, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 1332, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 1300, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "A wave of mana washes over", + "foe. Any exposed skin is given", + "a good sunburn. He doesn\u0027t feel", + "so good.", + "\u002B10H - 2 \uF052 - \u002B(3d10-20)P" + ], + "BaseLines": [ + "A wave of mana washes over", + "foe. Any exposed skin is given", + "a good sunburn. He doesn\u0027t feel", + "so good.", + "\u002B10H - 2 \uF052 - \u002B(3d10-20)P" + ], + "RawCellText": "A wave of mana washes over\nfoe. Any exposed skin is given\na good sunburn. He doesn\u0027t feel\nso good.\n\u002B10H - 2 \uF052 - \u002B(3d10-20)P", + "DescriptionText": "A wave of mana washes over foe. Any exposed skin is given a good sunburn. He doesn\u0027t feel so good.", + "RawAffixText": "\u002B10H - 2 \uF052 - \u002B(3d10-20)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-20", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-20)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 333, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 1332, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 1300, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Something in foe\u0027s backpack", + "seems to attract the blast. His", + "neck and shoulders are lightly", + "burned.", + "\u002B11H - 3 \uF052 - \u002B(4d10-24)P" + ], + "BaseLines": [ + "Something in foe\u0027s backpack", + "seems to attract the blast. His", + "neck and shoulders are lightly", + "burned.", + "\u002B11H - 3 \uF052 - \u002B(4d10-24)P" + ], + "RawCellText": "Something in foe\u0027s backpack\nseems to attract the blast. His\nneck and shoulders are lightly\nburned.\n\u002B11H - 3 \uF052 - \u002B(4d10-24)P", + "DescriptionText": "Something in foe\u0027s backpack seems to attract the blast. His neck and shoulders are lightly burned.", + "RawAffixText": "\u002B11H - 3 \uF052 - \u002B(4d10-24)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-24", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-24)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 333, + "Width": 125, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 1332, + "BoundsWidth": 500, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 1300, + "CropWidth": 596, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s shirt now glows magically.", + "\u002B8H - \uF052 - \u002B(d10-9)P" + ], + "BaseLines": [ + "Foe\u0027s shirt now glows magically.", + "\u002B8H - \uF052 - \u002B(d10-9)P" + ], + "RawCellText": "Foe\u0027s shirt now glows magically.\n\u002B8H - \uF052 - \u002B(d10-9)P", + "DescriptionText": "Foe\u0027s shirt now glows magically.", + "RawAffixText": "\u002B8H - \uF052 - \u002B(d10-9)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-9", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-9)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 390, + "Width": 130, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 1560, + "BoundsWidth": 520, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 1528, + "CropWidth": 616, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Foe dodges most of the blast,", + "but not all of it.", + "\u002B9H - \uF052 - \u002B(2d10-16)P" + ], + "BaseLines": [ + "Foe dodges most of the blast,", + "but not all of it.", + "\u002B9H - \uF052 - \u002B(2d10-16)P" + ], + "RawCellText": "Foe dodges most of the blast,\nbut not all of it.\n\u002B9H - \uF052 - \u002B(2d10-16)P", + "DescriptionText": "Foe dodges most of the blast, but not all of it.", + "RawAffixText": "\u002B9H - \uF052 - \u002B(2d10-16)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-16", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-16)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 390, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 1560, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 1528, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "The raw power slaps foe", + "around. All exposed skin suffers", + "from a mild sunburn.", + "\u002B10H - 2 \uF052 - \u002B(2d10-14)P" + ], + "BaseLines": [ + "The raw power slaps foe", + "around. All exposed skin suffers", + "from a mild sunburn.", + "\u002B10H - 2 \uF052 - \u002B(2d10-14)P" + ], + "RawCellText": "The raw power slaps foe\naround. All exposed skin suffers\nfrom a mild sunburn.\n\u002B10H - 2 \uF052 - \u002B(2d10-14)P", + "DescriptionText": "The raw power slaps foe around. All exposed skin suffers from a mild sunburn.", + "RawAffixText": "\u002B10H - 2 \uF052 - \u002B(2d10-14)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-14", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-14)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 390, + "Width": 122, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 1560, + "BoundsWidth": 488, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 1528, + "CropWidth": 584, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Foe is surprised by the pain", + "from your blast. He is having", + "difficulty focussing his attention", + "on you.", + "\u002B11H - 3 \uF052 - \u002B(3d10-19)P" + ], + "BaseLines": [ + "Foe is surprised by the pain", + "from your blast. He is having", + "difficulty focussing his attention", + "on you.", + "\u002B11H - 3 \uF052 - \u002B(3d10-19)P" + ], + "RawCellText": "Foe is surprised by the pain\nfrom your blast. He is having\ndifficulty focussing his attention\non you.\n\u002B11H - 3 \uF052 - \u002B(3d10-19)P", + "DescriptionText": "Foe is surprised by the pain from your blast. He is having difficulty focussing his attention on you.", + "RawAffixText": "\u002B11H - 3 \uF052 - \u002B(3d10-19)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-19", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-19)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 390, + "Width": 119, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 1560, + "BoundsWidth": 476, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 1528, + "CropWidth": 572, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Blast strikes foe\u0027s weapon.", + "Wooden weapon is destroyed.", + "Metal weapon becomes too hot", + "to hold.", + "\u002B13H - 4 \uF052 - \u002B(4d10-24)P" + ], + "BaseLines": [ + "Blast strikes foe\u0027s weapon.", + "Wooden weapon is destroyed.", + "Metal weapon becomes too hot", + "to hold.", + "\u002B13H - 4 \uF052 - \u002B(4d10-24)P" + ], + "RawCellText": "Blast strikes foe\u0027s weapon.\nWooden weapon is destroyed.\nMetal weapon becomes too hot\nto hold.\n\u002B13H - 4 \uF052 - \u002B(4d10-24)P", + "DescriptionText": "Blast strikes foe\u0027s weapon. Wooden weapon is destroyed. Metal weapon becomes too hot to hold.", + "RawAffixText": "\u002B13H - 4 \uF052 - \u002B(4d10-24)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-24", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-24)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 390, + "Width": 125, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 1560, + "BoundsWidth": 500, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 1528, + "CropWidth": 596, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "A random piece of foe\u0027s equipment", + "bursts from the influx of power.", + "\u002B9H - \uF052 - \u002B(d10-8)P" + ], + "BaseLines": [ + "A random piece of foe\u0027s equipment", + "bursts from the influx of power.", + "\u002B9H - \uF052 - \u002B(d10-8)P" + ], + "RawCellText": "A random piece of foe\u0027s equipment\nbursts from the influx of power.\n\u002B9H - \uF052 - \u002B(d10-8)P", + "DescriptionText": "A random piece of foe\u0027s equipment bursts from the influx of power.", + "RawAffixText": "\u002B9H - \uF052 - \u002B(d10-8)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-8", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-8)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 447, + "Width": 133, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 1788, + "BoundsWidth": 532, + "BoundsHeight": 168, + "CropLeft": 572, + "CropTop": 1756, + "CropWidth": 628, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Foe ducks, but the blast hits his", + "back. He is falls forward, but", + "keeps his feet.", + "\u002B9H - 2 \uF052 - \u002B(2d10-14)P" + ], + "BaseLines": [ + "Foe ducks, but the blast hits his", + "back. He is falls forward, but", + "keeps his feet.", + "\u002B9H - 2 \uF052 - \u002B(2d10-14)P" + ], + "RawCellText": "Foe ducks, but the blast hits his\nback. He is falls forward, but\nkeeps his feet.\n\u002B9H - 2 \uF052 - \u002B(2d10-14)P", + "DescriptionText": "Foe ducks, but the blast hits his back. He is falls forward, but keeps his feet.", + "RawAffixText": "\u002B9H - 2 \uF052 - \u002B(2d10-14)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-14", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-14)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 447, + "Width": 120, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 1788, + "BoundsWidth": 480, + "BoundsHeight": 168, + "CropLeft": 1104, + "CropTop": 1756, + "CropWidth": 576, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Foe turns to avoid the blast and", + "takes the full force on his side.", + "Armor does not help.", + "\u002B10H - 4 \uF052 - \u002B(2d10-12)P" + ], + "BaseLines": [ + "Foe turns to avoid the blast and", + "takes the full force on his side.", + "Armor does not help.", + "\u002B10H - 4 \uF052 - \u002B(2d10-12)P" + ], + "RawCellText": "Foe turns to avoid the blast and\ntakes the full force on his side.\nArmor does not help.\n\u002B10H - 4 \uF052 - \u002B(2d10-12)P", + "DescriptionText": "Foe turns to avoid the blast and takes the full force on his side. Armor does not help.", + "RawAffixText": "\u002B10H - 4 \uF052 - \u002B(2d10-12)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-12", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-12)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 447, + "Width": 120, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 1788, + "BoundsWidth": 480, + "BoundsHeight": 168, + "CropLeft": 1596, + "CropTop": 1756, + "CropWidth": 576, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Good blast. Foe thinks his", + "clothes are ablaze and runs", + "aimlessly about for 3 rounds.", + "\u002B11H - 4 \uF052 - \u002B(3d10-18)P" + ], + "BaseLines": [ + "Good blast. Foe thinks his", + "clothes are ablaze and runs", + "aimlessly about for 3 rounds.", + "\u002B11H - 4 \uF052 - \u002B(3d10-18)P" + ], + "RawCellText": "Good blast. Foe thinks his\nclothes are ablaze and runs\naimlessly about for 3 rounds.\n\u002B11H - 4 \uF052 - \u002B(3d10-18)P", + "DescriptionText": "Good blast. Foe thinks his clothes are ablaze and runs aimlessly about for 3 rounds.", + "RawAffixText": "\u002B11H - 4 \uF052 - \u002B(3d10-18)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-18", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-18)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 447, + "Width": 119, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 1788, + "BoundsWidth": 476, + "BoundsHeight": 168, + "CropLeft": 2092, + "CropTop": 1756, + "CropWidth": 572, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "The raw power is seeking foe\u0027s", + "heart. He frantically scampers", + "back. His chest is burned.", + "\u002B14H - 3 \uF052 - \uF06C - \u002B(4d10-22)P" + ], + "BaseLines": [ + "The raw power is seeking foe\u0027s", + "heart. He frantically scampers", + "back. His chest is burned.", + "\u002B14H - 3 \uF052 - \uF06C - \u002B(4d10-22)P" + ], + "RawCellText": "The raw power is seeking foe\u0027s\nheart. He frantically scampers\nback. His chest is burned.\n\u002B14H - 3 \uF052 - \uF06C - \u002B(4d10-22)P", + "DescriptionText": "The raw power is seeking foe\u0027s heart. He frantically scampers back. His chest is burned.", + "RawAffixText": "\u002B14H - 3 \uF052 - \uF06C - \u002B(4d10-22)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-22", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-22)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 447, + "Width": 125, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 1788, + "BoundsWidth": 500, + "BoundsHeight": 168, + "CropLeft": 2584, + "CropTop": 1756, + "CropWidth": 596, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s hair is now magically", + "imbued! If he does not wear a hat", + "(or helm), his head will glow like a", + "lantern.", + "\u002B10H - 2 \uF052 - \u002B(d10-7)P" + ], + "BaseLines": [ + "Foe\u0027s hair is now magically", + "imbued! If he does not wear a hat", + "(or helm), his head will glow like a", + "lantern.", + "\u002B10H - 2 \uF052 - \u002B(d10-7)P" + ], + "RawCellText": "Foe\u0027s hair is now magically\nimbued! If he does not wear a hat\n(or helm), his head will glow like a\nlantern.\n\u002B10H - 2 \uF052 - \u002B(d10-7)P", + "DescriptionText": "Foe\u0027s hair is now magically imbued! If he does not wear a hat (or helm), his head will glow like a lantern.", + "RawAffixText": "\u002B10H - 2 \uF052 - \u002B(d10-7)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-7", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-7)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 492, + "Width": 130, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 1968, + "BoundsWidth": 520, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 1936, + "CropWidth": 616, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Mana engulfs foe completely.", + "When the blast ends, he", + "realizes that he is not dead.", + "\u002B11H - 3 \uF052 - \u002B(2d10-12)P" + ], + "BaseLines": [ + "Mana engulfs foe completely.", + "When the blast ends, he", + "realizes that he is not dead.", + "\u002B11H - 3 \uF052 - \u002B(2d10-12)P" + ], + "RawCellText": "Mana engulfs foe completely.\nWhen the blast ends, he\nrealizes that he is not dead.\n\u002B11H - 3 \uF052 - \u002B(2d10-12)P", + "DescriptionText": "Mana engulfs foe completely. When the blast ends, he realizes that he is not dead.", + "RawAffixText": "\u002B11H - 3 \uF052 - \u002B(2d10-12)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-12", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-12)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 492, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 1968, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 1936, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strong blast to foe\u0027s legs", + "knocks him back 5 feet. He", + "doesn\u0027t know what hit him.", + "\u002B11H -3 \uF052 - \u002B(2d10-10)P" + ], + "BaseLines": [ + "Strong blast to foe\u0027s legs", + "knocks him back 5 feet. He", + "doesn\u0027t know what hit him.", + "\u002B11H -3 \uF052 - \u002B(2d10-10)P" + ], + "RawCellText": "Strong blast to foe\u0027s legs\nknocks him back 5 feet. He\ndoesn\u0027t know what hit him.\n\u002B11H -3 \uF052 - \u002B(2d10-10)P", + "DescriptionText": "Strong blast to foe\u0027s legs knocks him back 5 feet. He doesn\u0027t know what hit him.", + "RawAffixText": "\u002B11H -3 \uF052 - \u002B(2d10-10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 492, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 1968, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 1936, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Foe staggers to get clear of the", + "blast that has targetted his", + "head.", + "\u002B11H - 2 \uF052 - \u002B(3d10-17)P" + ], + "BaseLines": [ + "Foe staggers to get clear of the", + "blast that has targetted his", + "head.", + "\u002B11H - 2 \uF052 - \u002B(3d10-17)P" + ], + "RawCellText": "Foe staggers to get clear of the\nblast that has targetted his\nhead.\n\u002B11H - 2 \uF052 - \u002B(3d10-17)P", + "DescriptionText": "Foe staggers to get clear of the blast that has targetted his head.", + "RawAffixText": "\u002B11H - 2 \uF052 - \u002B(3d10-17)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-17", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-17)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 492, + "Width": 119, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 1968, + "BoundsWidth": 476, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 1936, + "CropWidth": 572, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Blast targets foe\u0027s neck. Any", + "neck gear is melted away and", + "clothes on the shoulders are", + "partially burned.", + "\u002B16H - 4 \uF052 - \u002B(4d10-20)P" + ], + "BaseLines": [ + "Blast targets foe\u0027s neck. Any", + "neck gear is melted away and", + "clothes on the shoulders are", + "partially burned.", + "\u002B16H - 4 \uF052 - \u002B(4d10-20)P" + ], + "RawCellText": "Blast targets foe\u0027s neck. Any\nneck gear is melted away and\nclothes on the shoulders are\npartially burned.\n\u002B16H - 4 \uF052 - \u002B(4d10-20)P", + "DescriptionText": "Blast targets foe\u0027s neck. Any neck gear is melted away and clothes on the shoulders are partially burned.", + "RawAffixText": "\u002B16H - 4 \uF052 - \u002B(4d10-20)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-20", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-20)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 492, + "Width": 125, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 1968, + "BoundsWidth": 500, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 1936, + "CropWidth": 596, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s left side is hit, spinning him", + "around. Any object held in the left", + "hand is now permanently", + "damaged.", + "\u002B10H - 3 \uF052 - \u002B(d10-6)P" + ], + "BaseLines": [ + "Foe\u0027s left side is hit, spinning him", + "around. Any object held in the left", + "hand is now permanently", + "damaged.", + "\u002B10H - 3 \uF052 - \u002B(d10-6)P" + ], + "RawCellText": "Foe\u0027s left side is hit, spinning him\naround. Any object held in the left\nhand is now permanently\ndamaged.\n\u002B10H - 3 \uF052 - \u002B(d10-6)P", + "DescriptionText": "Foe\u0027s left side is hit, spinning him around. Any object held in the left hand is now permanently damaged.", + "RawAffixText": "\u002B10H - 3 \uF052 - \u002B(d10-6)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-6)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 549, + "Width": 130, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 2196, + "BoundsWidth": 520, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 2164, + "CropWidth": 616, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Focussed blast melts foe\u0027s leg", + "armor. The blast is short-lived,", + "but armor is now gone.", + "\u002B10H- 2 \uF052 - \uF06C - \u002B (2d10-11)P" + ], + "BaseLines": [ + "Focussed blast melts foe\u0027s leg", + "armor. The blast is short-lived,", + "but armor is now gone.", + "\u002B10H- 2 \uF052 - \uF06C - \u002B (2d10-11)P" + ], + "RawCellText": "Focussed blast melts foe\u0027s leg\narmor. The blast is short-lived,\nbut armor is now gone.\n\u002B10H- 2 \uF052 - \uF06C - \u002B (2d10-11)P", + "DescriptionText": "Focussed blast melts foe\u0027s leg armor. The blast is short-lived, but armor is now gone.", + "RawAffixText": "\u002B10H- 2 \uF052 - \uF06C - \u002B (2d10-11)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-11", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B (2d10-11)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 549, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 2196, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 2164, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Raw magic completely covers", + "foe. He almost loses his footing.", + "He thinks he is on fire.", + "\u002B11H - 3 \uF052 - \uF06C - (-5) - \u002B(2d10-9)P" + ], + "BaseLines": [ + "Raw magic completely covers", + "foe. He almost loses his footing.", + "He thinks he is on fire.", + "\u002B11H - 3 \uF052 - \uF06C - (-5) - \u002B(2d10-9)P" + ], + "RawCellText": "Raw magic completely covers\nfoe. He almost loses his footing.\nHe thinks he is on fire.\n\u002B11H - 3 \uF052 - \uF06C - (-5) - \u002B(2d10-9)P", + "DescriptionText": "Raw magic completely covers foe. He almost loses his footing. He thinks he is on fire.", + "RawAffixText": "\u002B11H - 3 \uF052 - \uF06C - (-5) - \u002B(2d10-9)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-9", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-9)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 549, + "Width": 122, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 2196, + "BoundsWidth": 488, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 2164, + "CropWidth": 584, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Powerlul blast disarms foe. The", + "mana seems to cling to foe,", + "making him glow for a while.", + "\u002B14H - 7 \uF052 - \u002B(3d10-14)P" + ], + "BaseLines": [ + "Powerlul blast disarms foe. The", + "mana seems to cling to foe,", + "making him glow for a while.", + "\u002B14H - 7 \uF052 - \u002B(3d10-14)P" + ], + "RawCellText": "Powerlul blast disarms foe. The\nmana seems to cling to foe,\nmaking him glow for a while.\n\u002B14H - 7 \uF052 - \u002B(3d10-14)P", + "DescriptionText": "Powerlul blast disarms foe. The mana seems to cling to foe, making him glow for a while.", + "RawAffixText": "\u002B14H - 7 \uF052 - \u002B(3d10-14)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-14", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-14)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 549, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 2196, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 2164, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Raw power strikes foe\u0027s legs.", + "They begin to feel like runny jello.", + "skin is burned and muscles are", + "damaged.", + "\u002B16H - 5 \uF052 - (-10) - \u002B(4d10-16)P" + ], + "BaseLines": [ + "Raw power strikes foe\u0027s legs.", + "They begin to feel like runny jello.", + "skin is burned and muscles are", + "damaged.", + "\u002B16H - 5 \uF052 - (-10) - \u002B(4d10-16)P" + ], + "RawCellText": "Raw power strikes foe\u0027s legs.\nThey begin to feel like runny jello.\nskin is burned and muscles are\ndamaged.\n\u002B16H - 5 \uF052 - (-10) - \u002B(4d10-16)P", + "DescriptionText": "Raw power strikes foe\u0027s legs. They begin to feel like runny jello. skin is burned and muscles are damaged.", + "RawAffixText": "\u002B16H - 5 \uF052 - (-10) - \u002B(4d10-16)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-16", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-16)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 549, + "Width": 127, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 2196, + "BoundsWidth": 508, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 2164, + "CropWidth": 604, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Mana completely engulfs foe,", + "making him stumble backwards.", + "\u002B10H - \uF052\uF06C - (-10) - \u002B(2d10)P" + ], + "BaseLines": [ + "Mana completely engulfs foe,", + "making him stumble backwards.", + "\u002B10H - \uF052\uF06C - (-10) - \u002B(2d10)P" + ], + "RawCellText": "Mana completely engulfs foe,\nmaking him stumble backwards.\n\u002B10H - \uF052\uF06C - (-10) - \u002B(2d10)P", + "DescriptionText": "Mana completely engulfs foe, making him stumble backwards.", + "RawAffixText": "\u002B10H - \uF052\uF06C - (-10) - \u002B(2d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052\uF06C" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 606, + "Width": 130, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 2424, + "BoundsWidth": 520, + "BoundsHeight": 168, + "CropLeft": 572, + "CropTop": 2392, + "CropWidth": 616, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Foe throws himself to the", + "ground to avoid the blast, but", + "the blast hits him anyway.", + "\u002B11H - 5 \uF052 - \u002B(2d10)P" + ], + "BaseLines": [ + "Foe throws himself to the", + "ground to avoid the blast, but", + "the blast hits him anyway.", + "\u002B11H - 5 \uF052 - \u002B(2d10)P" + ], + "RawCellText": "Foe throws himself to the\nground to avoid the blast, but\nthe blast hits him anyway.\n\u002B11H - 5 \uF052 - \u002B(2d10)P", + "DescriptionText": "Foe throws himself to the ground to avoid the blast, but the blast hits him anyway.", + "RawAffixText": "\u002B11H - 5 \uF052 - \u002B(2d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 606, + "Width": 120, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 2424, + "BoundsWidth": 480, + "BoundsHeight": 168, + "CropLeft": 1104, + "CropTop": 2392, + "CropWidth": 576, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Powerful blast to foe\u0027s weapon", + "arm spins him around twice", + "before he falls to the ground.", + "\u002B13H - 3 \uF052 - \u002B(3d10)P" + ], + "BaseLines": [ + "Powerful blast to foe\u0027s weapon", + "arm spins him around twice", + "before he falls to the ground.", + "\u002B13H - 3 \uF052 - \u002B(3d10)P" + ], + "RawCellText": "Powerful blast to foe\u0027s weapon\narm spins him around twice\nbefore he falls to the ground.\n\u002B13H - 3 \uF052 - \u002B(3d10)P", + "DescriptionText": "Powerful blast to foe\u0027s weapon arm spins him around twice before he falls to the ground.", + "RawAffixText": "\u002B13H - 3 \uF052 - \u002B(3d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 606, + "Width": 121, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 2424, + "BoundsWidth": 484, + "BoundsHeight": 168, + "CropLeft": 1596, + "CropTop": 2392, + "CropWidth": 580, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Foe closes his eyes too late! He", + "is blinded for 2d10 rounds and", + "has severe burns on his face.", + "15 \uF052 - (-5) - \u002B(4d10)P" + ], + "BaseLines": [ + "Foe closes his eyes too late! He", + "is blinded for 2d10 rounds and", + "has severe burns on his face.", + "15 \uF052 - (-5) - \u002B(4d10)P" + ], + "RawCellText": "Foe closes his eyes too late! He\nis blinded for 2d10 rounds and\nhas severe burns on his face.\n15 \uF052 - (-5) - \u002B(4d10)P", + "DescriptionText": "Foe closes his eyes too late! He is blinded for 2d10 rounds and has severe burns on his face.", + "RawAffixText": "15 \uF052 - (-5) - \u002B(4d10)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 15, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "15 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 606, + "Width": 122, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 2424, + "BoundsWidth": 488, + "BoundsHeight": 168, + "CropLeft": 2092, + "CropTop": 2392, + "CropWidth": 584, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Foe will glow for d10 hours. He", + "screams in pain, drops, and dies", + "in 6 rounds.", + "\u002B26H - (\u002B5d10)P" + ], + "BaseLines": [ + "Foe will glow for d10 hours. He", + "screams in pain, drops, and dies", + "in 6 rounds.", + "\u002B26H - (\u002B5d10)P" + ], + "RawCellText": "Foe will glow for d10 hours. He\nscreams in pain, drops, and dies\nin 6 rounds.\n\u002B26H - (\u002B5d10)P", + "DescriptionText": "Foe will glow for d10 hours. He screams in pain, drops, and dies in 6 rounds.", + "RawAffixText": "\u002B26H - (\u002B5d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 26, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B26H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "-5d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "- (\u002B5d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 606, + "Width": 125, + "Height": 42 + }, + "SourceImagePath": "mana/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 2424, + "BoundsWidth": 500, + "BoundsHeight": 168, + "CropLeft": 2584, + "CropTop": 2392, + "CropWidth": 596, + "CropHeight": 232, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Foe spins to avoid the blast. His", + "side glows for a moment. Any old", + "wounds are aggrevated.", + "\u002B9H - 3 \uF052 - (-5) - \u002B(d10-6)P" + ], + "BaseLines": [ + "Foe spins to avoid the blast. His", + "side glows for a moment. Any old", + "wounds are aggrevated.", + "\u002B9H - 3 \uF052 - (-5) - \u002B(d10-6)P" + ], + "RawCellText": "Foe spins to avoid the blast. His\nside glows for a moment. Any old\nwounds are aggrevated.\n\u002B9H - 3 \uF052 - (-5) - \u002B(d10-6)P", + "DescriptionText": "Foe spins to avoid the blast. His side glows for a moment. Any old wounds are aggrevated.", + "RawAffixText": "\u002B9H - 3 \uF052 - (-5) - \u002B(d10-6)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-6)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 651, + "Width": 129, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 2604, + "BoundsWidth": 516, + "BoundsHeight": 260, + "CropLeft": 572, + "CropTop": 2572, + "CropWidth": 612, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Foe cannot evade the strike.", + "Mana invades foe\u0027s garments", + "and equipment; making", + "everything glow for 6 rounds.", + "( ) (", + "10)P" + ], + "BaseLines": [ + "Foe cannot evade the strike.", + "Mana invades foe\u0027s garments", + "and equipment; making", + "everything glow for 6 rounds.", + "( ) (", + "10)P" + ], + "RawCellText": "Foe cannot evade the strike.\nMana invades foe\u0027s garments\nand equipment; making\neverything glow for 6 rounds.\n( ) (\n10)P", + "DescriptionText": "Foe cannot evade the strike. Mana invades foe\u0027s garments and equipment; making everything glow for 6 rounds. ( ) (", + "RawAffixText": "10)P", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 651, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 2604, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1104, + "CropTop": 2572, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Foe attempts to dodge, the", + "blast, but trips. He drops to one", + "knee, but rises quickly. His skin", + "blisters.", + "3 \uF052 - \uF06C - (-10) - \u002B(2d10-8)P" + ], + "BaseLines": [ + "Foe attempts to dodge, the", + "blast, but trips. He drops to one", + "knee, but rises quickly. His skin", + "blisters.", + "3 \uF052 - \uF06C - (-10) - \u002B(2d10-8)P" + ], + "RawCellText": "Foe attempts to dodge, the\nblast, but trips. He drops to one\nknee, but rises quickly. His skin\nblisters.\n3 \uF052 - \uF06C - (-10) - \u002B(2d10-8)P", + "DescriptionText": "Foe attempts to dodge, the blast, but trips. He drops to one knee, but rises quickly. His skin blisters.", + "RawAffixText": "3 \uF052 - \uF06C - (-10) - \u002B(2d10-8)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-8", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-8)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 651, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 2604, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1596, + "CropTop": 2572, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Foe can be quite acrobatic", + "when he wants to be. He jumps", + "away from your blast, but falls", + "to the ground in doing so. He is", + "prone for 1 round.", + "\u002B16H - 3 \uF052 - \u002B(3d10-13)P" + ], + "BaseLines": [ + "Foe can be quite acrobatic", + "when he wants to be. He jumps", + "away from your blast, but falls", + "to the ground in doing so. He is", + "prone for 1 round.", + "\u002B16H - 3 \uF052 - \u002B(3d10-13)P" + ], + "RawCellText": "Foe can be quite acrobatic\nwhen he wants to be. He jumps\naway from your blast, but falls\nto the ground in doing so. He is\nprone for 1 round.\n\u002B16H - 3 \uF052 - \u002B(3d10-13)P", + "DescriptionText": "Foe can be quite acrobatic when he wants to be. He jumps away from your blast, but falls to the ground in doing so. He is prone for 1 round.", + "RawAffixText": "\u002B16H - 3 \uF052 - \u002B(3d10-13)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-13", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-13)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 651, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 2604, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 2092, + "CropTop": 2572, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "The blast completely destroyed", + "anything organic in foe\u0027s hand.", + "Non-organic materials are turned", + "to slag.", + "5 \uF052 - (-10) - \u002B(4d10-14)P" + ], + "BaseLines": [ + "The blast completely destroyed", + "anything organic in foe\u0027s hand.", + "Non-organic materials are turned", + "to slag.", + "5 \uF052 - (-10) - \u002B(4d10-14)P" + ], + "RawCellText": "The blast completely destroyed\nanything organic in foe\u0027s hand.\nNon-organic materials are turned\nto slag.\n5 \uF052 - (-10) - \u002B(4d10-14)P", + "DescriptionText": "The blast completely destroyed anything organic in foe\u0027s hand. Non-organic materials are turned to slag.", + "RawAffixText": "5 \uF052 - (-10) - \u002B(4d10-14)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-14", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-14)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 651, + "Width": 125, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 2604, + "BoundsWidth": 500, + "BoundsHeight": 260, + "CropLeft": 2584, + "CropTop": 2572, + "CropWidth": 596, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Raw mana melts away foe\u0027s", + "clothing and singes his hair.", + "\u002B13H - \uF06C - \u002B(d10-5)P" + ], + "BaseLines": [ + "Raw mana melts away foe\u0027s", + "clothing and singes his hair.", + "\u002B13H - \uF06C - \u002B(d10-5)P" + ], + "RawCellText": "Raw mana melts away foe\u0027s\nclothing and singes his hair.\n\u002B13H - \uF06C - \u002B(d10-5)P", + "DescriptionText": "Raw mana melts away foe\u0027s clothing and singes his hair.", + "RawAffixText": "\u002B13H - \uF06C - \u002B(d10-5)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-5", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-5)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 719, + "Width": 132, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 2876, + "BoundsWidth": 528, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 2844, + "CropWidth": 624, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Mana blast is strong around the", + "edges, damaging foe\u0027s arm and", + "leg armor. Everything else", + "heats up.", + "\u002B10H - \uF052\uF06C - (\u002B10)-\u002B(2d10-8)P" + ], + "BaseLines": [ + "Mana blast is strong around the", + "edges, damaging foe\u0027s arm and", + "leg armor. Everything else", + "heats up.", + "\u002B10H - \uF052\uF06C - (\u002B10)-\u002B(2d10-8)P" + ], + "RawCellText": "Mana blast is strong around the\nedges, damaging foe\u0027s arm and\nleg armor. Everything else\nheats up.\n\u002B10H - \uF052\uF06C - (\u002B10)-\u002B(2d10-8)P", + "DescriptionText": "Mana blast is strong around the edges, damaging foe\u0027s arm and leg armor. Everything else heats up.", + "RawAffixText": "\u002B10H - \uF052\uF06C - (\u002B10)-\u002B(2d10-8)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052\uF06C" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-8", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-8)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 719, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 2876, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 2844, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Quick blast hits foe directly in", + "the chest. Organic armor is", + "immediately destroyed. Metal", + "armor melts.", + "8 \uF052 - (-10) - \u002B(2d10-6)P" + ], + "BaseLines": [ + "Quick blast hits foe directly in", + "the chest. Organic armor is", + "immediately destroyed. Metal", + "armor melts.", + "8 \uF052 - (-10) - \u002B(2d10-6)P" + ], + "RawCellText": "Quick blast hits foe directly in\nthe chest. Organic armor is\nimmediately destroyed. Metal\narmor melts.\n8 \uF052 - (-10) - \u002B(2d10-6)P", + "DescriptionText": "Quick blast hits foe directly in the chest. Organic armor is immediately destroyed. Metal armor melts.", + "RawAffixText": "8 \uF052 - (-10) - \u002B(2d10-6)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-6)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 719, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 2876, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 2844, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Mana blast causes foe\u0027s", + "nervous system to ovedoad. He", + "suffers nerve damage in his", + "weapon arm.", + "5 \uF052 - (-45) - \u002B(3d10-11 )P" + ], + "BaseLines": [ + "Mana blast causes foe\u0027s", + "nervous system to ovedoad. He", + "suffers nerve damage in his", + "weapon arm.", + "5 \uF052 - (-45) - \u002B(3d10-11 )P" + ], + "RawCellText": "Mana blast causes foe\u0027s\nnervous system to ovedoad. He\nsuffers nerve damage in his\nweapon arm.\n5 \uF052 - (-45) - \u002B(3d10-11 )P", + "DescriptionText": "Mana blast causes foe\u0027s nervous system to ovedoad. He suffers nerve damage in his weapon arm.", + "RawAffixText": "5 \uF052 - (-45) - \u002B(3d10-11 )P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-11", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-11)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 719, + "Width": 123, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 2876, + "BoundsWidth": 492, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 2844, + "CropWidth": 588, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Chest strike knocks foe down.", + "Any chest armor is destroyed.", + "The raw mana crackles over foe.", + "\u002B16H - 6 \uF052 - (-55) - \u002B(4d10-12)P" + ], + "BaseLines": [ + "Chest strike knocks foe down.", + "Any chest armor is destroyed.", + "The raw mana crackles over foe.", + "\u002B16H - 6 \uF052 - (-55) - \u002B(4d10-12)P" + ], + "RawCellText": "Chest strike knocks foe down.\nAny chest armor is destroyed.\nThe raw mana crackles over foe.\n\u002B16H - 6 \uF052 - (-55) - \u002B(4d10-12)P", + "DescriptionText": "Chest strike knocks foe down. Any chest armor is destroyed. The raw mana crackles over foe.", + "RawAffixText": "\u002B16H - 6 \uF052 - (-55) - \u002B(4d10-12)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-12", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-12)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 719, + "Width": 126, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 2876, + "BoundsWidth": 504, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 2844, + "CropWidth": 600, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s right arm is targetted by the", + "blast. Any weapon there is", + "damaged.", + "\u002B11H - 3 \uF052 - \uF06C - \u002B(d10-4)P" + ], + "BaseLines": [ + "Foe\u0027s right arm is targetted by the", + "blast. Any weapon there is", + "damaged.", + "\u002B11H - 3 \uF052 - \uF06C - \u002B(d10-4)P" + ], + "RawCellText": "Foe\u0027s right arm is targetted by the\nblast. Any weapon there is\ndamaged.\n\u002B11H - 3 \uF052 - \uF06C - \u002B(d10-4)P", + "DescriptionText": "Foe\u0027s right arm is targetted by the blast. Any weapon there is damaged.", + "RawAffixText": "\u002B11H - 3 \uF052 - \uF06C - \u002B(d10-4)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-4", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-4)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 776, + "Width": 130, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 3104, + "BoundsWidth": 520, + "BoundsHeight": 212, + "CropLeft": 572, + "CropTop": 3072, + "CropWidth": 616, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Foe\u0027s waist is gripped by the", + "blast. He finds it hard to", + "breathe.", + "\u002B21H - 2 \uF052 - \u002B(2d10-6) P" + ], + "BaseLines": [ + "Foe\u0027s waist is gripped by the", + "blast. He finds it hard to", + "breathe.", + "\u002B21H - 2 \uF052 - \u002B(2d10-6) P" + ], + "RawCellText": "Foe\u0027s waist is gripped by the\nblast. He finds it hard to\nbreathe.\n\u002B21H - 2 \uF052 - \u002B(2d10-6) P", + "DescriptionText": "Foe\u0027s waist is gripped by the blast. He finds it hard to breathe.", + "RawAffixText": "\u002B21H - 2 \uF052 - \u002B(2d10-6) P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-6) P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 776, + "Width": 121, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 3104, + "BoundsWidth": 484, + "BoundsHeight": 212, + "CropLeft": 1104, + "CropTop": 3072, + "CropWidth": 580, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Strike proves fatal for foe\u0027s", + "hand. One hand is completely", + "useless (and scarred). Clothing", + "is destroyed.", + "5 \uF052 - (-35) - \u002B(2d10-5)P" + ], + "BaseLines": [ + "Strike proves fatal for foe\u0027s", + "hand. One hand is completely", + "useless (and scarred). Clothing", + "is destroyed.", + "5 \uF052 - (-35) - \u002B(2d10-5)P" + ], + "RawCellText": "Strike proves fatal for foe\u0027s\nhand. One hand is completely\nuseless (and scarred). Clothing\nis destroyed.\n5 \uF052 - (-35) - \u002B(2d10-5)P", + "DescriptionText": "Strike proves fatal for foe\u0027s hand. One hand is completely useless (and scarred). Clothing is destroyed.", + "RawAffixText": "5 \uF052 - (-35) - \u002B(2d10-5)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-5", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-5)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 776, + "Width": 121, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 3104, + "BoundsWidth": 484, + "BoundsHeight": 212, + "CropLeft": 1596, + "CropTop": 3072, + "CropWidth": 580, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Blast goes right through foe. His", + "abdomen is badly burned.", + "7 \uF052 - 3 \uF06C - \u002B(3d10-9)P" + ], + "BaseLines": [ + "Blast goes right through foe. His", + "abdomen is badly burned.", + "7 \uF052 - 3 \uF06C - \u002B(3d10-9)P" + ], + "RawCellText": "Blast goes right through foe. His\nabdomen is badly burned.\n7 \uF052 - 3 \uF06C - \u002B(3d10-9)P", + "DescriptionText": "Blast goes right through foe. His abdomen is badly burned.", + "RawAffixText": "7 \uF052 - 3 \uF06C - \u002B(3d10-9)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 7, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "7 \uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-9", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-9)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 776, + "Width": 122, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 3104, + "BoundsWidth": 488, + "BoundsHeight": 212, + "CropLeft": 2092, + "CropTop": 3072, + "CropWidth": 584, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "The magical forces fuse all of", + "foe\u0027s fingers into one appendage.", + "The skin on his arms is badly", + "scarred.", + "\u002B21H -11 \uF052 - \u002B(4d10-10)P" + ], + "BaseLines": [ + "The magical forces fuse all of", + "foe\u0027s fingers into one appendage.", + "The skin on his arms is badly", + "scarred.", + "\u002B21H -11 \uF052 - \u002B(4d10-10)P" + ], + "RawCellText": "The magical forces fuse all of\nfoe\u0027s fingers into one appendage.\nThe skin on his arms is badly\nscarred.\n\u002B21H -11 \uF052 - \u002B(4d10-10)P", + "DescriptionText": "The magical forces fuse all of foe\u0027s fingers into one appendage. The skin on his arms is badly scarred.", + "RawAffixText": "\u002B21H -11 \uF052 - \u002B(4d10-10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 11, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "11 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 776, + "Width": 127, + "Height": 53 + }, + "SourceImagePath": "mana/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 3104, + "BoundsWidth": 508, + "BoundsHeight": 212, + "CropLeft": 2584, + "CropTop": 3072, + "CropWidth": 604, + "CropHeight": 276, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Foe ducks to avoid the blast, but", + "takes it full in the face. He is", + "knocked down.", + "\u002B9H - 3 \uF052 - (-15) - \u002B(d10-3)P" + ], + "BaseLines": [ + "Foe ducks to avoid the blast, but", + "takes it full in the face. He is", + "knocked down.", + "\u002B9H - 3 \uF052 - (-15) - \u002B(d10-3)P" + ], + "RawCellText": "Foe ducks to avoid the blast, but\ntakes it full in the face. He is\nknocked down.\n\u002B9H - 3 \uF052 - (-15) - \u002B(d10-3)P", + "DescriptionText": "Foe ducks to avoid the blast, but takes it full in the face. He is knocked down.", + "RawAffixText": "\u002B9H - 3 \uF052 - (-15) - \u002B(d10-3)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-3", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-3)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 832, + "Width": 130, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 3328, + "BoundsWidth": 520, + "BoundsHeight": 216, + "CropLeft": 572, + "CropTop": 3296, + "CropWidth": 616, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Forceful blast knocks foe down.", + "All equipment must check for", + "breakage.", + "2 \uF052 - \u002B(2d10-4)P" + ], + "BaseLines": [ + "Forceful blast knocks foe down.", + "All equipment must check for", + "breakage.", + "2 \uF052 - \u002B(2d10-4)P" + ], + "RawCellText": "Forceful blast knocks foe down.\nAll equipment must check for\nbreakage.\n2 \uF052 - \u002B(2d10-4)P", + "DescriptionText": "Forceful blast knocks foe down. All equipment must check for breakage.", + "RawAffixText": "2 \uF052 - \u002B(2d10-4)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-4", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-4)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 832, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 3328, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 1104, + "CropTop": 3296, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Massive blast destroys all", + "leather covers on foe; though", + "foe stumbles clear of the rest of", + "the blast.", + "2 \uF052 - (-15) - \u002B(2d10-3)P" + ], + "BaseLines": [ + "Massive blast destroys all", + "leather covers on foe; though", + "foe stumbles clear of the rest of", + "the blast.", + "2 \uF052 - (-15) - \u002B(2d10-3)P" + ], + "RawCellText": "Massive blast destroys all\nleather covers on foe; though\nfoe stumbles clear of the rest of\nthe blast.\n2 \uF052 - (-15) - \u002B(2d10-3)P", + "DescriptionText": "Massive blast destroys all leather covers on foe; though foe stumbles clear of the rest of the blast.", + "RawAffixText": "2 \uF052 - (-15) - \u002B(2d10-3)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-3", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-3)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 832, + "Width": 121, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 3328, + "BoundsWidth": 484, + "BoundsHeight": 216, + "CropLeft": 1596, + "CropTop": 3296, + "CropWidth": 580, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Blast grabs foe around the", + "chest. Any armor on the upper", + "arms and chest is destroyed.", + "\u002B16H - 8 \uF052 - \u002B(3d10-6)P" + ], + "BaseLines": [ + "Blast grabs foe around the", + "chest. Any armor on the upper", + "arms and chest is destroyed.", + "\u002B16H - 8 \uF052 - \u002B(3d10-6)P" + ], + "RawCellText": "Blast grabs foe around the\nchest. Any armor on the upper\narms and chest is destroyed.\n\u002B16H - 8 \uF052 - \u002B(3d10-6)P", + "DescriptionText": "Blast grabs foe around the chest. Any armor on the upper arms and chest is destroyed.", + "RawAffixText": "\u002B16H - 8 \uF052 - \u002B(3d10-6)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-6)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 832, + "Width": 120, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 3328, + "BoundsWidth": 480, + "BoundsHeight": 216, + "CropLeft": 2092, + "CropTop": 3296, + "CropWidth": 576, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "The raw magic enter foe\u0027s mouth", + "and fills him up. He glows brightly", + "for 12 rounds, then dies.", + "\u002B21H - \u002B(4d10-8)P" + ], + "BaseLines": [ + "The raw magic enter foe\u0027s mouth", + "and fills him up. He glows brightly", + "for 12 rounds, then dies.", + "\u002B21H - \u002B(4d10-8)P" + ], + "RawCellText": "The raw magic enter foe\u0027s mouth\nand fills him up. He glows brightly\nfor 12 rounds, then dies.\n\u002B21H - \u002B(4d10-8)P", + "DescriptionText": "The raw magic enter foe\u0027s mouth and fills him up. He glows brightly for 12 rounds, then dies.", + "RawAffixText": "\u002B21H - \u002B(4d10-8)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-8", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-8)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 832, + "Width": 127, + "Height": 54 + }, + "SourceImagePath": "mana/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 3328, + "BoundsWidth": 508, + "BoundsHeight": 216, + "CropLeft": 2584, + "CropTop": 3296, + "CropWidth": 604, + "CropHeight": 280, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Foe is blasted backwards by the", + "blast. He tries to stand, but one leg", + "refuses to operate (paralyzed for", + "d10 rounds).", + "\u002B11H - 2(-5) - \u002B(d10-2)P" + ], + "BaseLines": [ + "Foe is blasted backwards by the", + "blast. He tries to stand, but one leg", + "refuses to operate (paralyzed for", + "d10 rounds).", + "\u002B11H - 2(-5) - \u002B(d10-2)P" + ], + "RawCellText": "Foe is blasted backwards by the\nblast. He tries to stand, but one leg\nrefuses to operate (paralyzed for\nd10 rounds).\n\u002B11H - 2(-5) - \u002B(d10-2)P", + "DescriptionText": "Foe is blasted backwards by the blast. He tries to stand, but one leg refuses to operate (paralyzed for d10 rounds).", + "RawAffixText": "\u002B11H - 2(-5) - \u002B(d10-2)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-2", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-2)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 889, + "Width": 132, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 3556, + "BoundsWidth": 528, + "BoundsHeight": 260, + "CropLeft": 572, + "CropTop": 3524, + "CropWidth": 624, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "All leg coverings are blasted", + "away. Skin underneath is", + "severely burned.", + "\u002B17H - 2 \uF052 - \u002B(2d10-3)P" + ], + "BaseLines": [ + "All leg coverings are blasted", + "away. Skin underneath is", + "severely burned.", + "\u002B17H - 2 \uF052 - \u002B(2d10-3)P" + ], + "RawCellText": "All leg coverings are blasted\naway. Skin underneath is\nseverely burned.\n\u002B17H - 2 \uF052 - \u002B(2d10-3)P", + "DescriptionText": "All leg coverings are blasted away. Skin underneath is severely burned.", + "RawAffixText": "\u002B17H - 2 \uF052 - \u002B(2d10-3)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 17, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B17H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-3", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-3)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 889, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 3556, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 1104, + "CropTop": 3524, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s shield arm no longer has", + "any flesh (and is completely", + "useless). His head, side, and", + "legs are burned. If foe has a", + "shield, it is destroyed.", + "\u002B16H - 8 \uF052 - (-80) - \u002B(2d10-2)P" + ], + "BaseLines": [ + "Foe\u0027s shield arm no longer has", + "any flesh (and is completely", + "useless). His head, side, and", + "legs are burned. If foe has a", + "shield, it is destroyed.", + "\u002B16H - 8 \uF052 - (-80) - \u002B(2d10-2)P" + ], + "RawCellText": "Foe\u0027s shield arm no longer has\nany flesh (and is completely\nuseless). His head, side, and\nlegs are burned. If foe has a\nshield, it is destroyed.\n\u002B16H - 8 \uF052 - (-80) - \u002B(2d10-2)P", + "DescriptionText": "Foe\u0027s shield arm no longer has any flesh (and is completely useless). His head, side, and legs are burned. If foe has a shield, it is destroyed.", + "RawAffixText": "\u002B16H - 8 \uF052 - (-80) - \u002B(2d10-2)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-2", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-2)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 889, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 3556, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1596, + "CropTop": 3524, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Powerlul blast to foe. If foe has", + "abdominal armor, he is knocked", + "out. If not, he dies in 12 inactive", + "rounds from organ damage.", + "\u002B1H - \u002B(3d10-5)P" + ], + "BaseLines": [ + "Powerlul blast to foe. If foe has", + "abdominal armor, he is knocked", + "out. If not, he dies in 12 inactive", + "rounds from organ damage.", + "\u002B1H - \u002B(3d10-5)P" + ], + "RawCellText": "Powerlul blast to foe. If foe has\nabdominal armor, he is knocked\nout. If not, he dies in 12 inactive\nrounds from organ damage.\n\u002B1H - \u002B(3d10-5)P", + "DescriptionText": "Powerlul blast to foe. If foe has abdominal armor, he is knocked out. If not, he dies in 12 inactive rounds from organ damage.", + "RawAffixText": "\u002B1H - \u002B(3d10-5)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-5", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-5)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 889, + "Width": 122, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 3556, + "BoundsWidth": 488, + "BoundsHeight": 260, + "CropLeft": 2092, + "CropTop": 3524, + "CropWidth": 584, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Massive fluxes of mana fuse", + "foe\u0027s kneecaps to the leg bones.", + "Foe will die in 9 rounds from", + "shock and nervous system", + "overload.", + "\u002B21H - \u002B(4d10-6)P" + ], + "BaseLines": [ + "Massive fluxes of mana fuse", + "foe\u0027s kneecaps to the leg bones.", + "Foe will die in 9 rounds from", + "shock and nervous system", + "overload.", + "\u002B21H - \u002B(4d10-6)P" + ], + "RawCellText": "Massive fluxes of mana fuse\nfoe\u0027s kneecaps to the leg bones.\nFoe will die in 9 rounds from\nshock and nervous system\noverload.\n\u002B21H - \u002B(4d10-6)P", + "DescriptionText": "Massive fluxes of mana fuse foe\u0027s kneecaps to the leg bones. Foe will die in 9 rounds from shock and nervous system overload.", + "RawAffixText": "\u002B21H - \u002B(4d10-6)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-6", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-6)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 889, + "Width": 125, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 3556, + "BoundsWidth": 500, + "BoundsHeight": 260, + "CropLeft": 2584, + "CropTop": 3524, + "CropWidth": 596, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Foe takes the strike right in the", + "chest. Any armor there heats up,", + "burning foe\u0027s chest. Foe\u0027s neck", + "now has a nice sunburn.", + "\u002B16H - 2 \uF052 - \u002B(d10-1)P" + ], + "BaseLines": [ + "Foe takes the strike right in the", + "chest. Any armor there heats up,", + "burning foe\u0027s chest. Foe\u0027s neck", + "now has a nice sunburn.", + "\u002B16H - 2 \uF052 - \u002B(d10-1)P" + ], + "RawCellText": "Foe takes the strike right in the\nchest. Any armor there heats up,\nburning foe\u0027s chest. Foe\u0027s neck\nnow has a nice sunburn.\n\u002B16H - 2 \uF052 - \u002B(d10-1)P", + "DescriptionText": "Foe takes the strike right in the chest. Any armor there heats up, burning foe\u0027s chest. Foe\u0027s neck now has a nice sunburn.", + "RawAffixText": "\u002B16H - 2 \uF052 - \u002B(d10-1)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 16, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B16H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10-1", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10-1)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 957, + "Width": 130, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 3828, + "BoundsWidth": 520, + "BoundsHeight": 260, + "CropLeft": 572, + "CropTop": 3796, + "CropWidth": 616, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "The blast hits foe between the", + "eyes. If wearing a helmet, it is", + "blasted off his head. Hair and", + "scalp are singed. Blast blinds", + "foe for 6 rounds.", + "8 \uF052 - \u002B(2d10-2)P" + ], + "BaseLines": [ + "The blast hits foe between the", + "eyes. If wearing a helmet, it is", + "blasted off his head. Hair and", + "scalp are singed. Blast blinds", + "foe for 6 rounds.", + "8 \uF052 - \u002B(2d10-2)P" + ], + "RawCellText": "The blast hits foe between the\neyes. If wearing a helmet, it is\nblasted off his head. Hair and\nscalp are singed. Blast blinds\nfoe for 6 rounds.\n8 \uF052 - \u002B(2d10-2)P", + "DescriptionText": "The blast hits foe between the eyes. If wearing a helmet, it is blasted off his head. Hair and scalp are singed. Blast blinds foe for 6 rounds.", + "RawAffixText": "8 \uF052 - \u002B(2d10-2)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-2", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-2)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 957, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 3828, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 1104, + "CropTop": 3796, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Foe falls under the weight of", + "your blast. He can find no", + "release from the pain. Foe is", + "unconscious and twitching.", + "\u002B19H - 9 \uF052 - (-85) - \u002B(2d10-1)P" + ], + "BaseLines": [ + "Foe falls under the weight of", + "your blast. He can find no", + "release from the pain. Foe is", + "unconscious and twitching.", + "\u002B19H - 9 \uF052 - (-85) - \u002B(2d10-1)P" + ], + "RawCellText": "Foe falls under the weight of\nyour blast. He can find no\nrelease from the pain. Foe is\nunconscious and twitching.\n\u002B19H - 9 \uF052 - (-85) - \u002B(2d10-1)P", + "DescriptionText": "Foe falls under the weight of your blast. He can find no release from the pain. Foe is unconscious and twitching.", + "RawAffixText": "\u002B19H - 9 \uF052 - (-85) - \u002B(2d10-1)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 19, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B19H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10-1", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10-1)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 957, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 3828, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1596, + "CropTop": 3796, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Mana consumes foe\u0027s upper", + "body. If he has a helm, he is", + "permanently blinded and in a", + "coma for 2d10 days. If not, he", + "dies in 6 rounds.", + "\u002B1H - \u002B(3d10-4)P" + ], + "BaseLines": [ + "Mana consumes foe\u0027s upper", + "body. If he has a helm, he is", + "permanently blinded and in a", + "coma for 2d10 days. If not, he", + "dies in 6 rounds.", + "\u002B1H - \u002B(3d10-4)P" + ], + "RawCellText": "Mana consumes foe\u0027s upper\nbody. If he has a helm, he is\npermanently blinded and in a\ncoma for 2d10 days. If not, he\ndies in 6 rounds.\n\u002B1H - \u002B(3d10-4)P", + "DescriptionText": "Mana consumes foe\u0027s upper body. If he has a helm, he is permanently blinded and in a coma for 2d10 days. If not, he dies in 6 rounds.", + "RawAffixText": "\u002B1H - \u002B(3d10-4)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-4", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-4)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 957, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 3828, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 2092, + "CropTop": 3796, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Foe glows intensely for 6 rounds", + "(while he writhes in pain). Then", + "foe collapses into a pile of", + "glowing ash.", + "\u002B26H - \u002B(4d10-4)P" + ], + "BaseLines": [ + "Foe glows intensely for 6 rounds", + "(while he writhes in pain). Then", + "foe collapses into a pile of", + "glowing ash.", + "\u002B26H - \u002B(4d10-4)P" + ], + "RawCellText": "Foe glows intensely for 6 rounds\n(while he writhes in pain). Then\nfoe collapses into a pile of\nglowing ash.\n\u002B26H - \u002B(4d10-4)P", + "DescriptionText": "Foe glows intensely for 6 rounds (while he writhes in pain). Then foe collapses into a pile of glowing ash.", + "RawAffixText": "\u002B26H - \u002B(4d10-4)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 26, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B26H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-4", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-4)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 957, + "Width": 125, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 3828, + "BoundsWidth": 500, + "BoundsHeight": 260, + "CropLeft": 2584, + "CropTop": 3796, + "CropWidth": 596, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Raw power fills foe until his eyes", + "glow. He is blinded for d10 rounds.", + "\uF052 - 4 \uF06C - \u002B(d10)P" + ], + "BaseLines": [ + "Raw power fills foe until his eyes", + "glow. He is blinded for d10 rounds.", + "\uF052 - 4 \uF06C - \u002B(d10)P" + ], + "RawCellText": "Raw power fills foe until his eyes\nglow. He is blinded for d10 rounds.\n\uF052 - 4 \uF06C - \u002B(d10)P", + "DescriptionText": "Raw power fills foe until his eyes glow. He is blinded for d10 rounds.", + "RawAffixText": "\uF052 - 4 \uF06C - \u002B(d10)P", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\uF052" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4 \uF06C" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 1025, + "Width": 132, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 4100, + "BoundsWidth": 528, + "BoundsHeight": 260, + "CropLeft": 572, + "CropTop": 4068, + "CropWidth": 624, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "The mana blast hits foe in the", + "neck. Powerlul light erupts from", + "his mouth. He falls to the", + "ground and dies in nine painful", + "rounds.", + "\u002B21H -12 \uF052 - (\u002B10) - \u002B", + "(2d10-1 )P" + ], + "BaseLines": [ + "The mana blast hits foe in the", + "neck. Powerlul light erupts from", + "his mouth. He falls to the", + "ground and dies in nine painful", + "rounds.", + "\u002B21H -12 \uF052 - (\u002B10) - \u002B", + "(2d10-1 )P" + ], + "RawCellText": "The mana blast hits foe in the\nneck. Powerlul light erupts from\nhis mouth. He falls to the\nground and dies in nine painful\nrounds.\n\u002B21H -12 \uF052 - (\u002B10) - \u002B\n(2d10-1 )P", + "DescriptionText": "The mana blast hits foe in the neck. Powerlul light erupts from his mouth. He falls to the ground and dies in nine painful rounds.", + "RawAffixText": "\u002B21H -12 \uF052 - (\u002B10) - \u002B\n(2d10-1 )P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12 \uF052" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 1025, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 4100, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 1104, + "CropTop": 4068, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Massive magical blast mutates", + "foe. If he has no chest armor,", + "he dies instantly. Otherwise, he", + "screams for nine rounds before", + "dieing.", + "\u002B1H - \u002B(2d10)P" + ], + "BaseLines": [ + "Massive magical blast mutates", + "foe. If he has no chest armor,", + "he dies instantly. Otherwise, he", + "screams for nine rounds before", + "dieing.", + "\u002B1H - \u002B(2d10)P" + ], + "RawCellText": "Massive magical blast mutates\nfoe. If he has no chest armor,\nhe dies instantly. Otherwise, he\nscreams for nine rounds before\ndieing.\n\u002B1H - \u002B(2d10)P", + "DescriptionText": "Massive magical blast mutates foe. If he has no chest armor, he dies instantly. Otherwise, he screams for nine rounds before dieing.", + "RawAffixText": "\u002B1H - \u002B(2d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 1025, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 4100, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1596, + "CropTop": 4068, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Magical blast begins to cook", + "foe. Internal organs are toasted", + "and blood evaporates. He dies", + "in 6 inactive rounds. Oh the", + "pain!", + "\u002B21H - \u002B(3d10-2)P" + ], + "BaseLines": [ + "Magical blast begins to cook", + "foe. Internal organs are toasted", + "and blood evaporates. He dies", + "in 6 inactive rounds. Oh the", + "pain!", + "\u002B21H - \u002B(3d10-2)P" + ], + "RawCellText": "Magical blast begins to cook\nfoe. Internal organs are toasted\nand blood evaporates. He dies\nin 6 inactive rounds. Oh the\npain!\n\u002B21H - \u002B(3d10-2)P", + "DescriptionText": "Magical blast begins to cook foe. Internal organs are toasted and blood evaporates. He dies in 6 inactive rounds. Oh the pain!", + "RawAffixText": "\u002B21H - \u002B(3d10-2)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10-2", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10-2)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 1025, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 4100, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 2092, + "CropTop": 4068, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Foe is momentarily transformed", + "into a power monster, but is", + "consumed by the raging mana.", + "All that is left are the echoes of", + "his screams.", + "(\u002B10) - \u002B(4d10-2)P" + ], + "BaseLines": [ + "Foe is momentarily transformed", + "into a power monster, but is", + "consumed by the raging mana.", + "All that is left are the echoes of", + "his screams.", + "(\u002B10) - \u002B(4d10-2)P" + ], + "RawCellText": "Foe is momentarily transformed\ninto a power monster, but is\nconsumed by the raging mana.\nAll that is left are the echoes of\nhis screams.\n(\u002B10) - \u002B(4d10-2)P", + "DescriptionText": "Foe is momentarily transformed into a power monster, but is consumed by the raging mana. All that is left are the echoes of his screams.", + "RawAffixText": "(\u002B10) - \u002B(4d10-2)P", + "Effects": [ + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10-2", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10-2)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 1025, + "Width": 125, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 4100, + "BoundsWidth": 500, + "BoundsHeight": 260, + "CropLeft": 2584, + "CropTop": 4068, + "CropWidth": 596, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "The mana scars foe\u0027 permanently.", + "He loses consciousness from the", + "blast and has dreams of being on", + "fire.", + "\u002B21H - 5 \uF052 - \u002B(d10)P" + ], + "BaseLines": [ + "The mana scars foe\u0027 permanently.", + "He loses consciousness from the", + "blast and has dreams of being on", + "fire.", + "\u002B21H - 5 \uF052 - \u002B(d10)P" + ], + "RawCellText": "The mana scars foe\u0027 permanently.\nHe loses consciousness from the\nblast and has dreams of being on\nfire.\n\u002B21H - 5 \uF052 - \u002B(d10)P", + "DescriptionText": "The mana scars foe\u0027 permanently. He loses consciousness from the blast and has dreams of being on fire.", + "RawAffixText": "\u002B21H - 5 \uF052 - \u002B(d10)P", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 21, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B21H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5 \uF052" + }, + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002Bd10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 155, + "Top": 1093, + "Width": 131, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 620, + "BoundsTop": 4372, + "BoundsWidth": 524, + "BoundsHeight": 260, + "CropLeft": 572, + "CropTop": 4340, + "CropWidth": 620, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "The powerful blast melts away", + "foe\u0027s clothing and starts to peel", + "away the skin underneath. Foe", + "falls into a coma for d10 weeks,", + "then dies.", + "\u002B26H" + ], + "BaseLines": [ + "The powerful blast melts away", + "foe\u0027s clothing and starts to peel", + "away the skin underneath. Foe", + "falls into a coma for d10 weeks,", + "then dies.", + "\u002B26H" + ], + "RawCellText": "The powerful blast melts away\nfoe\u0027s clothing and starts to peel\naway the skin underneath. Foe\nfalls into a coma for d10 weeks,\nthen dies.\n\u002B26H", + "DescriptionText": "The powerful blast melts away foe\u0027s clothing and starts to peel away the skin underneath. Foe falls into a coma for d10 weeks, then dies.", + "RawAffixText": "\u002B26H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 26, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B26H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 288, + "Top": 1093, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1152, + "BoundsTop": 4372, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 1104, + "CropTop": 4340, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Focussed blast to foe\u0027s head", + "proves fatal. If foe has a helm,", + "his head cooks (dies in 2", + "rounds); otherwise, head is", + "vaporized instantly.", + "(\u002B10) - \u002B(2d10)P" + ], + "BaseLines": [ + "Focussed blast to foe\u0027s head", + "proves fatal. If foe has a helm,", + "his head cooks (dies in 2", + "rounds); otherwise, head is", + "vaporized instantly.", + "(\u002B10) - \u002B(2d10)P" + ], + "RawCellText": "Focussed blast to foe\u0027s head\nproves fatal. If foe has a helm,\nhis head cooks (dies in 2\nrounds); otherwise, head is\nvaporized instantly.\n(\u002B10) - \u002B(2d10)P", + "DescriptionText": "Focussed blast to foe\u0027s head proves fatal. If foe has a helm, his head cooks (dies in 2 rounds); otherwise, head is vaporized instantly.", + "RawAffixText": "(\u002B10) - \u002B(2d10)P", + "Effects": [ + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B2d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(2d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 411, + "Top": 1093, + "Width": 120, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 1644, + "BoundsTop": 4372, + "BoundsWidth": 480, + "BoundsHeight": 260, + "CropLeft": 1596, + "CropTop": 4340, + "CropWidth": 576, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Foe cannot handle the mana", + "ovedoad. His screams are", + "heard miles away, while he dies", + "in 2 rounds. He continues to", + "glow.", + "(\u002B15) - \u002B(3d10)P" + ], + "BaseLines": [ + "Foe cannot handle the mana", + "ovedoad. His screams are", + "heard miles away, while he dies", + "in 2 rounds. He continues to", + "glow.", + "(\u002B15) - \u002B(3d10)P" + ], + "RawCellText": "Foe cannot handle the mana\novedoad. His screams are\nheard miles away, while he dies\nin 2 rounds. He continues to\nglow.\n(\u002B15) - \u002B(3d10)P", + "DescriptionText": "Foe cannot handle the mana ovedoad. His screams are heard miles away, while he dies in 2 rounds. He continues to glow.", + "RawAffixText": "(\u002B15) - \u002B(3d10)P", + "Effects": [ + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B3d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(3d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 535, + "Top": 1093, + "Width": 121, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2140, + "BoundsTop": 4372, + "BoundsWidth": 484, + "BoundsHeight": 260, + "CropLeft": 2092, + "CropTop": 4340, + "CropWidth": 580, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Mana consumes everything. Foe", + "is instantly dead. Everything", + "within 10\u0027 will glow for d10 days", + "(within 50\u0027 will glow for d10", + "hours).", + "(\u002B20) - \u002B(4d10)P" + ], + "BaseLines": [ + "Mana consumes everything. Foe", + "is instantly dead. Everything", + "within 10\u0027 will glow for d10 days", + "(within 50\u0027 will glow for d10", + "hours).", + "(\u002B20) - \u002B(4d10)P" + ], + "RawCellText": "Mana consumes everything. Foe\nis instantly dead. Everything\nwithin 10\u0027 will glow for d10 days\n(within 50\u0027 will glow for d10\nhours).\n(\u002B20) - \u002B(4d10)P", + "DescriptionText": "Mana consumes everything. Foe is instantly dead. Everything within 10\u0027 will glow for d10 days (within 50\u0027 will glow for d10 hours).", + "RawAffixText": "(\u002B20) - \u002B(4d10)P", + "Effects": [ + { + "EffectCode": "power_point_modifier", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": "\u002B4d10", + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B(4d10)P" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 658, + "Top": 1093, + "Width": 125, + "Height": 65 + }, + "SourceImagePath": "mana/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3568, + "PageHeight": 5052, + "BoundsLeft": 2632, + "BoundsTop": 4372, + "BoundsWidth": 500, + "BoundsHeight": 260, + "CropLeft": 2584, + "CropTop": 4340, + "CropWidth": 596, + "CropHeight": 324, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/source.xml b/src/RolemasterDb.App/import-artifacts/critical/mana/source.xml new file mode 100644 index 0000000..b21602d --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/mana/source.xml @@ -0,0 +1,576 @@ + + + + + + + + + + + + + +A +B +C +D +E +Lots of fireworks, but little effect. +Somewhere a bell tolls. +Weak blast. +Foe dances around your blast. Foe does damage trying to +dodge. ++1H ++1H ++2H ++3H ++4H +Power flows over foe. +Foe is singed by the mana +blast. +A few extra sparks startle foe. +Foe must have mana repellant +on! Why didn't that work? +Foe dodges, but loses ground. +You have the iniative next round. ++2H ++3H ++4H ++5H ++5H +Foe's eyes are filled with raw +power. You have the initiative next +round. +Foe is shaken by the force of +your blast. You have the +initiative next round. +Foe is impressed, but you know +your blast was nothing +spectacular. You have the +Foe is completely surrounded +by mana; he seems only +shaken. You have initiative next +The quick flash of light makes +foe cautious. You have the +initiative next round. ++3H ++3H ++4H ++5H + +7H - +(4d10-30)P +Blast shakes foe to the bone. You +have the initiative next round. +Foe cannot evade. You have +the initiative for the next two +Foe gets an unusual rash. +You have the initiative next +Foe attacks the blast itself and +it seems to work! +Foe is taken aback by your fierce +expression. ++4H ++1H ++6H + +7H - + + - +(3d10-24)P + +8H - + + -+(4d10-28)P +Foe's gear begins to glow from the +assault! +The blast rattles foe's armor +(which must check for +breakage). For a moment the +armor glows. +This fancy lightshow makes foe +wary of you. His equipment will +glow for the next d10 days. +Good blast causes foe to +stagger. He won't +underestimate you again. +You force foe back, but he is not +as seriously damaged as you had +hoped. ++5H ++7H + +8H - + + - +(2d10-18)P + +9H - + +- +(3d10-21)P + +10H - 2 + + - +(4d10-25)P +Raw mana ripples foe's exposed +skin. He is easily distracted. +Foe's shield begins to melt from +the blast. Unless he drops it, it +will burn him. +Foe legs get weak from the of +the blast. You gain the initiative +while he tries to regain his +balance. +A wave of mana washes over +foe. Any exposed skin is given +a good sunburn. He doesn't feel +so good. +Something in foe's backpack +seems to attract the blast. His +neck and shoulders are lightly +burned. + +7H - + + +8H - + + - +(2d10-18)P + +9H - + + - +(2d10-16)P + +10H - 2 + + - +(3d10-20)P + +11H - 3 + + - +(4d10-24)P +Foe's shirt now glows magically. +Foe dodges most of the blast, +but not all of it. +The raw power slaps foe +around. All exposed skin suffers +from a mild sunburn. +Foe is surprised by the pain +from your blast. He is having +difficulty focussing his attention +on you. +Blast strikes foe's weapon. +Wooden weapon is destroyed. +Metal weapon becomes too hot +to hold. + +8H - + + - +(d10-9)P + +9H - + + - +(2d10-16)P + +10H - 2 + + - +(2d10-14)P + +11H - 3 + + - +(3d10-19)P + +13H - 4 + + - +(4d10-24)P +A random piece of foe's equipment +bursts from the influx of power. +Foe ducks, but the blast hits his +back. He is falls forward, but +keeps his feet. +Foe turns to avoid the blast and +takes the full force on his side. +Armor does not help. +Good blast. Foe thinks his +clothes are ablaze and runs +aimlessly about for 3 rounds. +The raw power is seeking foe's +heart. He frantically scampers +back. His chest is burned. + +9H - + + - +(d10-8)P + +9H - 2 + + - +(2d10-14)P + +10H - 4 + + - +(2d10-12)P + +11H - 4 + + - +(3d10-18)P + +14H - 3 + + - + + - +(4d10-22)P +Foe's hair is now magically +imbued! If he does not wear a hat +(or helm), his head will glow like a +lantern. +Mana engulfs foe completely. +When the blast ends, he +realizes that he is not dead. +Strong blast to foe's legs +knocks him back 5 feet. He +doesn't know what hit him. +Foe staggers to get clear of the +blast that has targetted his +head. +Blast targets foe's neck. Any +neck gear is melted away and +clothes on the shoulders are +partially burned. + +10H - 2 + + - +(d10-7)P + +11H - 3 + + - +(2d10-12)P + +11H -3 + + - +(2d10-10)P + +11H - 2 + + - +(3d10-17)P + +16H - 4 + + - +(4d10-20)P +Foe's left side is hit, spinning him +around. Any object held in the left +hand is now permanently +damaged. +Focussed blast melts foe's leg +armor. The blast is short-lived, +but armor is now gone. +Raw magic completely covers +foe. He almost loses his footing. +He thinks he is on fire. +Powerlul blast disarms foe. The +mana seems to cling to foe, +making him glow for a while. +Raw power strikes foe's legs. +They begin to feel like runny jello. +skin is burned and muscles are +damaged. + +10H - 3 + + - +(d10-6)P + +10H- 2 + + - + + - + (2d10-11)P + +11H - 3 + + - + + - (-5) - +(2d10-9)P + +14H - 7 + + - +(3d10-14)P +16H - 5 + + - (-10) - +(4d10-16)P +Mana completely engulfs foe, +making him stumble backwards. +Foe throws himself to the +ground to avoid the blast, but +the blast hits him anyway. +Powerful blast to foe's weapon +arm spins him around twice +before he falls to the ground. +Foe closes his eyes too late! He +is blinded for 2d10 rounds and +has severe burns on his face. +Foe will glow for d10 hours. He +screams in pain, drops, and dies +in 6 rounds. + +10H - + + - (-10) - +(2d10)P + +11H - 5 + + - +(2d10)P + +13H - 3 + + - +(3d10)P + 15 + + - (-5) - +(4d10)P + +26H - (+5d10)P +Foe spins to avoid the blast. His +side glows for a moment. Any old +wounds are aggrevated. +Foe cannot evade the strike. +Mana invades foe's garments +and equipment; making +everything glow for 6 rounds. +Foe attempts to dodge, the +blast, but trips. He drops to one +knee, but rises quickly. His skin +blisters. +Foe can be quite acrobatic +when he wants to be. He jumps +away from your blast, but falls +to the ground in doing so. He is +prone for 1 round. +The blast completely destroyed +anything organic in foe's hand. +Non-organic materials are turned +to slag. + +9H - 3 + + - (-5) - +(d10-6)P +( ) +( +10)P + 3 + + - + + - (-10) - +(2d10-8)P + +16H - 3 + + - +(3d10-13)P + 5 + +- (-10) - +(4d10-14)P +Raw mana melts away foe's +clothing and singes his hair. +Mana blast is strong around the +edges, damaging foe's arm and +leg armor. Everything else +heats up. +Quick blast hits foe directly in +the chest. Organic armor is +immediately destroyed. Metal +armor melts. +Mana blast causes foe's +nervous system to ovedoad. He +suffers nerve damage in his +weapon arm. +Chest strike knocks foe down. +Any chest armor is destroyed. +The raw mana crackles over foe. + +13H - + + - +(d10-5)P +10H - + + - (+10)-+(2d10-8)P + 8 + + - (-10) - +(2d10-6)P + 5 + + - (-45) - +(3d10-11 )P +16H - 6 + + - (-55) - +(4d10-12)P +Foe's right arm is targetted by the +blast. Any weapon there is +damaged. +Foe's waist is gripped by the +blast. He finds it hard to +breathe. +Strike proves fatal for foe's +hand. One hand is completely +useless (and scarred). Clothing +is destroyed. +Blast goes right through foe. His +abdomen is badly burned. +The magical forces fuse all of +foe's fingers into one appendage. +The skin on his arms is badly +scarred. + +11H - 3 + + - + + - +(d10-4)P + +21H - 2 + + - +(2d10-6) P + 5 + + - (-35) - +(2d10-5)P + 7 + + - 3 + + - +(3d10-9)P + +21H -11 + + - +(4d10-10)P +Foe ducks to avoid the blast, but +takes it full in the face. He is +knocked down. +Forceful blast knocks foe down. +All equipment must check for +breakage. +Massive blast destroys all +leather covers on foe; though +foe stumbles clear of the rest of +the blast. +Blast grabs foe around the +chest. Any armor on the upper +arms and chest is destroyed. +The raw magic enter foe's mouth +and fills him up. He glows brightly +for 12 rounds, then dies. + +9H - 3 + + - (-15) - +(d10-3)P + 2 + + - +(2d10-4)P + 2 + + - (-15) - +(2d10-3)P + +16H - 8 + + - +(3d10-6)P + +21H - +(4d10-8)P +Foe is blasted backwards by the +blast. He tries to stand, but one leg +refuses to operate (paralyzed for +d10 rounds). +All leg coverings are blasted +away. Skin underneath is +severely burned. +Foe's shield arm no longer has +any flesh (and is completely +useless). His head, side, and +legs are burned. If foe has a +shield, it is destroyed. +Powerlul blast to foe. If foe has +abdominal armor, he is knocked +out. If not, he dies in 12 inactive +rounds from organ damage. +Massive fluxes of mana fuse +foe's kneecaps to the leg bones. +Foe will die in 9 rounds from +shock and nervous system +overload. + +11H - 2(-5) - +(d10-2)P + +17H - 2 + + - +(2d10-3)P +16H - 8 + + - (-80) - +(2d10-2)P + +1H - +(3d10-5)P + +21H - +(4d10-6)P +Foe takes the strike right in the +chest. Any armor there heats up, +burning foe's chest. Foe's neck +now has a nice sunburn. +The blast hits foe between the +eyes. If wearing a helmet, it is +blasted off his head. Hair and +scalp are singed. Blast blinds +foe for 6 rounds. +Foe falls under the weight of +your blast. He can find no +release from the pain. Foe is +unconscious and twitching. +Mana consumes foe's upper +body. If he has a helm, he is +permanently blinded and in a +coma for 2d10 days. If not, he +dies in 6 rounds. +Foe glows intensely for 6 rounds +(while he writhes in pain). Then +foe collapses into a pile of +glowing ash. + +16H - 2 + + - +(d10-1)P + 8 + + - +(2d10-2)P +19H - 9 + + - (-85) - +(2d10-1)P + +1H - +(3d10-4)P + +26H - +(4d10-4)P +Raw power fills foe until his eyes +glow. He is blinded for d10 rounds. +The mana blast hits foe in the +neck. Powerlul light erupts from +his mouth. He falls to the +ground and dies in nine painful +rounds. +Massive magical blast mutates +foe. If he has no chest armor, +he dies instantly. Otherwise, he +screams for nine rounds before +dieing. +Magical blast begins to cook +foe. Internal organs are toasted +and blood evaporates. He dies +in 6 inactive rounds. Oh the +pain! +Foe is momentarily transformed +into a power monster, but is +consumed by the raging mana. +All that is left are the echoes of +his screams. +11 + + - 4 + + - +(d10)P +21H -12 + + - (+10) - + +(2d10-1 )P + +1H - +(2d10)P + +21H - +(3d10-2)P + (+10) - +(4d10-2)P +The mana scars foe' permanently. +He loses consciousness from the +blast and has dreams of being on +fire. +The powerful blast melts away +foe's clothing and starts to peel +away the skin underneath. Foe +falls into a coma for d10 weeks, +then dies. +Focussed blast to foe's head +proves fatal. If foe has a helm, +his head cooks (dies in 2 +rounds); otherwise, head is +vaporized instantly. +Foe cannot handle the mana +ovedoad. His screams are +heard miles away, while he dies +in 2 rounds. He continues to +glow. +Mana consumes everything. Foe +is instantly dead. Everything +within 10' will glow for d10 days +(within 50' will glow for d10 +hours). + +21H - 5 + + - +(d10)P + +26H + (+10) - +(2d10)P + (+15) - +(3d10)P + (+20) - +(4d10)P +must parry = + + / no parry = + + / stun = + + / powerpoint modification (foe) = P +81-85 +86-90 +91-95 +96-99 +100 +61-65 +66 +67-70 +71-75 +76-80 +21-35 +36-45 +46-50 +51-55 +56-60 +MANA CRITICAL STRIKE TABLE +01-05 +06-10 +11-15 +16-20 + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/mana/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/mana/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/mana/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__01-05.png new file mode 100644 index 0000000..a7aa126 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__06-10.png new file mode 100644 index 0000000..67b54bb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__100.png new file mode 100644 index 0000000..2484486 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__11-15.png new file mode 100644 index 0000000..016b1e5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__16-20.png new file mode 100644 index 0000000..8a18c3f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__21-35.png new file mode 100644 index 0000000..27a78c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__36-45.png new file mode 100644 index 0000000..9e41020 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__46-50.png new file mode 100644 index 0000000..55c3b71 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__51-55.png new file mode 100644 index 0000000..7b39028 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__56-60.png new file mode 100644 index 0000000..2de129e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__61-65.png new file mode 100644 index 0000000..cbf1db1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__66.png new file mode 100644 index 0000000..25ffd94 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__67-70.png new file mode 100644 index 0000000..ade4567 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__71-75.png new file mode 100644 index 0000000..df5b454 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__76-80.png new file mode 100644 index 0000000..1e0f726 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__81-85.png new file mode 100644 index 0000000..64f8e2a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__86-90.png new file mode 100644 index 0000000..fbc3da3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__91-95.png new file mode 100644 index 0000000..cb36af2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__96-99.png new file mode 100644 index 0000000..4c14c73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__01-05.png new file mode 100644 index 0000000..812ffbe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__06-10.png new file mode 100644 index 0000000..3053b2b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__100.png new file mode 100644 index 0000000..83a4bf0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__11-15.png new file mode 100644 index 0000000..cd1543c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__16-20.png new file mode 100644 index 0000000..fb9f3b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__21-35.png new file mode 100644 index 0000000..0704acd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__36-45.png new file mode 100644 index 0000000..9adb28c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__46-50.png new file mode 100644 index 0000000..3a2c7df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__51-55.png new file mode 100644 index 0000000..bef4138 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__56-60.png new file mode 100644 index 0000000..86e4210 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__61-65.png new file mode 100644 index 0000000..ca7b3c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__66.png new file mode 100644 index 0000000..8c9419e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__67-70.png new file mode 100644 index 0000000..433ad5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__71-75.png new file mode 100644 index 0000000..5381240 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__76-80.png new file mode 100644 index 0000000..8585bfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__81-85.png new file mode 100644 index 0000000..66aa827 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__86-90.png new file mode 100644 index 0000000..7b85376 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__91-95.png new file mode 100644 index 0000000..fe2e5a4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__96-99.png new file mode 100644 index 0000000..0f6cd48 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__01-05.png new file mode 100644 index 0000000..1510e37 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__06-10.png new file mode 100644 index 0000000..cdc0ea4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__100.png new file mode 100644 index 0000000..7987f9f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__11-15.png new file mode 100644 index 0000000..1907abd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__16-20.png new file mode 100644 index 0000000..b3b6377 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__21-35.png new file mode 100644 index 0000000..184938d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__36-45.png new file mode 100644 index 0000000..3894b11 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__46-50.png new file mode 100644 index 0000000..6811d6f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__51-55.png new file mode 100644 index 0000000..4bb118b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__56-60.png new file mode 100644 index 0000000..852ba11 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__61-65.png new file mode 100644 index 0000000..21bdd5a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__66.png new file mode 100644 index 0000000..3d4d3eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__67-70.png new file mode 100644 index 0000000..7ada2fb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__71-75.png new file mode 100644 index 0000000..27f8bfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__76-80.png new file mode 100644 index 0000000..ecc81a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__81-85.png new file mode 100644 index 0000000..3da6e1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__86-90.png new file mode 100644 index 0000000..3cf40f0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__91-95.png new file mode 100644 index 0000000..ef5d084 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__96-99.png new file mode 100644 index 0000000..6a20d64 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__01-05.png new file mode 100644 index 0000000..6477ea3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__06-10.png new file mode 100644 index 0000000..1beb586 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__100.png new file mode 100644 index 0000000..f023c0e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__11-15.png new file mode 100644 index 0000000..a9ea530 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__16-20.png new file mode 100644 index 0000000..c4a2c6f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__21-35.png new file mode 100644 index 0000000..f7f290e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__36-45.png new file mode 100644 index 0000000..6bb3f29 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__46-50.png new file mode 100644 index 0000000..7261a97 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__51-55.png new file mode 100644 index 0000000..8dc527e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__56-60.png new file mode 100644 index 0000000..6484de1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__61-65.png new file mode 100644 index 0000000..97b3467 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__66.png new file mode 100644 index 0000000..b686724 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__67-70.png new file mode 100644 index 0000000..8d68bba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__71-75.png new file mode 100644 index 0000000..522c628 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__76-80.png new file mode 100644 index 0000000..e40766f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__81-85.png new file mode 100644 index 0000000..bb7b9f1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__86-90.png new file mode 100644 index 0000000..c2f7c5f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__91-95.png new file mode 100644 index 0000000..d21b17b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__96-99.png new file mode 100644 index 0000000..78c52b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__01-05.png new file mode 100644 index 0000000..ceafe09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__06-10.png new file mode 100644 index 0000000..73b0a3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__100.png new file mode 100644 index 0000000..dbbffaf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__11-15.png new file mode 100644 index 0000000..bcb79a9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__16-20.png new file mode 100644 index 0000000..5a7c2e8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__21-35.png new file mode 100644 index 0000000..2cbcf32 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__36-45.png new file mode 100644 index 0000000..c0650f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__46-50.png new file mode 100644 index 0000000..fbe9e03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__51-55.png new file mode 100644 index 0000000..0069c08 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__56-60.png new file mode 100644 index 0000000..2f01719 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__61-65.png new file mode 100644 index 0000000..70f380f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__66.png new file mode 100644 index 0000000..5c5fe67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__67-70.png new file mode 100644 index 0000000..ac3db18 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__71-75.png new file mode 100644 index 0000000..40cb26b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__76-80.png new file mode 100644 index 0000000..2b594fd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__81-85.png new file mode 100644 index 0000000..a6606d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__86-90.png new file mode 100644 index 0000000..7c86a2b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__91-95.png new file mode 100644 index 0000000..f5000db Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__96-99.png new file mode 100644 index 0000000..37b3ff1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/puncture/fragments.json new file mode 100644 index 0000000..54dea28 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/puncture/fragments.json @@ -0,0 +1,3302 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 47, + "Width": 22, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 58 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 82, + "Width": 106, + "Height": 9, + "Text": "Foe avoids most of the attack.", + "Confidence": null, + "CenterX": 135 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 215, + "Width": 105, + "Height": 9, + "Text": "Glancing blow. Nothing extra.", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 367, + "Width": 106, + "Height": 9, + "Text": "Foe dances clear of the worst.", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 518, + "Width": 67, + "Height": 9, + "Text": "Strike bounces off.", + "Confidence": null, + "CenterX": 551.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 670, + "Width": 57, + "Height": 9, + "Text": "Strike lands flat.", + "Confidence": null, + "CenterX": 698.5 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 194, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 647, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 803, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 147, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 82, + "Width": 100, + "Height": 9, + "Text": "Strike failed to connect well.", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 215, + "Width": 24, + "Height": 9, + "Text": "Panck!", + "Confidence": null, + "CenterX": 227 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 367, + "Width": 112, + "Height": 9, + "Text": "Nick your weapon and your foe.", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 518, + "Width": 99, + "Height": 9, + "Text": "Strike lands without energy.", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 140, + "Left": 670, + "Width": 143, + "Height": 9, + "Text": "Shot unbalances foe. You have initiative.", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 194, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 647, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 161, + "Left": 803, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 189, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 82, + "Width": 129, + "Height": 9, + "Text": "Strike causes foe to flinch. You gain", + "Confidence": null, + "CenterX": 146.5 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 82, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 118 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 215, + "Width": 128, + "Height": 9, + "Text": "Foe questions his resolve. You gain", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 215, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 367, + "Width": 140, + "Height": 9, + "Text": "Foe\u0027s evasion puts him out of position.", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 367, + "Width": 106, + "Height": 9, + "Text": "You gain initiative next round.", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 518, + "Width": 139, + "Height": 9, + "Text": "Foe evades and maneuvers for a better", + "Confidence": null, + "CenterX": 587.5 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 518, + "Width": 31, + "Height": 9, + "Text": "position.", + "Confidence": null, + "CenterX": 533.5 + }, + { + "PageNumber": 1, + "Top": 177, + "Left": 670, + "Width": 147, + "Height": 9, + "Text": "Foe is fearful of your skill and steps back", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 188, + "Left": 670, + "Width": 101, + "Height": 9, + "Text": "from your mighty onslaught.", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 194, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 201 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 346, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 496, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 631, + "Width": 30, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 207, + "Left": 787, + "Width": 30, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 236, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 82, + "Width": 96, + "Height": 9, + "Text": "Foe steps back defensively.", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 215, + "Width": 130, + "Height": 9, + "Text": "For steps back and avoids the worst.", + "Confidence": null, + "CenterX": 280 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 367, + "Width": 139, + "Height": 9, + "Text": "Blow to foe\u0027s side. If foe has a belt it is", + "Confidence": null, + "CenterX": 436.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 367, + "Width": 30, + "Height": 9, + "Text": "severed.", + "Confidence": null, + "CenterX": 382 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 518, + "Width": 146, + "Height": 9, + "Text": "Precise strike to foe\u0027s side. You have the", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 518, + "Width": 76, + "Height": 9, + "Text": "initiative for 1 round.", + "Confidence": null, + "CenterX": 556 + }, + { + "PageNumber": 1, + "Top": 224, + "Left": 670, + "Width": 126, + "Height": 9, + "Text": "Foe vibrates from the impact of the", + "Confidence": null, + "CenterX": 733 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 670, + "Width": 22, + "Height": 9, + "Text": "strike.", + "Confidence": null, + "CenterX": 681 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 184, + "Width": 27, + "Height": 9, + "Text": "\u002B1H-\u03C0", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 311, + "Width": 48, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 335 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 461, + "Width": 48, + "Height": 9, + "Text": "\u002B3H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 485 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 644, + "Width": 18, + "Height": 9, + "Text": "(-10)", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 254, + "Left": 781, + "Width": 37, + "Height": 9, + "Text": "\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 799.5 + }, + { + "PageNumber": 1, + "Top": 285, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 82, + "Width": 114, + "Height": 9, + "Text": "Convince foe of his peril by just", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 82, + "Width": 78, + "Height": 9, + "Text": "missing his abdomen.", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 215, + "Width": 141, + "Height": 9, + "Text": "Foe is uncertain about your next attack.", + "Confidence": null, + "CenterX": 285.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 215, + "Width": 147, + "Height": 9, + "Text": "He choses to let you make the first move", + "Confidence": null, + "CenterX": 288.5 + }, + { + "PageNumber": 1, + "Top": 290, + "Left": 215, + "Width": 83, + "Height": 9, + "Text": "(you gain the initiative).", + "Confidence": null, + "CenterX": 256.5 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 367, + "Width": 132, + "Height": 9, + "Text": "Strike crosses foe\u0027s head. If he has a", + "Confidence": null, + "CenterX": 433 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 367, + "Width": 120, + "Height": 9, + "Text": "helm it is knocked off and dented.", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 518, + "Width": 125, + "Height": 9, + "Text": "You wound foe in hip. Strike strips", + "Confidence": null, + "CenterX": 580.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 518, + "Width": 124, + "Height": 9, + "Text": "equipment from right side of waist.", + "Confidence": null, + "CenterX": 580 + }, + { + "PageNumber": 1, + "Top": 269, + "Left": 670, + "Width": 141, + "Height": 9, + "Text": "Deal foe a measurable blow to his side.", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 670, + "Width": 147, + "Height": 9, + "Text": "Any one container on your foe now has a", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 290, + "Left": 670, + "Width": 37, + "Height": 9, + "Text": "hole in it.", + "Confidence": null, + "CenterX": 688.5 + }, + { + "PageNumber": 1, + "Top": 309, + "Left": 157, + "Width": 52, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0 (\u002B10)", + "Confidence": null, + "CenterX": 183 + }, + { + "PageNumber": 1, + "Top": 309, + "Left": 325, + "Width": 35, + "Height": 9, + "Text": "\u002B2H \u2013 2\u03C0", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 309, + "Left": 487, + "Width": 23, + "Height": 9, + "Text": "\u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 309, + "Left": 634, + "Width": 27, + "Height": 9, + "Text": "\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 647.5 + }, + { + "PageNumber": 1, + "Top": 309, + "Left": 758, + "Width": 60, + "Height": 9, + "Text": "\u002B2H \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 342, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 82, + "Width": 111, + "Height": 9, + "Text": "Nick foe\u0027s calf with long follow", + "Confidence": null, + "CenterX": 137.5 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 82, + "Width": 30, + "Height": 9, + "Text": "through.", + "Confidence": null, + "CenterX": 97 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 215, + "Width": 90, + "Height": 9, + "Text": "Cheap shot to foe\u0027s shin.", + "Confidence": null, + "CenterX": 260 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 367, + "Width": 126, + "Height": 9, + "Text": "Strike along foe\u0027s calf. The damage", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 367, + "Width": 89, + "Height": 9, + "Text": "takes a moment to show.", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 518, + "Width": 91, + "Height": 9, + "Text": "Close call for foe\u0027s groin.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 326, + "Left": 670, + "Width": 114, + "Height": 9, + "Text": "Strike to upper leg rips clothing.", + "Confidence": null, + "CenterX": 727 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 203, + "Width": 5, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 354, + "Left": 271, + "Width": 90, + "Height": 9, + "Text": "with leg greaves:\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 272, + "Width": 88, + "Height": 9, + "Text": "w/o leg greaves: \u002B2H \u2013 \u222B", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 500, + "Width": 9, + "Height": 9, + "Text": "2\u222B", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 354, + "Left": 565, + "Width": 96, + "Height": 9, + "Text": "with waist armor: \u002B4H \u2013 \u2211", + "Confidence": null, + "CenterX": 613 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 590, + "Width": 71, + "Height": 9, + "Text": "w/o waist armor: 3\u222B", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 354, + "Left": 731, + "Width": 86, + "Height": 9, + "Text": "with leg armor: \u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 774 + }, + { + "PageNumber": 1, + "Top": 365, + "Left": 731, + "Width": 87, + "Height": 9, + "Text": "w/o leg armor: \u002B2H \u2013 3\u222B", + "Confidence": null, + "CenterX": 774.5 + }, + { + "PageNumber": 1, + "Top": 404, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 82, + "Width": 122, + "Height": 9, + "Text": "Foe\u0027s evasion exposes his back to", + "Confidence": null, + "CenterX": 143 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 82, + "Width": 40, + "Height": 9, + "Text": "your strike.", + "Confidence": null, + "CenterX": 102 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 215, + "Width": 136, + "Height": 9, + "Text": "Blow to back damages any equipment", + "Confidence": null, + "CenterX": 283 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 215, + "Width": 40, + "Height": 9, + "Text": "worn there.", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 367, + "Width": 127, + "Height": 9, + "Text": "Lower back strike sends foe reeling.", + "Confidence": null, + "CenterX": 430.5 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 367, + "Width": 71, + "Height": 9, + "Text": "His guard is still up.", + "Confidence": null, + "CenterX": 402.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 518, + "Width": 147, + "Height": 9, + "Text": "Light strike pins foe\u0027s weapon arm to his", + "Confidence": null, + "CenterX": 591.5 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 518, + "Width": 17, + "Height": 9, + "Text": "side.", + "Confidence": null, + "CenterX": 526.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "Strike to side. If foe has armor, the blow", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 392, + "Left": 670, + "Width": 109, + "Height": 9, + "Text": "tears it open and exposes skin.", + "Confidence": null, + "CenterX": 724.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 160, + "Width": 48, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-30)", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 337, + "Width": 23, + "Height": 9, + "Text": "\u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 482, + "Width": 27, + "Height": 9, + "Text": "2\u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 495.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 622, + "Width": 40, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 692, + "Width": 125, + "Height": 9, + "Text": "with abdomen armor: \u002B8H \u2013 \u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 754.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 683, + "Width": 135, + "Height": 9, + "Text": "w/o abdomen armor: \u002B4H \u2013 \u2211\u220F \u2013 4\u222B", + "Confidence": null, + "CenterX": 750.5 + }, + { + "PageNumber": 1, + "Top": 464, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 82, + "Width": 120, + "Height": 9, + "Text": "Strike to foe\u0027s chest and he looks", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 82, + "Width": 39, + "Height": 9, + "Text": "impressed.", + "Confidence": null, + "CenterX": 101.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 215, + "Width": 136, + "Height": 9, + "Text": "Solid strike to foe\u0027s chest. Blood from", + "Confidence": null, + "CenterX": 283 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 215, + "Width": 92, + "Height": 9, + "Text": "wound ruins any heraldry.", + "Confidence": null, + "CenterX": 261 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 367, + "Width": 147, + "Height": 9, + "Text": "Strike toward chest. If foe has a shield, it", + "Confidence": null, + "CenterX": 440.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 367, + "Width": 126, + "Height": 9, + "Text": "is out of position for the rest of the", + "Confidence": null, + "CenterX": 430 + }, + { + "PageNumber": 1, + "Top": 468, + "Left": 367, + "Width": 25, + "Height": 9, + "Text": "round.", + "Confidence": null, + "CenterX": 379.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 518, + "Width": 131, + "Height": 9, + "Text": "Solid chest strike leaves bruises and", + "Confidence": null, + "CenterX": 583.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 518, + "Width": 22, + "Height": 9, + "Text": "blood.", + "Confidence": null, + "CenterX": 529 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 670, + "Width": 147, + "Height": 9, + "Text": "Foe goes low to evade your attack. Strike", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 670, + "Width": 142, + "Height": 9, + "Text": "takes foe down on one knee. Finish him.", + "Confidence": null, + "CenterX": 741 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 166, + "Width": 43, + "Height": 9, + "Text": "(\u03C0-25) \u2013 2\u222B", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 307, + "Width": 53, + "Height": 9, + "Text": "\u002B3H \u2013 2\u222B \u2013 2\u03C0", + "Confidence": null, + "CenterX": 333.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 455, + "Width": 55, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 482.5 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 586, + "Width": 76, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 751, + "Width": 67, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 784.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 82, + "Width": 120, + "Height": 9, + "Text": "Minor thigh wound. It could have", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 515, + "Left": 82, + "Width": 42, + "Height": 9, + "Text": "been better.", + "Confidence": null, + "CenterX": 103 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 215, + "Width": 120, + "Height": 9, + "Text": "Thigh wound does some damage.", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 367, + "Width": 72, + "Height": 9, + "Text": "Strike to foe\u0027s thigh.", + "Confidence": null, + "CenterX": 403 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 518, + "Width": 82, + "Height": 9, + "Text": "Strike foe in abdomen.", + "Confidence": null, + "CenterX": 559 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 670, + "Width": 141, + "Height": 9, + "Text": "Blow to foe\u0027s side. He stumbles to your", + "Confidence": null, + "CenterX": 740.5 + }, + { + "PageNumber": 1, + "Top": 515, + "Left": 670, + "Width": 47, + "Height": 9, + "Text": "right 10 feet.", + "Confidence": null, + "CenterX": 693.5 + }, + { + "PageNumber": 1, + "Top": 543, + "Left": 158, + "Width": 51, + "Height": 9, + "Text": "\u002B2H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 543, + "Left": 302, + "Width": 58, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 533, + "Left": 400, + "Width": 110, + "Height": 9, + "Text": "with leg armor: \u002B8H \u2013 \u2211\u220F \u2013 \u222B", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 543, + "Left": 376, + "Width": 134, + "Height": 9, + "Text": "w/o leg armor: \u002B5H \u2013 2\u2211 \u2013 2\u222B\u2013 (-10)", + "Confidence": null, + "CenterX": 443 + }, + { + "PageNumber": 1, + "Top": 533, + "Left": 548, + "Width": 114, + "Height": 9, + "Text": "with abdomen armor: \u002B5H \u2013 2\u220F", + "Confidence": null, + "CenterX": 605 + }, + { + "PageNumber": 1, + "Top": 543, + "Left": 527, + "Width": 135, + "Height": 9, + "Text": "w/o abdomen armor: \u002B3H \u2013 \u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 594.5 + }, + { + "PageNumber": 1, + "Top": 543, + "Left": 760, + "Width": 58, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F \u2013 5\u222B", + "Confidence": null, + "CenterX": 789 + }, + { + "PageNumber": 1, + "Top": 582, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 82, + "Width": 109, + "Height": 9, + "Text": "Minor forearm wound numbs", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 82, + "Width": 38, + "Height": 9, + "Text": "foe\u0027s grip.", + "Confidence": null, + "CenterX": 101 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 215, + "Width": 122, + "Height": 9, + "Text": "Forearm strike shakes foe up. Foe", + "Confidence": null, + "CenterX": 276 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 215, + "Width": 72, + "Height": 9, + "Text": "attempts a recovery.", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 367, + "Width": 120, + "Height": 9, + "Text": "Solid strike to foe\u0027s right forearm.", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 518, + "Width": 122, + "Height": 9, + "Text": "Blow to foe\u0027s weapon arm. Arm is", + "Confidence": null, + "CenterX": 579 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 518, + "Width": 23, + "Height": 9, + "Text": "numb.", + "Confidence": null, + "CenterX": 529.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 670, + "Width": 137, + "Height": 9, + "Text": "Catch foe\u0027s forearm. The wound opens", + "Confidence": null, + "CenterX": 738.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 670, + "Width": 85, + "Height": 9, + "Text": "up nicely. Foe is in pain.", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 611, + "Left": 149, + "Width": 60, + "Height": 9, + "Text": "\u002B2H \u2013 2\u222B \u2013(-10)", + "Confidence": null, + "CenterX": 179 + }, + { + "PageNumber": 1, + "Top": 611, + "Left": 283, + "Width": 78, + "Height": 9, + "Text": "\u002B2H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 322 + }, + { + "PageNumber": 1, + "Top": 600, + "Left": 400, + "Width": 110, + "Height": 9, + "Text": "with arm greaves: \u002B5H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 455 + }, + { + "PageNumber": 1, + "Top": 611, + "Left": 364, + "Width": 146, + "Height": 9, + "Text": "w/o arm greaves: \u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 611, + "Left": 580, + "Width": 82, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 611, + "Left": 736, + "Width": 82, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 777 + }, + { + "PageNumber": 1, + "Top": 642, + "Left": 44, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 82, + "Width": 130, + "Height": 9, + "Text": "Strike to foe\u0027s shield shoulder. Arm", + "Confidence": null, + "CenterX": 147 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "is useless. That must really hurt!", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 215, + "Width": 137, + "Height": 9, + "Text": "Foe blocks your attack with his elbow.", + "Confidence": null, + "CenterX": 283.5 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 215, + "Width": 118, + "Height": 9, + "Text": "Elbow is shattered. Shield arm is", + "Confidence": null, + "CenterX": 274 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 215, + "Width": 29, + "Height": 9, + "Text": "useless.", + "Confidence": null, + "CenterX": 229.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 367, + "Width": 146, + "Height": 9, + "Text": "Strike shatters foe\u0027s knee. Foe crumbles", + "Confidence": null, + "CenterX": 440 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 367, + "Width": 140, + "Height": 9, + "Text": "to the ground. He is down for 3 rounds.", + "Confidence": null, + "CenterX": 437 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 518, + "Width": 124, + "Height": 9, + "Text": "Strike to head kills foe, if he has no", + "Confidence": null, + "CenterX": 580 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 518, + "Width": 146, + "Height": 9, + "Text": "helm. If he has a helm he in knocked out", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 518, + "Width": 42, + "Height": 9, + "Text": "for 6 hours.", + "Confidence": null, + "CenterX": 539 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 670, + "Width": 139, + "Height": 9, + "Text": "Strike through both of foe\u0027s lungs. Foe", + "Confidence": null, + "CenterX": 739.5 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 670, + "Width": 143, + "Height": 9, + "Text": "drops and passes out. He dies 6 rounds", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 670, + "Width": 18, + "Height": 9, + "Text": "later.", + "Confidence": null, + "CenterX": 679 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 167, + "Width": 42, + "Height": 9, + "Text": "3\u2211 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 188 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 302, + "Width": 57, + "Height": 9, + "Text": "\u002B3H \u2013 4\u2211 \u2013 2\u03C0", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 463, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 643, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 666, + "Left": 799, + "Width": 19, + "Height": 9, + "Text": "(\u002B10)", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 695, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 82, + "Width": 83, + "Height": 9, + "Text": "Strike along foe\u0027s neck.", + "Confidence": null, + "CenterX": 123.5 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 215, + "Width": 147, + "Height": 9, + "Text": "Strike to foe\u0027s neck. It\u0027s not enough for a", + "Confidence": null, + "CenterX": 288.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 215, + "Width": 12, + "Height": 9, + "Text": "kill.", + "Confidence": null, + "CenterX": 221 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 367, + "Width": 142, + "Height": 9, + "Text": "Strike along foe\u0027s neck. Foe is frantic to", + "Confidence": null, + "CenterX": 438 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 367, + "Width": 44, + "Height": 9, + "Text": "evade death.", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 518, + "Width": 140, + "Height": 9, + "Text": "Strike down foe\u0027s defenses with a blow", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 518, + "Width": 50, + "Height": 9, + "Text": "to both arms.", + "Confidence": null, + "CenterX": 543 + }, + { + "PageNumber": 1, + "Top": 683, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "Shot raises foe\u0027s arm up, severing many", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 693, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "muscles and tendons. Arm is useless.", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 713, + "Left": 155, + "Width": 53, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 181.5 + }, + { + "PageNumber": 1, + "Top": 713, + "Left": 308, + "Width": 52, + "Height": 9, + "Text": "2\u2211 \u20133\u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 334 + }, + { + "PageNumber": 1, + "Top": 713, + "Left": 448, + "Width": 63, + "Height": 9, + "Text": "4\u2211 \u2013 2\u220F \u2013 (\u002B15)", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 713, + "Left": 589, + "Width": 73, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 713, + "Left": 785, + "Width": 32, + "Height": 9, + "Text": "6\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 744, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 728, + "Left": 82, + "Width": 71, + "Height": 9, + "Text": "Strike to lower leg.", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 728, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "Strike to foe\u0027s calf. Slash muscle. Foe", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 738, + "Left": 215, + "Width": 67, + "Height": 9, + "Text": "almost falls down.", + "Confidence": null, + "CenterX": 248.5 + }, + { + "PageNumber": 1, + "Top": 728, + "Left": 367, + "Width": 145, + "Height": 9, + "Text": "Destructive strike to lower leg. If foe has", + "Confidence": null, + "CenterX": 439.5 + }, + { + "PageNumber": 1, + "Top": 738, + "Left": 367, + "Width": 86, + "Height": 9, + "Text": "leg armor, it is torn free.", + "Confidence": null, + "CenterX": 410 + }, + { + "PageNumber": 1, + "Top": 728, + "Left": 518, + "Width": 125, + "Height": 9, + "Text": "Excellent blow to lower leg slashes", + "Confidence": null, + "CenterX": 580.5 + }, + { + "PageNumber": 1, + "Top": 738, + "Left": 518, + "Width": 136, + "Height": 9, + "Text": "muscles and cartilage. Foe falls prone.", + "Confidence": null, + "CenterX": 586 + }, + { + "PageNumber": 1, + "Top": 728, + "Left": 670, + "Width": 148, + "Height": 9, + "Text": "Strike plunges into leg with deadly effect.", + "Confidence": null, + "CenterX": 744 + }, + { + "PageNumber": 1, + "Top": 738, + "Left": 670, + "Width": 123, + "Height": 9, + "Text": "Foe drops, gripping his leg in pain.", + "Confidence": null, + "CenterX": 731.5 + }, + { + "PageNumber": 1, + "Top": 758, + "Left": 89, + "Width": 120, + "Height": 9, + "Text": "with leg greave: \u002B5H \u2013 3\u03C0 \u2013 (-10)", + "Confidence": null, + "CenterX": 149 + }, + { + "PageNumber": 1, + "Top": 768, + "Left": 86, + "Width": 123, + "Height": 9, + "Text": "w/o leg greave: \u002B3H \u2013 \u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 147.5 + }, + { + "PageNumber": 1, + "Top": 768, + "Left": 289, + "Width": 71, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 324.5 + }, + { + "PageNumber": 1, + "Top": 768, + "Left": 439, + "Width": 71, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 768, + "Left": 590, + "Width": 71, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 768, + "Left": 770, + "Width": 48, + "Height": 9, + "Text": "3\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 794 + }, + { + "PageNumber": 1, + "Top": 801, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 82, + "Width": 116, + "Height": 9, + "Text": "Strike foe in upper arm. You tear", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 82, + "Width": 63, + "Height": 9, + "Text": "his pretty clothes.", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "Strike to shield side. If foe has shield,", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 215, + "Width": 135, + "Height": 9, + "Text": "your weapon is stuck in it for a round.", + "Confidence": null, + "CenterX": 282.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 367, + "Width": 129, + "Height": 9, + "Text": "Strike through muscle in shield arm.", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 367, + "Width": 107, + "Height": 9, + "Text": "If foe has a shield, he drops it.", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 518, + "Width": 119, + "Height": 9, + "Text": "Strike to foe\u0027s shield arm. Arm is", + "Confidence": null, + "CenterX": 577.5 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 518, + "Width": 29, + "Height": 9, + "Text": "useless.", + "Confidence": null, + "CenterX": 532.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 670, + "Width": 134, + "Height": 9, + "Text": "Strike foe in weapon arm, the bone is", + "Confidence": null, + "CenterX": 737 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 670, + "Width": 83, + "Height": 9, + "Text": "broken. Arm is useless.", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 127, + "Width": 82, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 168 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 301, + "Width": 59, + "Height": 9, + "Text": "3\u2211 \u2013 3\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 330.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 451, + "Width": 59, + "Height": 9, + "Text": "6\u2211 \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 480.5 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 602, + "Width": 60, + "Height": 9, + "Text": "\u002B12H \u2013 6\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 632 + }, + { + "PageNumber": 1, + "Top": 825, + "Left": 770, + "Width": 47, + "Height": 9, + "Text": "\u002B10H - 3\u2211\u220F", + "Confidence": null, + "CenterX": 793.5 + }, + { + "PageNumber": 1, + "Top": 852, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 82, + "Width": 120, + "Height": 9, + "Text": "Deep wound in foe\u0027s side. Well, it", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 82, + "Width": 89, + "Height": 9, + "Text": "looked like a killing blow.", + "Confidence": null, + "CenterX": 126.5 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 215, + "Width": 145, + "Height": 9, + "Text": "Tear open foe\u0027s side in a graphic display", + "Confidence": null, + "CenterX": 287.5 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 215, + "Width": 40, + "Height": 9, + "Text": "of violence.", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 367, + "Width": 139, + "Height": 9, + "Text": "Strike bites into foe\u0027s ribs. The impact", + "Confidence": null, + "CenterX": 436.5 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 367, + "Width": 74, + "Height": 9, + "Text": "sounds truly terrible.", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 518, + "Width": 138, + "Height": 9, + "Text": "Major abdomenal wound. Blood pours", + "Confidence": null, + "CenterX": 587 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 518, + "Width": 100, + "Height": 9, + "Text": "out in frightening quantities.", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 840, + "Left": 670, + "Width": 133, + "Height": 9, + "Text": "Strike to foe\u0027s back severs a vein. Foe", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 670, + "Width": 143, + "Height": 9, + "Text": "goes to his knees and dies in 12 rounds.", + "Confidence": null, + "CenterX": 741.5 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 148, + "Width": 60, + "Height": 9, + "Text": "6\u2211 \u2013 5\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 178 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 271, + "Width": 90, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 421, + "Width": 90, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211\u220F \u2013 (-25) \u2013 5\u222B", + "Confidence": null, + "CenterX": 466 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 568, + "Width": 94, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 615 + }, + { + "PageNumber": 1, + "Top": 870, + "Left": 808, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 903, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 82, + "Width": 126, + "Height": 9, + "Text": "Catch foe in the back. He drops his", + "Confidence": null, + "CenterX": 145 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 82, + "Width": 99, + "Height": 9, + "Text": "guard and stumbles foward.", + "Confidence": null, + "CenterX": 131.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 215, + "Width": 137, + "Height": 9, + "Text": "Strike to foe\u0027s head. If foe has no helm", + "Confidence": null, + "CenterX": 283.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 215, + "Width": 136, + "Height": 9, + "Text": "he dies. If foe has helm, he falls to his", + "Confidence": null, + "CenterX": 283 + }, + { + "PageNumber": 1, + "Top": 908, + "Left": 215, + "Width": 23, + "Height": 9, + "Text": "knees.", + "Confidence": null, + "CenterX": 226.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 367, + "Width": 138, + "Height": 9, + "Text": "Strike impacts on foe\u0027s head. If he has", + "Confidence": null, + "CenterX": 436 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 367, + "Width": 129, + "Height": 9, + "Text": "no helm, he dies. Helm is destroyed.", + "Confidence": null, + "CenterX": 431.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 518, + "Width": 146, + "Height": 9, + "Text": "Strike through foes kidneys. Foe is down", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 518, + "Width": 140, + "Height": 9, + "Text": "and immobile for 2 hours, then he dies.", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 670, + "Width": 122, + "Height": 9, + "Text": "Strike plunges in just below foe\u0027s", + "Confidence": null, + "CenterX": 731 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 670, + "Width": 131, + "Height": 9, + "Text": "collarbone Foe drops and dies in 12", + "Confidence": null, + "CenterX": 735.5 + }, + { + "PageNumber": 1, + "Top": 908, + "Left": 670, + "Width": 27, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 683.5 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 142, + "Width": 66, + "Height": 9, + "Text": "2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 175 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 316, + "Width": 44, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 338 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 466, + "Width": 44, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 647, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 927, + "Left": 808, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 942, + "Left": 82, + "Width": 200, + "Height": 9, + "Text": "Strike to foe\u0027s ear. Foe hears at -50. Strike to foe\u0027s hip.", + "Confidence": null, + "CenterX": 182 + }, + { + "PageNumber": 1, + "Top": 942, + "Left": 367, + "Width": 131, + "Height": 9, + "Text": "Strike to chest. If foe has plate chest", + "Confidence": null, + "CenterX": 432.5 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 367, + "Width": 144, + "Height": 9, + "Text": "armor, he drops and dies in 9 rounds. If", + "Confidence": null, + "CenterX": 439 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 367, + "Width": 76, + "Height": 9, + "Text": "not, he dies instantly.", + "Confidence": null, + "CenterX": 405 + }, + { + "PageNumber": 1, + "Top": 942, + "Left": 518, + "Width": 140, + "Height": 9, + "Text": "Strike through foe\u0027s side spills his guts", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 518, + "Width": 146, + "Height": 9, + "Text": "on the floor. Foe fights on normally for 6", + "Confidence": null, + "CenterX": 591 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 518, + "Width": 64, + "Height": 9, + "Text": "rounds, then dies.", + "Confidence": null, + "CenterX": 550 + }, + { + "PageNumber": 1, + "Top": 942, + "Left": 670, + "Width": 133, + "Height": 9, + "Text": "Your weapon passes through the arm", + "Confidence": null, + "CenterX": 736.5 + }, + { + "PageNumber": 1, + "Top": 953, + "Left": 670, + "Width": 145, + "Height": 9, + "Text": "and sticks out the other side. Foe dies in", + "Confidence": null, + "CenterX": 742.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 670, + "Width": 38, + "Height": 9, + "Text": "12 rounds.", + "Confidence": null, + "CenterX": 689 + }, + { + "PageNumber": 1, + "Top": 983, + "Left": 110, + "Width": 99, + "Height": 9, + "Text": "with helmet: \u002B5H \u2013 4\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 159.5 + }, + { + "PageNumber": 1, + "Top": 993, + "Left": 103, + "Width": 106, + "Height": 9, + "Text": "w/o helmet: \u002B3H \u2013 2\u222B \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 156 + }, + { + "PageNumber": 1, + "Top": 983, + "Left": 236, + "Width": 123, + "Height": 9, + "Text": "with waist armor: \u002B7H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 297.5 + }, + { + "PageNumber": 1, + "Top": 993, + "Left": 220, + "Width": 140, + "Height": 9, + "Text": "w/o waist armor: \u002B5H \u2013 \u2211 \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 290 + }, + { + "PageNumber": 1, + "Top": 993, + "Left": 500, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 993, + "Left": 652, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 993, + "Left": 799, + "Width": 18, + "Height": 9, + "Text": "12\u2211", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 34, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 53 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 82, + "Width": 90, + "Height": 9, + "Text": "Strike to nose. There is a", + "Confidence": null, + "CenterX": 127 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 82, + "Width": 112, + "Height": 9, + "Text": "permanent scar. Foe\u0027s eyes are", + "Confidence": null, + "CenterX": 138 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 82, + "Width": 80, + "Height": 9, + "Text": "crossed for a moment.", + "Confidence": null, + "CenterX": 122 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 215, + "Width": 134, + "Height": 9, + "Text": "Strike through foe\u0027s cheek and throat.", + "Confidence": null, + "CenterX": 282 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 215, + "Width": 131, + "Height": 9, + "Text": "Foe drops and dies after 9 rounds of", + "Confidence": null, + "CenterX": 280.5 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 215, + "Width": 38, + "Height": 9, + "Text": "incapacity.", + "Confidence": null, + "CenterX": 234 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 367, + "Width": 117, + "Height": 9, + "Text": "Strike through foe\u0027s neck breaks", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 367, + "Width": 123, + "Height": 9, + "Text": "backbone and severs spine. Foe is", + "Confidence": null, + "CenterX": 428.5 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 367, + "Width": 109, + "Height": 9, + "Text": "paralyzed from the neck down.", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 518, + "Width": 141, + "Height": 9, + "Text": "Strike plunges into doomed foe\u0027s chest", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 518, + "Width": 135, + "Height": 9, + "Text": "and emerges from the other side. Foe", + "Confidence": null, + "CenterX": 585.5 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 518, + "Width": 97, + "Height": 9, + "Text": "drops and dies in 6 rounds.", + "Confidence": null, + "CenterX": 566.5 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 670, + "Width": 130, + "Height": 9, + "Text": "Shot through heart sends foe reeling", + "Confidence": null, + "CenterX": 735 + }, + { + "PageNumber": 1, + "Top": 1020, + "Left": 670, + "Width": 147, + "Height": 9, + "Text": "back 10 feet to a place suitable for death.", + "Confidence": null, + "CenterX": 743.5 + }, + { + "PageNumber": 1, + "Top": 1031, + "Left": 670, + "Width": 127, + "Height": 9, + "Text": "Your weapon is stuck in reeling foe.", + "Confidence": null, + "CenterX": 733.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 167, + "Width": 41, + "Height": 9, + "Text": "3\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 341, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 500, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 652, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 808, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 1092, + "Left": 40, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 1076, + "Left": 82, + "Width": 128, + "Height": 9, + "Text": "Strike through neck. Sever vein and", + "Confidence": null, + "CenterX": 146 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 82, + "Width": 108, + "Height": 9, + "Text": "artery. Foe cannot breath. Foe", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 82, + "Width": 108, + "Height": 9, + "Text": "drops and dies of heart failure.", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 1076, + "Left": 215, + "Width": 136, + "Height": 9, + "Text": "Strike plunges into foe\u0027s eye. Foe dies", + "Confidence": null, + "CenterX": 283 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 215, + "Width": 131, + "Height": 9, + "Text": "instantly. Foe remains standing for a", + "Confidence": null, + "CenterX": 280.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 215, + "Width": 104, + "Height": 9, + "Text": "moment until he realizes this.", + "Confidence": null, + "CenterX": 267 + }, + { + "PageNumber": 1, + "Top": 1076, + "Left": 367, + "Width": 111, + "Height": 9, + "Text": "Shot through both ears proves", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 367, + "Width": 141, + "Height": 9, + "Text": "effective. Foe dies instantly. Pretty shot.", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 1076, + "Left": 518, + "Width": 140, + "Height": 9, + "Text": "Strike through brain makes life difficult", + "Confidence": null, + "CenterX": 588 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 518, + "Width": 145, + "Height": 9, + "Text": "for foe. You have a half round left to act.", + "Confidence": null, + "CenterX": 590.5 + }, + { + "PageNumber": 1, + "Top": 1076, + "Left": 670, + "Width": 132, + "Height": 9, + "Text": "Strike to foe\u0027s eye. Foe dies instantly.", + "Confidence": null, + "CenterX": 736 + }, + { + "PageNumber": 1, + "Top": 1086, + "Left": 670, + "Width": 59, + "Height": 9, + "Text": "Carry on soldier.", + "Confidence": null, + "CenterX": 699.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 199, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 259, + "Width": 102, + "Height": 9, + "Text": "all allies get \u002B10 for 1 round", + "Confidence": null, + "CenterX": 310 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 487, + "Width": 24, + "Height": 9, + "Text": "6(\u002B20)", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 631, + "Width": 31, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 799, + "Width": 19, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 48, + "Left": 218, + "Width": 415, + "Height": 14, + "Text": "4.7 puncture critical strike table", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 138, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 144.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 279, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 285 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 430, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 437.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 580, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 588.5 + }, + { + "PageNumber": 1, + "Top": 80, + "Left": 740, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 745.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/puncture/pages/page-001.png new file mode 100644 index 0000000..f6dc4fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/puncture/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/puncture/parsed-cells.json new file mode 100644 index 0000000..55cb2d1 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/puncture/parsed-cells.json @@ -0,0 +1,7555 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Foe avoids most of the attack.", + "\u002B0H" + ], + "BaseLines": [ + "Foe avoids most of the attack.", + "\u002B0H" + ], + "RawCellText": "Foe avoids most of the attack.\n\u002B0H", + "DescriptionText": "Foe avoids most of the attack.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 104, + "Width": 126, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 416, + "BoundsWidth": 504, + "BoundsHeight": 120, + "CropLeft": 280, + "CropTop": 384, + "CropWidth": 600, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Glancing blow. Nothing extra.", + "\u002B0H" + ], + "BaseLines": [ + "Glancing blow. Nothing extra.", + "\u002B0H" + ], + "RawCellText": "Glancing blow. Nothing extra.\n\u002B0H", + "DescriptionText": "Glancing blow. Nothing extra.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 104, + "Width": 145, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 416, + "BoundsWidth": 580, + "BoundsHeight": 120, + "CropLeft": 812, + "CropTop": 384, + "CropWidth": 676, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Foe dances clear of the worst.", + "\u002B1H" + ], + "BaseLines": [ + "Foe dances clear of the worst.", + "\u002B1H" + ], + "RawCellText": "Foe dances clear of the worst.\n\u002B1H", + "DescriptionText": "Foe dances clear of the worst.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 104, + "Width": 143, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 416, + "BoundsWidth": 572, + "BoundsHeight": 120, + "CropLeft": 1420, + "CropTop": 384, + "CropWidth": 668, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Strike bounces off.", + "\u002B2H" + ], + "BaseLines": [ + "Strike bounces off.", + "\u002B2H" + ], + "RawCellText": "Strike bounces off.\n\u002B2H", + "DescriptionText": "Strike bounces off.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 104, + "Width": 143, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 416, + "BoundsWidth": 572, + "BoundsHeight": 120, + "CropLeft": 2024, + "CropTop": 384, + "CropWidth": 668, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Strike lands flat.", + "\u002B3H" + ], + "BaseLines": [ + "Strike lands flat.", + "\u002B3H" + ], + "RawCellText": "Strike lands flat.\n\u002B3H", + "DescriptionText": "Strike lands flat.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 104, + "Width": 147, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 416, + "BoundsWidth": 588, + "BoundsHeight": 120, + "CropLeft": 2632, + "CropTop": 384, + "CropWidth": 684, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Strike failed to connect well.", + "\u002B1H" + ], + "BaseLines": [ + "Strike failed to connect well.", + "\u002B1H" + ], + "RawCellText": "Strike failed to connect well.\n\u002B1H", + "DescriptionText": "Strike failed to connect well.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 140, + "Width": 126, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 560, + "BoundsWidth": 504, + "BoundsHeight": 120, + "CropLeft": 280, + "CropTop": 528, + "CropWidth": 600, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Panck!", + "\u002B2H" + ], + "BaseLines": [ + "Panck!", + "\u002B2H" + ], + "RawCellText": "Panck!\n\u002B2H", + "DescriptionText": "Panck!", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 140, + "Width": 145, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 560, + "BoundsWidth": 580, + "BoundsHeight": 120, + "CropLeft": 812, + "CropTop": 528, + "CropWidth": 676, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Nick your weapon and your foe.", + "\u002B3H" + ], + "BaseLines": [ + "Nick your weapon and your foe.", + "\u002B3H" + ], + "RawCellText": "Nick your weapon and your foe.\n\u002B3H", + "DescriptionText": "Nick your weapon and your foe.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 140, + "Width": 143, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 560, + "BoundsWidth": 572, + "BoundsHeight": 120, + "CropLeft": 1420, + "CropTop": 528, + "CropWidth": 668, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Strike lands without energy.", + "\u002B4H" + ], + "BaseLines": [ + "Strike lands without energy.", + "\u002B4H" + ], + "RawCellText": "Strike lands without energy.\n\u002B4H", + "DescriptionText": "Strike lands without energy.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 140, + "Width": 143, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 560, + "BoundsWidth": 572, + "BoundsHeight": 120, + "CropLeft": 2024, + "CropTop": 528, + "CropWidth": 668, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Shot unbalances foe. You have initiative.", + "\u002B5H" + ], + "BaseLines": [ + "Shot unbalances foe. You have initiative.", + "\u002B5H" + ], + "RawCellText": "Shot unbalances foe. You have initiative.\n\u002B5H", + "DescriptionText": "Shot unbalances foe. You have initiative.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 140, + "Width": 147, + "Height": 30 + }, + "SourceImagePath": "puncture/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 560, + "BoundsWidth": 588, + "BoundsHeight": 120, + "CropLeft": 2632, + "CropTop": 528, + "CropWidth": 684, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Strike causes foe to flinch. You gain", + "initiative next round.", + "\u002B1H" + ], + "BaseLines": [ + "Strike causes foe to flinch. You gain", + "initiative next round.", + "\u002B1H" + ], + "RawCellText": "Strike causes foe to flinch. You gain\ninitiative next round.\n\u002B1H", + "DescriptionText": "Strike causes foe to flinch. You gain initiative next round.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 177, + "Width": 129, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 708, + "BoundsWidth": 516, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 676, + "CropWidth": 612, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe questions his resolve. You gain", + "initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe questions his resolve. You gain", + "initiative next round.", + "\u002B3H" + ], + "RawCellText": "Foe questions his resolve. You gain\ninitiative next round.\n\u002B3H", + "DescriptionText": "Foe questions his resolve. You gain initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 177, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 708, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 676, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Foe\u0027s evasion puts him out of position.", + "You gain initiative next round.", + "\u002B5H" + ], + "BaseLines": [ + "Foe\u0027s evasion puts him out of position.", + "You gain initiative next round.", + "\u002B5H" + ], + "RawCellText": "Foe\u0027s evasion puts him out of position.\nYou gain initiative next round.\n\u002B5H", + "DescriptionText": "Foe\u0027s evasion puts him out of position. You gain initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 177, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 708, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 676, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Foe evades and maneuvers for a better", + "position.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe evades and maneuvers for a better", + "position.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "Foe evades and maneuvers for a better\nposition.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "Foe evades and maneuvers for a better position.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 177, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 708, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2024, + "CropTop": 676, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Foe is fearful of your skill and steps back", + "from your mighty onslaught.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe is fearful of your skill and steps back", + "from your mighty onslaught.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "Foe is fearful of your skill and steps back\nfrom your mighty onslaught.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "Foe is fearful of your skill and steps back from your mighty onslaught.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 177, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 708, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 676, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe steps back defensively.", + "\u002B1H-\u03C0" + ], + "BaseLines": [ + "Foe steps back defensively.", + "\u002B1H-\u03C0" + ], + "RawCellText": "Foe steps back defensively.\n\u002B1H-\u03C0", + "DescriptionText": "Foe steps back defensively.", + "RawAffixText": "\u002B1H-\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 224, + "Width": 129, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 896, + "BoundsWidth": 516, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 864, + "CropWidth": 612, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "For steps back and avoids the worst.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "For steps back and avoids the worst.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "RawCellText": "For steps back and avoids the worst.\n\u002B2H \u2013 (\u03C0-10)", + "DescriptionText": "For steps back and avoids the worst.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 224, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 896, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 864, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s side. If foe has a belt it is", + "severed.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s side. If foe has a belt it is", + "severed.", + "\u002B3H \u2013 (\u03C0-20)" + ], + "RawCellText": "Blow to foe\u0027s side. If foe has a belt it is\nsevered.\n\u002B3H \u2013 (\u03C0-20)", + "DescriptionText": "Blow to foe\u0027s side. If foe has a belt it is severed.", + "RawAffixText": "\u002B3H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 224, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 896, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 864, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Precise strike to foe\u0027s side. You have the", + "initiative for 1 round.", + "(-10)" + ], + "BaseLines": [ + "Precise strike to foe\u0027s side. You have the", + "initiative for 1 round.", + "(-10)" + ], + "RawCellText": "Precise strike to foe\u0027s side. You have the\ninitiative for 1 round.\n(-10)", + "DescriptionText": "Precise strike to foe\u0027s side. You have the initiative for 1 round.", + "RawAffixText": "(-10)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 224, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 896, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 2024, + "CropTop": 864, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Foe vibrates from the impact of the", + "strike.", + "\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe vibrates from the impact of the", + "strike.", + "\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "Foe vibrates from the impact of the\nstrike.\n\u2211 \u2013 (\u002B20)", + "DescriptionText": "Foe vibrates from the impact of the strike.", + "RawAffixText": "\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 224, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 896, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 864, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Convince foe of his peril by just", + "missing his abdomen.", + "\u002B2H \u2013 \u03C0 (\u002B10)" + ], + "BaseLines": [ + "Convince foe of his peril by just", + "missing his abdomen.", + "\u002B2H \u2013 \u03C0 (\u002B10)" + ], + "RawCellText": "Convince foe of his peril by just\nmissing his abdomen.\n\u002B2H \u2013 \u03C0 (\u002B10)", + "DescriptionText": "Convince foe of his peril by just missing his abdomen.", + "RawAffixText": "\u002B2H \u2013 \u03C0 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 269, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1076, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 1044, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Foe is uncertain about your next attack.", + "He choses to let you make the first move", + "(you gain the initiative).", + "\u002B2H \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe is uncertain about your next attack.", + "He choses to let you make the first move", + "(you gain the initiative).", + "\u002B2H \u2013 2\u03C0" + ], + "RawCellText": "Foe is uncertain about your next attack.\nHe choses to let you make the first move\n(you gain the initiative).\n\u002B2H \u2013 2\u03C0", + "DescriptionText": "Foe is uncertain about your next attack. He choses to let you make the first move (you gain the initiative).", + "RawAffixText": "\u002B2H \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 269, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1076, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 1044, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Strike crosses foe\u0027s head. If he has a", + "helm it is knocked off and dented.", + "\u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Strike crosses foe\u0027s head. If he has a", + "helm it is knocked off and dented.", + "\u2211 \u2013 \u222B" + ], + "RawCellText": "Strike crosses foe\u0027s head. If he has a\nhelm it is knocked off and dented.\n\u2211 \u2013 \u222B", + "DescriptionText": "Strike crosses foe\u0027s head. If he has a helm it is knocked off and dented.", + "RawAffixText": "\u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 269, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1076, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 1044, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "You wound foe in hip. Strike strips", + "equipment from right side of waist.", + "\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "You wound foe in hip. Strike strips", + "equipment from right side of waist.", + "\u2211 \u2013 2\u222B" + ], + "RawCellText": "You wound foe in hip. Strike strips\nequipment from right side of waist.\n\u2211 \u2013 2\u222B", + "DescriptionText": "You wound foe in hip. Strike strips equipment from right side of waist.", + "RawAffixText": "\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 269, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 1076, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 1044, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Deal foe a measurable blow to his side.", + "Any one container on your foe now has a", + "hole in it.", + "\u002B2H \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Deal foe a measurable blow to his side.", + "Any one container on your foe now has a", + "hole in it.", + "\u002B2H \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Deal foe a measurable blow to his side.\nAny one container on your foe now has a\nhole in it.\n\u002B2H \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Deal foe a measurable blow to his side. Any one container on your foe now has a hole in it.", + "RawAffixText": "\u002B2H \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 269, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1076, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 1044, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Nick foe\u0027s calf with long follow", + "through.", + "\u222B" + ], + "BaseLines": [ + "Nick foe\u0027s calf with long follow", + "through.", + "\u222B" + ], + "RawCellText": "Nick foe\u0027s calf with long follow\nthrough.\n\u222B", + "DescriptionText": "Nick foe\u0027s calf with long follow through.", + "RawAffixText": "\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 326, + "Width": 126, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1304, + "BoundsWidth": 504, + "BoundsHeight": 192, + "CropLeft": 280, + "CropTop": 1272, + "CropWidth": 600, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Cheap shot to foe\u0027s shin.", + "with leg greaves:\u002B5H \u2013 \u03C0", + "w/o leg greaves: \u002B2H \u2013 \u222B" + ], + "BaseLines": [ + "Cheap shot to foe\u0027s shin." + ], + "RawCellText": "Cheap shot to foe\u0027s shin.", + "DescriptionText": "Cheap shot to foe\u0027s shin.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greaves", + "ConditionText": "with leg greaves", + "RawText": "with leg greaves:\u002B5H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B2H \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 326, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1304, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 812, + "CropTop": 1272, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Strike along foe\u0027s calf. The damage", + "takes a moment to show.", + "2\u222B" + ], + "BaseLines": [ + "Strike along foe\u0027s calf. The damage", + "takes a moment to show.", + "2\u222B" + ], + "RawCellText": "Strike along foe\u0027s calf. The damage\ntakes a moment to show.\n2\u222B", + "DescriptionText": "Strike along foe\u0027s calf. The damage takes a moment to show.", + "RawAffixText": "2\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 326, + "Width": 142, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1304, + "BoundsWidth": 568, + "BoundsHeight": 192, + "CropLeft": 1420, + "CropTop": 1272, + "CropWidth": 664, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Close call for foe\u0027s groin.", + "with waist armor: \u002B4H \u2013 \u2211", + "w/o waist armor: 3\u222B" + ], + "BaseLines": [ + "Close call for foe\u0027s groin." + ], + "RawCellText": "Close call for foe\u0027s groin.", + "DescriptionText": "Close call for foe\u0027s groin.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_waist_armor", + "ConditionText": "with waist armor", + "RawText": "with waist armor: \u002B4H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B4H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_waist_armor", + "ConditionText": "w/o waist armor", + "RawText": "w/o waist armor: 3\u222B", + "DescriptionText": "", + "RawAffixText": "3\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 326, + "Width": 143, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 1304, + "BoundsWidth": 572, + "BoundsHeight": 192, + "CropLeft": 2024, + "CropTop": 1272, + "CropWidth": 668, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Strike to upper leg rips clothing.", + "with leg armor: \u002B3H \u2013 \u03C0", + "w/o leg armor: \u002B2H \u2013 3\u222B" + ], + "BaseLines": [ + "Strike to upper leg rips clothing." + ], + "RawCellText": "Strike to upper leg rips clothing.", + "DescriptionText": "Strike to upper leg rips clothing.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B3H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B2H \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 326, + "Width": 148, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1304, + "BoundsWidth": 592, + "BoundsHeight": 192, + "CropLeft": 2632, + "CropTop": 1272, + "CropWidth": 688, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s evasion exposes his back to", + "your strike.", + "\u002B2H \u2013 (\u03C0-30)" + ], + "BaseLines": [ + "Foe\u0027s evasion exposes his back to", + "your strike.", + "\u002B2H \u2013 (\u03C0-30)" + ], + "RawCellText": "Foe\u0027s evasion exposes his back to\nyour strike.\n\u002B2H \u2013 (\u03C0-30)", + "DescriptionText": "Foe\u0027s evasion exposes his back to your strike.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 381, + "Width": 126, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1524, + "BoundsWidth": 504, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 1492, + "CropWidth": 600, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Blow to back damages any equipment", + "worn there.", + "\u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Blow to back damages any equipment", + "worn there.", + "\u2211 \u2013 \u222B" + ], + "RawCellText": "Blow to back damages any equipment\nworn there.\n\u2211 \u2013 \u222B", + "DescriptionText": "Blow to back damages any equipment worn there.", + "RawAffixText": "\u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 381, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1524, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 1492, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Lower back strike sends foe reeling.", + "His guard is still up.", + "2\u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Lower back strike sends foe reeling.", + "His guard is still up.", + "2\u2211 \u2013 \u222B" + ], + "RawCellText": "Lower back strike sends foe reeling.\nHis guard is still up.\n2\u2211 \u2013 \u222B", + "DescriptionText": "Lower back strike sends foe reeling. His guard is still up.", + "RawAffixText": "2\u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 381, + "Width": 142, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1524, + "BoundsWidth": 568, + "BoundsHeight": 240, + "CropLeft": 1420, + "CropTop": 1492, + "CropWidth": 664, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Light strike pins foe\u0027s weapon arm to his", + "side.", + "\u002B6H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Light strike pins foe\u0027s weapon arm to his", + "side.", + "\u002B6H \u2013 \u2211\u220F" + ], + "RawCellText": "Light strike pins foe\u0027s weapon arm to his\nside.\n\u002B6H \u2013 \u2211\u220F", + "DescriptionText": "Light strike pins foe\u0027s weapon arm to his side.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 381, + "Width": 147, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 1524, + "BoundsWidth": 588, + "BoundsHeight": 240, + "CropLeft": 2024, + "CropTop": 1492, + "CropWidth": 684, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Strike to side. If foe has armor, the blow", + "tears it open and exposes skin.", + "with abdomen armor: \u002B8H \u2013 \u2211 \u2013 \u222B", + "w/o abdomen armor: \u002B4H \u2013 \u2211\u220F \u2013 4\u222B" + ], + "BaseLines": [ + "Strike to side. If foe has armor, the blow", + "tears it open and exposes skin." + ], + "RawCellText": "Strike to side. If foe has armor, the blow\ntears it open and exposes skin.", + "DescriptionText": "Strike to side. If foe has armor, the blow tears it open and exposes skin.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdomen_armor", + "ConditionText": "with abdomen armor", + "RawText": "with abdomen armor: \u002B8H \u2013 \u2211 \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_abdomen_armor", + "ConditionText": "w/o abdomen armor", + "RawText": "w/o abdomen armor: \u002B4H \u2013 \u2211\u220F \u2013 4\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B4H \u2013 \u2211\u220F \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 381, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1524, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 1492, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s chest and he looks", + "impressed.", + "(\u03C0-25) \u2013 2\u222B" + ], + "BaseLines": [ + "Strike to foe\u0027s chest and he looks", + "impressed.", + "(\u03C0-25) \u2013 2\u222B" + ], + "RawCellText": "Strike to foe\u0027s chest and he looks\nimpressed.\n(\u03C0-25) \u2013 2\u222B", + "DescriptionText": "Strike to foe\u0027s chest and he looks impressed.", + "RawAffixText": "(\u03C0-25) \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 447, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "puncture/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 1788, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 280, + "CropTop": 1756, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Solid strike to foe\u0027s chest. Blood from", + "wound ruins any heraldry.", + "\u002B3H \u2013 2\u222B \u2013 2\u03C0" + ], + "BaseLines": [ + "Solid strike to foe\u0027s chest. Blood from", + "wound ruins any heraldry.", + "\u002B3H \u2013 2\u222B \u2013 2\u03C0" + ], + "RawCellText": "Solid strike to foe\u0027s chest. Blood from\nwound ruins any heraldry.\n\u002B3H \u2013 2\u222B \u2013 2\u03C0", + "DescriptionText": "Solid strike to foe\u0027s chest. Blood from wound ruins any heraldry.", + "RawAffixText": "\u002B3H \u2013 2\u222B \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 447, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "puncture/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 1788, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 812, + "CropTop": 1756, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Strike toward chest. If foe has a shield, it", + "is out of position for the rest of the", + "round.", + "\u002B3H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Strike toward chest. If foe has a shield, it", + "is out of position for the rest of the", + "round.", + "\u002B3H \u2013 2\u2211 \u2013 2\u222B" + ], + "RawCellText": "Strike toward chest. If foe has a shield, it\nis out of position for the rest of the\nround.\n\u002B3H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "Strike toward chest. If foe has a shield, it is out of position for the rest of the round.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 447, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "puncture/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 1788, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1420, + "CropTop": 1756, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Solid chest strike leaves bruises and", + "blood.", + "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Solid chest strike leaves bruises and", + "blood.", + "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Solid chest strike leaves bruises and\nblood.\n\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Solid chest strike leaves bruises and blood.", + "RawAffixText": "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 447, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "puncture/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 1788, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2024, + "CropTop": 1756, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Foe goes low to evade your attack. Strike", + "takes foe down on one knee. Finish him.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Foe goes low to evade your attack. Strike", + "takes foe down on one knee. Finish him.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Foe goes low to evade your attack. Strike\ntakes foe down on one knee. Finish him.\n\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Foe goes low to evade your attack. Strike takes foe down on one knee. Finish him.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 447, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "puncture/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 1788, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2632, + "CropTop": 1756, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Minor thigh wound. It could have", + "been better.", + "\u002B2H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Minor thigh wound. It could have", + "been better.", + "\u002B2H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Minor thigh wound. It could have\nbeen better.\n\u002B2H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Minor thigh wound. It could have been better.", + "RawAffixText": "\u002B2H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 504, + "Width": 127, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2016, + "BoundsWidth": 508, + "BoundsHeight": 192, + "CropLeft": 280, + "CropTop": 1984, + "CropWidth": 604, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Thigh wound does some damage.", + "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Thigh wound does some damage.", + "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "Thigh wound does some damage.\n\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "DescriptionText": "Thigh wound does some damage.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 504, + "Width": 145, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2016, + "BoundsWidth": 580, + "BoundsHeight": 192, + "CropLeft": 812, + "CropTop": 1984, + "CropWidth": 676, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s thigh.", + "with leg armor: \u002B8H \u2013 \u2211\u220F \u2013 \u222B", + "w/o leg armor: \u002B5H \u2013 2\u2211 \u2013 2\u222B\u2013 (-10)" + ], + "BaseLines": [ + "Strike to foe\u0027s thigh." + ], + "RawCellText": "Strike to foe\u0027s thigh.", + "DescriptionText": "Strike to foe\u0027s thigh.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B8H \u2013 \u2211\u220F \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B5H \u2013 2\u2211 \u2013 2\u222B\u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 2\u222B\u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 504, + "Width": 143, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2016, + "BoundsWidth": 572, + "BoundsHeight": 192, + "CropLeft": 1420, + "CropTop": 1984, + "CropWidth": 668, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Strike foe in abdomen.", + "with abdomen armor: \u002B5H \u2013 2\u220F", + "w/o abdomen armor: \u002B3H \u2013 \u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Strike foe in abdomen." + ], + "RawCellText": "Strike foe in abdomen.", + "DescriptionText": "Strike foe in abdomen.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_abdomen_armor", + "ConditionText": "with abdomen armor", + "RawText": "with abdomen armor: \u002B5H \u2013 2\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_abdomen_armor", + "ConditionText": "w/o abdomen armor", + "RawText": "w/o abdomen armor: \u002B3H \u2013 \u2211\u220F \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 504, + "Width": 144, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 2016, + "BoundsWidth": 576, + "BoundsHeight": 192, + "CropLeft": 2024, + "CropTop": 1984, + "CropWidth": 672, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s side. He stumbles to your", + "right 10 feet.", + "\u002B6H \u2013 \u2211\u220F \u2013 5\u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s side. He stumbles to your", + "right 10 feet.", + "\u002B6H \u2013 \u2211\u220F \u2013 5\u222B" + ], + "RawCellText": "Blow to foe\u0027s side. He stumbles to your\nright 10 feet.\n\u002B6H \u2013 \u2211\u220F \u2013 5\u222B", + "DescriptionText": "Blow to foe\u0027s side. He stumbles to your right 10 feet.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 504, + "Width": 148, + "Height": 48 + }, + "SourceImagePath": "puncture/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2016, + "BoundsWidth": 592, + "BoundsHeight": 192, + "CropLeft": 2632, + "CropTop": 1984, + "CropWidth": 688, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Minor forearm wound numbs", + "foe\u0027s grip.", + "\u002B2H \u2013 2\u222B \u2013(-10)" + ], + "BaseLines": [ + "Minor forearm wound numbs", + "foe\u0027s grip.", + "\u002B2H \u2013 2\u222B \u2013(-10)" + ], + "RawCellText": "Minor forearm wound numbs\nfoe\u0027s grip.\n\u002B2H \u2013 2\u222B \u2013(-10)", + "DescriptionText": "Minor forearm wound numbs foe\u0027s grip.", + "RawAffixText": "\u002B2H \u2013 2\u222B \u2013(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 560, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2240, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 2208, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Forearm strike shakes foe up. Foe", + "attempts a recovery.", + "\u002B2H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Forearm strike shakes foe up. Foe", + "attempts a recovery.", + "\u002B2H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Forearm strike shakes foe up. Foe\nattempts a recovery.\n\u002B2H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Forearm strike shakes foe up. Foe attempts a recovery.", + "RawAffixText": "\u002B2H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 560, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2240, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 2208, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Solid strike to foe\u0027s right forearm.", + "with arm greaves: \u002B5H \u2013 2\u2211\u220F", + "w/o arm greaves: \u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Solid strike to foe\u0027s right forearm." + ], + "RawCellText": "Solid strike to foe\u0027s right forearm.", + "DescriptionText": "Solid strike to foe\u0027s right forearm.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_arm_greaves", + "ConditionText": "with arm greaves", + "RawText": "with arm greaves: \u002B5H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_arm_greaves", + "ConditionText": "w/o arm greaves", + "RawText": "w/o arm greaves: \u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 364, + "Top": 560, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1456, + "BoundsTop": 2240, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 1408, + "CropTop": 2208, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s weapon arm. Arm is", + "numb.", + "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s weapon arm. Arm is", + "numb.", + "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "Blow to foe\u0027s weapon arm. Arm is\nnumb.\n\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "Blow to foe\u0027s weapon arm. Arm is numb.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 560, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 2240, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2024, + "CropTop": 2208, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Catch foe\u0027s forearm. The wound opens", + "up nicely. Foe is in pain.", + "\u002B5H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Catch foe\u0027s forearm. The wound opens", + "up nicely. Foe is in pain.", + "\u002B5H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Catch foe\u0027s forearm. The wound opens\nup nicely. Foe is in pain.\n\u002B5H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Catch foe\u0027s forearm. The wound opens up nicely. Foe is in pain.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 560, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2240, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 2208, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s shield shoulder. Arm", + "is useless. That must really hurt!", + "3\u2211 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strike to foe\u0027s shield shoulder. Arm", + "is useless. That must really hurt!", + "3\u2211 \u2013 (\u002B10)" + ], + "RawCellText": "Strike to foe\u0027s shield shoulder. Arm\nis useless. That must really hurt!\n3\u2211 \u2013 (\u002B10)", + "DescriptionText": "Strike to foe\u0027s shield shoulder. Arm is useless. That must really hurt!", + "RawAffixText": "3\u2211 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 626, + "Width": 130, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2504, + "BoundsWidth": 520, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 2472, + "CropWidth": 616, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Foe blocks your attack with his elbow.", + "Elbow is shattered. Shield arm is", + "useless.", + "\u002B3H \u2013 4\u2211 \u2013 2\u03C0" + ], + "BaseLines": [ + "Foe blocks your attack with his elbow.", + "Elbow is shattered. Shield arm is", + "useless.", + "\u002B3H \u2013 4\u2211 \u2013 2\u03C0" + ], + "RawCellText": "Foe blocks your attack with his elbow.\nElbow is shattered. Shield arm is\nuseless.\n\u002B3H \u2013 4\u2211 \u2013 2\u03C0", + "DescriptionText": "Foe blocks your attack with his elbow. Elbow is shattered. Shield arm is useless.", + "RawAffixText": "\u002B3H \u2013 4\u2211 \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 626, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2504, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 2472, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Strike shatters foe\u0027s knee. Foe crumbles", + "to the ground. He is down for 3 rounds.", + "2\u2211\u220F \u2013 (-90)" + ], + "BaseLines": [ + "Strike shatters foe\u0027s knee. Foe crumbles", + "to the ground. He is down for 3 rounds.", + "2\u2211\u220F \u2013 (-90)" + ], + "RawCellText": "Strike shatters foe\u0027s knee. Foe crumbles\nto the ground. He is down for 3 rounds.\n2\u2211\u220F \u2013 (-90)", + "DescriptionText": "Strike shatters foe\u0027s knee. Foe crumbles to the ground. He is down for 3 rounds.", + "RawAffixText": "2\u2211\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 626, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2504, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 2472, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Strike to head kills foe, if he has no", + "helm. If he has a helm he in knocked out", + "for 6 hours.", + "\u002B10H" + ], + "BaseLines": [ + "Strike to head kills foe, if he has no", + "helm. If he has a helm he in knocked out", + "for 6 hours.", + "\u002B10H" + ], + "RawCellText": "Strike to head kills foe, if he has no\nhelm. If he has a helm he in knocked out\nfor 6 hours.\n\u002B10H", + "DescriptionText": "Strike to head kills foe, if he has no helm. If he has a helm he in knocked out for 6 hours.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 626, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 2504, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 2472, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Strike through both of foe\u0027s lungs. Foe", + "drops and passes out. He dies 6 rounds", + "later.", + "(\u002B10)" + ], + "BaseLines": [ + "Strike through both of foe\u0027s lungs. Foe", + "drops and passes out. He dies 6 rounds", + "later.", + "(\u002B10)" + ], + "RawCellText": "Strike through both of foe\u0027s lungs. Foe\ndrops and passes out. He dies 6 rounds\nlater.\n(\u002B10)", + "DescriptionText": "Strike through both of foe\u0027s lungs. Foe drops and passes out. He dies 6 rounds later.", + "RawAffixText": "(\u002B10)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 626, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2504, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 2472, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Strike along foe\u0027s neck.", + "\u002B5H \u2013 3\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Strike along foe\u0027s neck.", + "\u002B5H \u2013 3\u2211 \u2013 \u220F" + ], + "RawCellText": "Strike along foe\u0027s neck.\n\u002B5H \u2013 3\u2211 \u2013 \u220F", + "DescriptionText": "Strike along foe\u0027s neck.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 683, + "Width": 126, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2732, + "BoundsWidth": 504, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 2700, + "CropWidth": 600, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s neck. It\u0027s not enough for a", + "kill.", + "2\u2211 \u20133\u222B \u2013 (-5)" + ], + "BaseLines": [ + "Strike to foe\u0027s neck. It\u0027s not enough for a", + "kill.", + "2\u2211 \u20133\u222B \u2013 (-5)" + ], + "RawCellText": "Strike to foe\u0027s neck. It\u0027s not enough for a\nkill.\n2\u2211 \u20133\u222B \u2013 (-5)", + "DescriptionText": "Strike to foe\u0027s neck. It\u0027s not enough for a kill.", + "RawAffixText": "2\u2211 \u20133\u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 683, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2732, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 2700, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strike along foe\u0027s neck. Foe is frantic to", + "evade death.", + "4\u2211 \u2013 2\u220F \u2013 (\u002B15)" + ], + "BaseLines": [ + "Strike along foe\u0027s neck. Foe is frantic to", + "evade death.", + "4\u2211 \u2013 2\u220F \u2013 (\u002B15)" + ], + "RawCellText": "Strike along foe\u0027s neck. Foe is frantic to\nevade death.\n4\u2211 \u2013 2\u220F \u2013 (\u002B15)", + "DescriptionText": "Strike along foe\u0027s neck. Foe is frantic to evade death.", + "RawAffixText": "4\u2211 \u2013 2\u220F \u2013 (\u002B15)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 683, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2732, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 2700, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Strike down foe\u0027s defenses with a blow", + "to both arms.", + "\u002B3H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Strike down foe\u0027s defenses with a blow", + "to both arms.", + "\u002B3H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Strike down foe\u0027s defenses with a blow\nto both arms.\n\u002B3H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Strike down foe\u0027s defenses with a blow to both arms.", + "RawAffixText": "\u002B3H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 683, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 2732, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2024, + "CropTop": 2700, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Shot raises foe\u0027s arm up, severing many", + "muscles and tendons. Arm is useless.", + "6\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Shot raises foe\u0027s arm up, severing many", + "muscles and tendons. Arm is useless.", + "6\u2211 \u2013 3\u222B" + ], + "RawCellText": "Shot raises foe\u0027s arm up, severing many\nmuscles and tendons. Arm is useless.\n6\u2211 \u2013 3\u222B", + "DescriptionText": "Shot raises foe\u0027s arm up, severing many muscles and tendons. Arm is useless.", + "RawAffixText": "6\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 683, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2732, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 2700, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Strike to lower leg.", + "with leg greave: \u002B5H \u2013 3\u03C0 \u2013 (-10)", + "w/o leg greave: \u002B3H \u2013 \u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Strike to lower leg." + ], + "RawCellText": "Strike to lower leg.", + "DescriptionText": "Strike to lower leg.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greave", + "ConditionText": "with leg greave", + "RawText": "with leg greave: \u002B5H \u2013 3\u03C0 \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 3\u03C0 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greave", + "ConditionText": "w/o leg greave", + "RawText": "w/o leg greave: \u002B3H \u2013 \u2211\u220F \u2013 (-25)", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 728, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 2912, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 2880, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s calf. Slash muscle. Foe", + "almost falls down.", + "\u002B3H \u2013 2\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Strike to foe\u0027s calf. Slash muscle. Foe", + "almost falls down.", + "\u002B3H \u2013 2\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Strike to foe\u0027s calf. Slash muscle. Foe\nalmost falls down.\n\u002B3H \u2013 2\u2211\u220F \u2013 (-40)", + "DescriptionText": "Strike to foe\u0027s calf. Slash muscle. Foe almost falls down.", + "RawAffixText": "\u002B3H \u2013 2\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 728, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 2912, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 2880, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Destructive strike to lower leg. If foe has", + "leg armor, it is torn free.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Destructive strike to lower leg. If foe has", + "leg armor, it is torn free.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Destructive strike to lower leg. If foe has\nleg armor, it is torn free.\n\u002B5H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Destructive strike to lower leg. If foe has leg armor, it is torn free.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 728, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 2912, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 2880, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Excellent blow to lower leg slashes", + "muscles and cartilage. Foe falls prone.", + "\u002B6H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Excellent blow to lower leg slashes", + "muscles and cartilage. Foe falls prone.", + "\u002B6H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Excellent blow to lower leg slashes\nmuscles and cartilage. Foe falls prone.\n\u002B6H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Excellent blow to lower leg slashes muscles and cartilage. Foe falls prone.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 728, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 2912, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 2880, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Strike plunges into leg with deadly effect.", + "Foe drops, gripping his leg in pain.", + "3\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Strike plunges into leg with deadly effect.", + "Foe drops, gripping his leg in pain.", + "3\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Strike plunges into leg with deadly effect.\nFoe drops, gripping his leg in pain.\n3\u2211\u220F \u2013 (-75)", + "DescriptionText": "Strike plunges into leg with deadly effect. Foe drops, gripping his leg in pain.", + "RawAffixText": "3\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 728, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 2912, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 2880, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Strike foe in upper arm. You tear", + "his pretty clothes.", + "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Strike foe in upper arm. You tear", + "his pretty clothes.", + "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Strike foe in upper arm. You tear\nhis pretty clothes.\n\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Strike foe in upper arm. You tear his pretty clothes.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 785, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3140, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 3108, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Strike to shield side. If foe has shield,", + "your weapon is stuck in it for a round.", + "3\u2211 \u2013 3\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Strike to shield side. If foe has shield,", + "your weapon is stuck in it for a round.", + "3\u2211 \u2013 3\u222B \u2013 (-30)" + ], + "RawCellText": "Strike to shield side. If foe has shield,\nyour weapon is stuck in it for a round.\n3\u2211 \u2013 3\u222B \u2013 (-30)", + "DescriptionText": "Strike to shield side. If foe has shield, your weapon is stuck in it for a round.", + "RawAffixText": "3\u2211 \u2013 3\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 785, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3140, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 3108, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Strike through muscle in shield arm.", + "If foe has a shield, he drops it.", + "6\u2211 \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Strike through muscle in shield arm.", + "If foe has a shield, he drops it.", + "6\u2211 \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Strike through muscle in shield arm.\nIf foe has a shield, he drops it.\n6\u2211 \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Strike through muscle in shield arm. If foe has a shield, he drops it.", + "RawAffixText": "6\u2211 \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 785, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3140, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 3108, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s shield arm. Arm is", + "useless.", + "\u002B12H \u2013 6\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Strike to foe\u0027s shield arm. Arm is", + "useless.", + "\u002B12H \u2013 6\u2211 \u2013 3\u222B" + ], + "RawCellText": "Strike to foe\u0027s shield arm. Arm is\nuseless.\n\u002B12H \u2013 6\u2211 \u2013 3\u222B", + "DescriptionText": "Strike to foe\u0027s shield arm. Arm is useless.", + "RawAffixText": "\u002B12H \u2013 6\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 785, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 3140, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 3108, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Strike foe in weapon arm, the bone is", + "broken. Arm is useless.", + "\u002B10H - 3\u2211\u220F" + ], + "BaseLines": [ + "Strike foe in weapon arm, the bone is", + "broken. Arm is useless.", + "\u002B10H - 3\u2211\u220F" + ], + "RawCellText": "Strike foe in weapon arm, the bone is\nbroken. Arm is useless.\n\u002B10H - 3\u2211\u220F", + "DescriptionText": "Strike foe in weapon arm, the bone is broken. Arm is useless.", + "RawAffixText": "\u002B10H - 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 785, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3140, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 3108, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Deep wound in foe\u0027s side. Well, it", + "looked like a killing blow.", + "6\u2211 \u2013 5\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Deep wound in foe\u0027s side. Well, it", + "looked like a killing blow.", + "6\u2211 \u2013 5\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Deep wound in foe\u0027s side. Well, it\nlooked like a killing blow.\n6\u2211 \u2013 5\u222B \u2013 (\u002B20)", + "DescriptionText": "Deep wound in foe\u0027s side. Well, it looked like a killing blow.", + "RawAffixText": "6\u2211 \u2013 5\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 840, + "Width": 126, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3360, + "BoundsWidth": 504, + "BoundsHeight": 156, + "CropLeft": 280, + "CropTop": 3328, + "CropWidth": 600, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Tear open foe\u0027s side in a graphic display", + "of violence.", + "\u002B6H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Tear open foe\u0027s side in a graphic display", + "of violence.", + "\u002B6H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-25)" + ], + "RawCellText": "Tear open foe\u0027s side in a graphic display\nof violence.\n\u002B6H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-25)", + "DescriptionText": "Tear open foe\u0027s side in a graphic display of violence.", + "RawAffixText": "\u002B6H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 840, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3360, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 812, + "CropTop": 3328, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Strike bites into foe\u0027s ribs. The impact", + "sounds truly terrible.", + "\u002B6H \u2013 3\u2211\u220F \u2013 (-25) \u2013 5\u222B" + ], + "BaseLines": [ + "Strike bites into foe\u0027s ribs. The impact", + "sounds truly terrible.", + "\u002B6H \u2013 3\u2211\u220F \u2013 (-25) \u2013 5\u222B" + ], + "RawCellText": "Strike bites into foe\u0027s ribs. The impact\nsounds truly terrible.\n\u002B6H \u2013 3\u2211\u220F \u2013 (-25) \u2013 5\u222B", + "DescriptionText": "Strike bites into foe\u0027s ribs. The impact sounds truly terrible.", + "RawAffixText": "\u002B6H \u2013 3\u2211\u220F \u2013 (-25) \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 840, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3360, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1420, + "CropTop": 3328, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Major abdomenal wound. Blood pours", + "out in frightening quantities.", + "\u002B10H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Major abdomenal wound. Blood pours", + "out in frightening quantities.", + "\u002B10H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)" + ], + "RawCellText": "Major abdomenal wound. Blood pours\nout in frightening quantities.\n\u002B10H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "DescriptionText": "Major abdomenal wound. Blood pours out in frightening quantities.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u2013 6\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 840, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 3360, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2024, + "CropTop": 3328, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s back severs a vein. Foe", + "goes to his knees and dies in 12 rounds.", + "\u2014" + ], + "BaseLines": [ + "Strike to foe\u0027s back severs a vein. Foe", + "goes to his knees and dies in 12 rounds.", + "\u2014" + ], + "RawCellText": "Strike to foe\u0027s back severs a vein. Foe\ngoes to his knees and dies in 12 rounds.\n\u2014", + "DescriptionText": "Strike to foe\u0027s back severs a vein. Foe goes to his knees and dies in 12 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 840, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "puncture/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3360, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2632, + "CropTop": 3328, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Catch foe in the back. He drops his", + "guard and stumbles foward.", + "2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Catch foe in the back. He drops his", + "guard and stumbles foward.", + "2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Catch foe in the back. He drops his\nguard and stumbles foward.\n2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Catch foe in the back. He drops his guard and stumbles foward.", + "RawAffixText": "2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 887, + "Width": 126, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3548, + "BoundsWidth": 504, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 3516, + "CropWidth": 600, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s head. If foe has no helm", + "he dies. If foe has helm, he falls to his", + "knees.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s head. If foe has no helm", + "he dies. If foe has helm, he falls to his", + "knees.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "RawCellText": "Strike to foe\u0027s head. If foe has no helm\nhe dies. If foe has helm, he falls to his\nknees.\n\u002B6H \u2013 2\u2211\u220F", + "DescriptionText": "Strike to foe\u0027s head. If foe has no helm he dies. If foe has helm, he falls to his knees.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 887, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 3548, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 3516, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Strike impacts on foe\u0027s head. If he has", + "no helm, he dies. Helm is destroyed.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Strike impacts on foe\u0027s head. If he has", + "no helm, he dies. Helm is destroyed.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "RawCellText": "Strike impacts on foe\u0027s head. If he has\nno helm, he dies. Helm is destroyed.\n\u002B6H \u2013 2\u2211\u220F", + "DescriptionText": "Strike impacts on foe\u0027s head. If he has no helm, he dies. Helm is destroyed.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 887, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3548, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 3516, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Strike through foes kidneys. Foe is down", + "and immobile for 2 hours, then he dies.", + "\u002B9H" + ], + "BaseLines": [ + "Strike through foes kidneys. Foe is down", + "and immobile for 2 hours, then he dies.", + "\u002B9H" + ], + "RawCellText": "Strike through foes kidneys. Foe is down\nand immobile for 2 hours, then he dies.\n\u002B9H", + "DescriptionText": "Strike through foes kidneys. Foe is down and immobile for 2 hours, then he dies.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 887, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 3548, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 3516, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Strike plunges in just below foe\u0027s", + "collarbone Foe drops and dies in 12", + "rounds.", + "\u2014" + ], + "BaseLines": [ + "Strike plunges in just below foe\u0027s", + "collarbone Foe drops and dies in 12", + "rounds.", + "\u2014" + ], + "RawCellText": "Strike plunges in just below foe\u0027s\ncollarbone Foe drops and dies in 12\nrounds.\n\u2014", + "DescriptionText": "Strike plunges in just below foe\u0027s collarbone Foe drops and dies in 12 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 887, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3548, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 3516, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s ear. Foe hears at -50.", + "with helmet: \u002B5H \u2013 4\u2211 \u2013 \u220F", + "w/o helmet: \u002B3H \u2013 2\u222B \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s ear. Foe hears at -50." + ], + "RawCellText": "Strike to foe\u0027s ear. Foe hears at -50.", + "DescriptionText": "Strike to foe\u0027s ear. Foe hears at -50.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B5H \u2013 4\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 4\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: \u002B3H \u2013 2\u222B \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u222B \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 942, + "Width": 129, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 3768, + "BoundsWidth": 516, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 3736, + "CropWidth": 612, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s hip.", + "with waist armor: \u002B7H \u2013 \u2211 \u2013 (-10)", + "w/o waist armor: \u002B5H \u2013 \u2211 \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Strike to foe\u0027s hip." + ], + "RawCellText": "Strike to foe\u0027s hip.", + "DescriptionText": "Strike to foe\u0027s hip.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_waist_armor", + "ConditionText": "with waist armor", + "RawText": "with waist armor: \u002B7H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_waist_armor", + "ConditionText": "w/o waist armor", + "RawText": "w/o waist armor: \u002B5H \u2013 \u2211 \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 214, + "Top": 942, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 856, + "BoundsTop": 3768, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 808, + "CropTop": 3736, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Strike to chest. If foe has plate chest", + "armor, he drops and dies in 9 rounds. If", + "not, he dies instantly.", + "\u2014" + ], + "BaseLines": [ + "Strike to chest. If foe has plate chest", + "armor, he drops and dies in 9 rounds. If", + "not, he dies instantly.", + "\u2014" + ], + "RawCellText": "Strike to chest. If foe has plate chest\narmor, he drops and dies in 9 rounds. If\nnot, he dies instantly.\n\u2014", + "DescriptionText": "Strike to chest. If foe has plate chest armor, he drops and dies in 9 rounds. If not, he dies instantly.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 942, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 3768, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1420, + "CropTop": 3736, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Strike through foe\u0027s side spills his guts", + "on the floor. Foe fights on normally for 6", + "rounds, then dies.", + "\u2014" + ], + "BaseLines": [ + "Strike through foe\u0027s side spills his guts", + "on the floor. Foe fights on normally for 6", + "rounds, then dies.", + "\u2014" + ], + "RawCellText": "Strike through foe\u0027s side spills his guts\non the floor. Foe fights on normally for 6\nrounds, then dies.\n\u2014", + "DescriptionText": "Strike through foe\u0027s side spills his guts on the floor. Foe fights on normally for 6 rounds, then dies.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 942, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 3768, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 2024, + "CropTop": 3736, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Your weapon passes through the arm", + "and sticks out the other side. Foe dies in", + "12 rounds.", + "12\u2211" + ], + "BaseLines": [ + "Your weapon passes through the arm", + "and sticks out the other side. Foe dies in", + "12 rounds.", + "12\u2211" + ], + "RawCellText": "Your weapon passes through the arm\nand sticks out the other side. Foe dies in\n12 rounds.\n12\u2211", + "DescriptionText": "Your weapon passes through the arm and sticks out the other side. Foe dies in 12 rounds.", + "RawAffixText": "12\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 942, + "Width": 147, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 3768, + "BoundsWidth": 588, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 3736, + "CropWidth": 684, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Strike to nose. There is a", + "permanent scar. Foe\u0027s eyes are", + "crossed for a moment.", + "3\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Strike to nose. There is a", + "permanent scar. Foe\u0027s eyes are", + "crossed for a moment.", + "3\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Strike to nose. There is a\npermanent scar. Foe\u0027s eyes are\ncrossed for a moment.\n3\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Strike to nose. There is a permanent scar. Foe\u0027s eyes are crossed for a moment.", + "RawAffixText": "3\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 1010, + "Width": 126, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 4040, + "BoundsWidth": 504, + "BoundsHeight": 240, + "CropLeft": 280, + "CropTop": 4008, + "CropWidth": 600, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Strike through foe\u0027s cheek and throat.", + "Foe drops and dies after 9 rounds of", + "incapacity.", + "(\u002B20)" + ], + "BaseLines": [ + "Strike through foe\u0027s cheek and throat.", + "Foe drops and dies after 9 rounds of", + "incapacity.", + "(\u002B20)" + ], + "RawCellText": "Strike through foe\u0027s cheek and throat.\nFoe drops and dies after 9 rounds of\nincapacity.\n(\u002B20)", + "DescriptionText": "Strike through foe\u0027s cheek and throat. Foe drops and dies after 9 rounds of incapacity.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 1010, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 4040, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 812, + "CropTop": 4008, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Strike through foe\u0027s neck breaks", + "backbone and severs spine. Foe is", + "paralyzed from the neck down.", + "\u2014" + ], + "BaseLines": [ + "Strike through foe\u0027s neck breaks", + "backbone and severs spine. Foe is", + "paralyzed from the neck down.", + "\u2014" + ], + "RawCellText": "Strike through foe\u0027s neck breaks\nbackbone and severs spine. Foe is\nparalyzed from the neck down.\n\u2014", + "DescriptionText": "Strike through foe\u0027s neck breaks backbone and severs spine. Foe is paralyzed from the neck down.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 1010, + "Width": 142, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 4040, + "BoundsWidth": 568, + "BoundsHeight": 240, + "CropLeft": 1420, + "CropTop": 4008, + "CropWidth": 664, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Strike plunges into doomed foe\u0027s chest", + "and emerges from the other side. Foe", + "drops and dies in 6 rounds.", + "\u2014" + ], + "BaseLines": [ + "Strike plunges into doomed foe\u0027s chest", + "and emerges from the other side. Foe", + "drops and dies in 6 rounds.", + "\u2014" + ], + "RawCellText": "Strike plunges into doomed foe\u0027s chest\nand emerges from the other side. Foe\ndrops and dies in 6 rounds.\n\u2014", + "DescriptionText": "Strike plunges into doomed foe\u0027s chest and emerges from the other side. Foe drops and dies in 6 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 1010, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 4040, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 2024, + "CropTop": 4008, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Shot through heart sends foe reeling", + "back 10 feet to a place suitable for death.", + "Your weapon is stuck in reeling foe.", + "\u2014" + ], + "BaseLines": [ + "Shot through heart sends foe reeling", + "back 10 feet to a place suitable for death.", + "Your weapon is stuck in reeling foe.", + "\u2014" + ], + "RawCellText": "Shot through heart sends foe reeling\nback 10 feet to a place suitable for death.\nYour weapon is stuck in reeling foe.\n\u2014", + "DescriptionText": "Shot through heart sends foe reeling back 10 feet to a place suitable for death. Your weapon is stuck in reeling foe.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 1010, + "Width": 147, + "Height": 60 + }, + "SourceImagePath": "puncture/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 4040, + "BoundsWidth": 588, + "BoundsHeight": 240, + "CropLeft": 2632, + "CropTop": 4008, + "CropWidth": 684, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Strike through neck. Sever vein and", + "artery. Foe cannot breath. Foe", + "drops and dies of heart failure.", + "\u2014" + ], + "BaseLines": [ + "Strike through neck. Sever vein and", + "artery. Foe cannot breath. Foe", + "drops and dies of heart failure.", + "\u2014" + ], + "RawCellText": "Strike through neck. Sever vein and\nartery. Foe cannot breath. Foe\ndrops and dies of heart failure.\n\u2014", + "DescriptionText": "Strike through neck. Sever vein and artery. Foe cannot breath. Foe drops and dies of heart failure.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 82, + "Top": 1076, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 328, + "BoundsTop": 4304, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 280, + "CropTop": 4272, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Strike plunges into foe\u0027s eye. Foe dies", + "instantly. Foe remains standing for a", + "moment until he realizes this.", + "all allies get \u002B10 for 1 round" + ], + "BaseLines": [ + "Strike plunges into foe\u0027s eye. Foe dies", + "instantly. Foe remains standing for a", + "moment until he realizes this.", + "all allies get \u002B10 for 1 round" + ], + "RawCellText": "Strike plunges into foe\u0027s eye. Foe dies\ninstantly. Foe remains standing for a\nmoment until he realizes this.\nall allies get \u002B10 for 1 round", + "DescriptionText": "Strike plunges into foe\u0027s eye. Foe dies instantly. Foe remains standing for a moment until he realizes this. all allies get \u002B10 for 1 round", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 215, + "Top": 1076, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 860, + "BoundsTop": 4304, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 812, + "CropTop": 4272, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Shot through both ears proves", + "effective. Foe dies instantly. Pretty shot.", + "6(\u002B20)" + ], + "BaseLines": [ + "Shot through both ears proves", + "effective. Foe dies instantly. Pretty shot.", + "6(\u002B20)" + ], + "RawCellText": "Shot through both ears proves\neffective. Foe dies instantly. Pretty shot.\n6(\u002B20)", + "DescriptionText": "Shot through both ears proves effective. Foe dies instantly. Pretty shot.", + "RawAffixText": "6(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 367, + "Top": 1076, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1468, + "BoundsTop": 4304, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1420, + "CropTop": 4272, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Strike through brain makes life difficult", + "for foe. You have a half round left to act.", + "(\u002B20)" + ], + "BaseLines": [ + "Strike through brain makes life difficult", + "for foe. You have a half round left to act.", + "(\u002B20)" + ], + "RawCellText": "Strike through brain makes life difficult\nfor foe. You have a half round left to act.\n(\u002B20)", + "DescriptionText": "Strike through brain makes life difficult for foe. You have a half round left to act.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 518, + "Top": 1076, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2072, + "BoundsTop": 4304, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2024, + "CropTop": 4272, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s eye. Foe dies instantly.", + "Carry on soldier.", + "(\u002B25)" + ], + "BaseLines": [ + "Strike to foe\u0027s eye. Foe dies instantly.", + "Carry on soldier.", + "(\u002B25)" + ], + "RawCellText": "Strike to foe\u0027s eye. Foe dies instantly.\nCarry on soldier.\n(\u002B25)", + "DescriptionText": "Strike to foe\u0027s eye. Foe dies instantly. Carry on soldier.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 670, + "Top": 1076, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "puncture/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2680, + "BoundsTop": 4304, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2632, + "CropTop": 4272, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/source.xml b/src/RolemasterDb.App/import-artifacts/critical/puncture/source.xml new file mode 100644 index 0000000..8d0872e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/puncture/source.xml @@ -0,0 +1,345 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +100 +01-05 +Foe avoids most of the attack. +Glancing blow. Nothing extra. +Foe dances clear of the worst. +Strike bounces off. +Strike lands flat. ++0H ++0H ++1H ++2H ++3H +06-10 +Strike failed to connect well. +Panck! +Nick your weapon and your foe. +Strike lands without energy. +Shot unbalances foe. You have initiative. ++1H ++2H ++3H ++4H ++5H +11-15 +Strike causes foe to flinch. You gain +initiative next round. +Foe questions his resolve. You gain +initiative next round. +Foe's evasion puts him out of position. +You gain initiative next round. +Foe evades and maneuvers for a better +position. +Foe is fearful of your skill and steps back +from your mighty onslaught. ++1H ++3H ++5H ++2H – π ++3H – π +16-20 +Foe steps back defensively. +For steps back and avoids the worst. +Blow to foe's side. If foe has a belt it is +severed. +Precise strike to foe's side. You have the +initiative for 1 round. +Foe vibrates from the impact of the +strike. ++1H-π ++2H – (π-10) ++3H – (π-20) +(-10) +∑ – (+20) +21-35 +Convince foe of his peril by just +missing his abdomen. +Foe is uncertain about your next attack. +He choses to let you make the first move +(you gain the initiative). +Strike crosses foe's head. If he has a +helm it is knocked off and dented. +You wound foe in hip. Strike strips +equipment from right side of waist. +Deal foe a measurable blow to his side. +Any one container on your foe now has a +hole in it. ++2H – π (+10) ++2H – 2π +∑ – ∫ +∑ – 2∫ ++2H – 2∫ – (-10) +36-45 +Nick foe's calf with long follow +through. +Cheap shot to foe's shin. +Strike along foe's calf. The damage +takes a moment to show. +Close call for foe's groin. +Strike to upper leg rips clothing. + +with leg greaves:+5H – π +w/o leg greaves: +2H – ∫ +2∫ +with waist armor: +4H – ∑ +w/o waist armor: 3∫ +with leg armor: +3H – π +w/o leg armor: +2H – 3∫ +46-50 +Foe's evasion exposes his back to +your strike. +Blow to back damages any equipment +worn there. +Lower back strike sends foe reeling. +His guard is still up. +Light strike pins foe's weapon arm to his +side. +Strike to side. If foe has armor, the blow +tears it open and exposes skin. ++2H – (π-30) +∑ – ∫ +2∑ – ∫ ++6H – ∑∏ +with abdomen armor: +8H – ∑ – ∫ +w/o abdomen armor: +4H – ∑∏ – 4∫ +51-55 +Strike to foe's chest and he looks +impressed. +Solid strike to foe's chest. Blood from +wound ruins any heraldry. +Strike toward chest. If foe has a shield, it +is out of position for the rest of the +round. +Solid chest strike leaves bruises and +blood. +Foe goes low to evade your attack. Strike +takes foe down on one knee. Finish him. +(π-25) – 2∫ ++3H – 2∫ – 2π ++3H – 2∑ – 2∫ ++5H – π – 3∫ – (-15) ++5H – ∑∏ – (-10) +56-60 +Minor thigh wound. It could have +been better. +Thigh wound does some damage. +Strike to foe's thigh. +Strike foe in abdomen. +Blow to foe's side. He stumbles to your +right 10 feet. ++2H – ∑ – 2∫ ++3H – ∑∏ – 2∫ +with leg armor: +8H – ∑∏ – ∫ +w/o leg armor: +5H – 2∑ – 2∫– (-10) +with abdomen armor: +5H – 2∏ +w/o abdomen armor: +3H – ∑∏ – 3∫ ++6H – ∑∏ – 5∫ +61-65 +Minor forearm wound numbs +foe's grip. +Forearm strike shakes foe up. Foe +attempts a recovery. +Solid strike to foe's right forearm. +Blow to foe's weapon arm. Arm is +numb. +Catch foe's forearm. The wound opens +up nicely. Foe is in pain. ++2H – 2∫ –(-10) ++2H – ∑ – 2∫ – (-10) +with arm greaves: +5H – 2∑∏ +w/o arm greaves: +3H – 2∑ – 2∫ – (-10) ++3H – 2∑ – 3∫ – (-10) ++5H – 2∑ – 3∫ – (-15) +66 +Strike to foe's shield shoulder. Arm +is useless. That must really hurt! +Foe blocks your attack with his elbow. +Elbow is shattered. Shield arm is +useless. +Strike shatters foe's knee. Foe crumbles +to the ground. He is down for 3 rounds. +Strike to head kills foe, if he has no +helm. If he has a helm he in knocked out +for 6 hours. +Strike through both of foe's lungs. Foe +drops and passes out. He dies 6 rounds +later. +3∑ – (+10) ++3H – 4∑ – 2π +2∑∏ – (-90) ++10H +(+10) +67-70 +Strike along foe's neck. +Strike to foe's neck. It's not enough for a +kill. +Strike along foe's neck. Foe is frantic to +evade death. +Strike down foe's defenses with a blow +to both arms. +Shot raises foe's arm up, severing many +muscles and tendons. Arm is useless. ++5H – 3∑ – ∏ +2∑ –3∫ – (-5) +4∑ – 2∏ – (+15) ++3H – 2∑∏ – (-20) +6∑ – 3∫ +71-75 +Strike to lower leg. +Strike to foe's calf. Slash muscle. Foe +almost falls down. +Destructive strike to lower leg. If foe has +leg armor, it is torn free. +Excellent blow to lower leg slashes +muscles and cartilage. Foe falls prone. +Strike plunges into leg with deadly effect. +Foe drops, gripping his leg in pain. +with leg greave: +5H – 3π – (-10) +w/o leg greave: +3H – ∑∏ – (-25) ++3H – 2∑∏ – (-40) ++5H – 2∑∏ – (-50) ++6H – 2∑∏ – (-50) +3∑∏ – (-75) +76-80 +Strike foe in upper arm. You tear +his pretty clothes. +Strike to shield side. If foe has shield, +your weapon is stuck in it for a round. +Strike through muscle in shield arm. +If foe has a shield, he drops it. +Strike to foe's shield arm. Arm is +useless. +Strike foe in weapon arm, the bone is +broken. Arm is useless. ++3H – 2∑ – 3∫ – (-25) +3∑ – 3∫ – (-30) +6∑ – 3∫ – (-25) ++12H – 6∑ – 3∫ ++10H - 3∑∏ +81-85 +Deep wound in foe's side. Well, it +looked like a killing blow. +Tear open foe's side in a graphic display +of violence. +Strike bites into foe's ribs. The impact +sounds truly terrible. +Major abdomenal wound. Blood pours +out in frightening quantities. +Strike to foe's back severs a vein. Foe +goes to his knees and dies in 12 rounds. +6∑ – 5∫ – (+20) ++6H – 3∑∏ – 5∫ – (-25) ++6H – 3∑∏ – (-25) – 5∫ ++10H – 3∑∏ – 6∫ – (-20) + +86-90 +Catch foe in the back. He drops his +guard and stumbles foward. +Strike to foe's head. If foe has no helm +he dies. If foe has helm, he falls to his +knees. +Strike impacts on foe's head. If he has +no helm, he dies. Helm is destroyed. +Strike through foes kidneys. Foe is down +and immobile for 2 hours, then he dies. +Strike plunges in just below foe's +collarbone Foe drops and dies in 12 +rounds. +2∑∏ – 2∫ – (-20) ++6H – 2∑∏ ++6H – 2∑∏ ++9H + +91-95 +Strike to foe's ear. Foe hears at -50. Strike to foe's hip. +Strike to chest. If foe has plate chest +armor, he drops and dies in 9 rounds. If +not, he dies instantly. +Strike through foe's side spills his guts +on the floor. Foe fights on normally for 6 +rounds, then dies. +Your weapon passes through the arm +and sticks out the other side. Foe dies in +12 rounds. +with helmet: +5H – 4∑ – ∏ +w/o helmet: +3H – 2∫ – 2∑∏ +with waist armor: +7H – ∑ – (-10) +w/o waist armor: +5H – ∑ – 3∫ – (-25) + + +12∑ +96-99 +Strike to nose. There is a +permanent scar. Foe's eyes are +crossed for a moment. +Strike through foe's cheek and throat. +Foe drops and dies after 9 rounds of +incapacity. +Strike through foe's neck breaks +backbone and severs spine. Foe is +paralyzed from the neck down. +Strike plunges into doomed foe's chest +and emerges from the other side. Foe +drops and dies in 6 rounds. +Shot through heart sends foe reeling +back 10 feet to a place suitable for death. +Your weapon is stuck in reeling foe. +3∑∏ – 3∫ +(+20) + + + +100 +Strike through neck. Sever vein and +artery. Foe cannot breath. Foe +drops and dies of heart failure. +Strike plunges into foe's eye. Foe dies +instantly. Foe remains standing for a +moment until he realizes this. +Shot through both ears proves +effective. Foe dies instantly. Pretty shot. +Strike through brain makes life difficult +for foe. You have a half round left to act. +Strike to foe's eye. Foe dies instantly. +Carry on soldier. + +all allies get +10 for 1 round +6(+20) + (+20) +(+25) +4.7 puncture critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/puncture/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/puncture/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/puncture/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__01-05.png new file mode 100644 index 0000000..6edac5d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__06-10.png new file mode 100644 index 0000000..a5912a0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__100.png new file mode 100644 index 0000000..785bd24 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__11-15.png new file mode 100644 index 0000000..7d53c73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__16-20.png new file mode 100644 index 0000000..11e50be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__21-35.png new file mode 100644 index 0000000..31d6664 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__36-45.png new file mode 100644 index 0000000..d16d2fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__46-50.png new file mode 100644 index 0000000..70af815 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__51-55.png new file mode 100644 index 0000000..654c091 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__56-60.png new file mode 100644 index 0000000..cc5ffaa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__61-65.png new file mode 100644 index 0000000..620cc50 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__66.png new file mode 100644 index 0000000..20521d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__67-70.png new file mode 100644 index 0000000..aaf7530 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__71-75.png new file mode 100644 index 0000000..cb1c88f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__76-80.png new file mode 100644 index 0000000..d4a726c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__81-85.png new file mode 100644 index 0000000..3962b90 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__86-90.png new file mode 100644 index 0000000..1ed29a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__91-95.png new file mode 100644 index 0000000..0054d50 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__96-99.png new file mode 100644 index 0000000..5c9a276 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__01-05.png new file mode 100644 index 0000000..f35cc5f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__06-10.png new file mode 100644 index 0000000..c6bae41 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__100.png new file mode 100644 index 0000000..680fd16 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__11-15.png new file mode 100644 index 0000000..848b619 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__16-20.png new file mode 100644 index 0000000..174d509 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__21-35.png new file mode 100644 index 0000000..8a81347 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__36-45.png new file mode 100644 index 0000000..fc0c211 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__46-50.png new file mode 100644 index 0000000..a46a1b4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__51-55.png new file mode 100644 index 0000000..05735bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__56-60.png new file mode 100644 index 0000000..8a4601c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__61-65.png new file mode 100644 index 0000000..df6f392 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__66.png new file mode 100644 index 0000000..fd1367e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__67-70.png new file mode 100644 index 0000000..145c7a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__71-75.png new file mode 100644 index 0000000..715b8d1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__76-80.png new file mode 100644 index 0000000..af9cd5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__81-85.png new file mode 100644 index 0000000..0f27fb1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__86-90.png new file mode 100644 index 0000000..f573cc9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__91-95.png new file mode 100644 index 0000000..a7d73bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__96-99.png new file mode 100644 index 0000000..56ee5eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__01-05.png new file mode 100644 index 0000000..9647e26 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__06-10.png new file mode 100644 index 0000000..a96dbc3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__100.png new file mode 100644 index 0000000..5e04a83 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__11-15.png new file mode 100644 index 0000000..8b3c0bd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__16-20.png new file mode 100644 index 0000000..06bf2ca Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__21-35.png new file mode 100644 index 0000000..07397d1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__36-45.png new file mode 100644 index 0000000..626b4f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__46-50.png new file mode 100644 index 0000000..2ee8571 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__51-55.png new file mode 100644 index 0000000..864a1b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__56-60.png new file mode 100644 index 0000000..d3276c1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__61-65.png new file mode 100644 index 0000000..8ecec88 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__66.png new file mode 100644 index 0000000..4c1db5e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__67-70.png new file mode 100644 index 0000000..1e9f01f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__71-75.png new file mode 100644 index 0000000..08fd2e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__76-80.png new file mode 100644 index 0000000..beb8299 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__81-85.png new file mode 100644 index 0000000..818a61d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__86-90.png new file mode 100644 index 0000000..9036ffd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__91-95.png new file mode 100644 index 0000000..3f27d8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__96-99.png new file mode 100644 index 0000000..45bd50d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__01-05.png new file mode 100644 index 0000000..8261139 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__06-10.png new file mode 100644 index 0000000..7502355 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__100.png new file mode 100644 index 0000000..5b3fdc1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__11-15.png new file mode 100644 index 0000000..acb8448 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__16-20.png new file mode 100644 index 0000000..9e48dfe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__21-35.png new file mode 100644 index 0000000..72b6c17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__36-45.png new file mode 100644 index 0000000..a632fb7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__46-50.png new file mode 100644 index 0000000..01a7320 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__51-55.png new file mode 100644 index 0000000..c61c373 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__56-60.png new file mode 100644 index 0000000..e73bc26 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__61-65.png new file mode 100644 index 0000000..dee6b40 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__66.png new file mode 100644 index 0000000..35220c3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__67-70.png new file mode 100644 index 0000000..4c22f9a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__71-75.png new file mode 100644 index 0000000..3851039 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__76-80.png new file mode 100644 index 0000000..3fff1f4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__81-85.png new file mode 100644 index 0000000..a4692a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__86-90.png new file mode 100644 index 0000000..47ec9ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__91-95.png new file mode 100644 index 0000000..b2c51be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__96-99.png new file mode 100644 index 0000000..e89af36 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__01-05.png new file mode 100644 index 0000000..70a63d8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__06-10.png new file mode 100644 index 0000000..02d2acb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__100.png new file mode 100644 index 0000000..db3a980 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__11-15.png new file mode 100644 index 0000000..432887b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__16-20.png new file mode 100644 index 0000000..282cc29 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__21-35.png new file mode 100644 index 0000000..a374f4c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__36-45.png new file mode 100644 index 0000000..40bc735 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__46-50.png new file mode 100644 index 0000000..7c8358c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__51-55.png new file mode 100644 index 0000000..00c4c88 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__56-60.png new file mode 100644 index 0000000..700b85a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__61-65.png new file mode 100644 index 0000000..51f3536 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__66.png new file mode 100644 index 0000000..cd6af8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__67-70.png new file mode 100644 index 0000000..cb7bbda Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__71-75.png new file mode 100644 index 0000000..75f8d6f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__76-80.png new file mode 100644 index 0000000..8fe3a9e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__81-85.png new file mode 100644 index 0000000..a8e9213 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__86-90.png new file mode 100644 index 0000000..fee5cef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__91-95.png new file mode 100644 index 0000000..8e8869b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__96-99.png new file mode 100644 index 0000000..6b7ca7c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/slash/fragments.json new file mode 100644 index 0000000..f3e1fe6 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/slash/fragments.json @@ -0,0 +1,3692 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 848, + "Width": 22, + "Height": 13, + "Text": "101", + "Confidence": null, + "CenterX": 859 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 112, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 149, + "Width": 43, + "Height": 9, + "Text": "Weak strike.", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 283, + "Width": 114, + "Height": 9, + "Text": "Feeble strike falls clear of target.", + "Confidence": null, + "CenterX": 340 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 434, + "Width": 129, + "Height": 9, + "Text": "Firm shot. Good recovery. Try again.", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 585, + "Width": 71, + "Height": 9, + "Text": "Strike lands poorly.", + "Confidence": null, + "CenterX": 620.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 737, + "Width": 73, + "Height": 9, + "Text": "Your attack is weak.", + "Confidence": null, + "CenterX": 773.5 + }, + { + "PageNumber": 1, + "Top": 126, + "Left": 262, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 126, + "Left": 413, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 126, + "Left": 563, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 126, + "Left": 714, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 126, + "Left": 870, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 154, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 149, + "Width": 106, + "Height": 9, + "Text": "Good form, but it disappoints.", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 283, + "Width": 146, + "Height": 9, + "Text": "Hard strike with no edge. Foe steps clear", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 283, + "Width": 77, + "Height": 9, + "Text": "before you sort it out.", + "Confidence": null, + "CenterX": 321.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 434, + "Width": 131, + "Height": 9, + "Text": "Strike foe with more force than edge.", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 585, + "Width": 146, + "Height": 9, + "Text": "An opening appears and all you can to is", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 585, + "Width": 64, + "Height": 9, + "Text": "smack foe lightly.", + "Confidence": null, + "CenterX": 617 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "Unbalance foe. You receive initiative next", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 737, + "Width": 23, + "Height": 9, + "Text": "round.", + "Confidence": null, + "CenterX": 748.5 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 262, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 413, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 563, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 714, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 172, + "Left": 870, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 877 + }, + { + "PageNumber": 1, + "Top": 199, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 149, + "Width": 123, + "Height": 9, + "Text": "Blade misses foe\u0027s face by inches.", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 149, + "Width": 118, + "Height": 9, + "Text": "You receive initiative next round.", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 283, + "Width": 145, + "Height": 9, + "Text": "Foe steps quickly out of your reach. You", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 283, + "Width": 99, + "Height": 9, + "Text": "receive initiative next round.", + "Confidence": null, + "CenterX": 332.5 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 434, + "Width": 142, + "Height": 9, + "Text": "Blow to foe\u0027s side yields the initiative to", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 434, + "Width": 56, + "Height": 9, + "Text": "you next round.", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 585, + "Width": 146, + "Height": 9, + "Text": "You force your opponent back. He keeps", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 585, + "Width": 100, + "Height": 9, + "Text": "you at bay with wild swings.", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 187, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "You push aside foe\u0027s weapon and force", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 737, + "Width": 34, + "Height": 9, + "Text": "him back.", + "Confidence": null, + "CenterX": 754 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 262, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 413, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 563, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 698, + "Width": 30, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 217, + "Left": 854, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 869 + }, + { + "PageNumber": 1, + "Top": 246, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 149, + "Width": 117, + "Height": 9, + "Text": "Strike passes under foe\u0027s arm. It", + "Confidence": null, + "CenterX": 207.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 149, + "Width": 100, + "Height": 9, + "Text": "fails to bite deep. He recoils.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 283, + "Width": 115, + "Height": 9, + "Text": "Blow to foe\u0027s side. Foe defends", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 283, + "Width": 49, + "Height": 9, + "Text": "energetically.", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 434, + "Width": 130, + "Height": 9, + "Text": "Your assault catches foe in side and", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 434, + "Width": 83, + "Height": 9, + "Text": "forces him back 5 feet.", + "Confidence": null, + "CenterX": 475.5 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 585, + "Width": 135, + "Height": 9, + "Text": "You lean in and slash foe\u0027s side. You", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 585, + "Width": 102, + "Height": 9, + "Text": "receive initiative next round.", + "Confidence": null, + "CenterX": 636 + }, + { + "PageNumber": 1, + "Top": 234, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "Strong blow to foe\u0027s ribs. Foe drops his", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 737, + "Width": 109, + "Height": 9, + "Text": "guard and almost his weapon.", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 245, + "Width": 30, + "Height": 9, + "Text": "\u002B1H \u2013 \u03C0", + "Confidence": null, + "CenterX": 260 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 379, + "Width": 48, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-10)", + "Confidence": null, + "CenterX": 403 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 528, + "Width": 48, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 552 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 687, + "Width": 41, + "Height": 9, + "Text": "\u002B2H \u2013 (-10)", + "Confidence": null, + "CenterX": 707.5 + }, + { + "PageNumber": 1, + "Top": 264, + "Left": 840, + "Width": 45, + "Height": 9, + "Text": "\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 298, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 149, + "Width": 117, + "Height": 9, + "Text": "Foe\u0027s evasion puts him out of an", + "Confidence": null, + "CenterX": 207.5 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 149, + "Width": 69, + "Height": 9, + "Text": "aggressive posture.", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 283, + "Width": 120, + "Height": 9, + "Text": "Foe is shaken by your blow to his", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 283, + "Width": 122, + "Height": 9, + "Text": "side. His defensive measures look", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 283, + "Width": 28, + "Height": 9, + "Text": "clumsy.", + "Confidence": null, + "CenterX": 297 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 434, + "Width": 126, + "Height": 9, + "Text": "You break foe\u0027s rib with a lightning", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 434, + "Width": 139, + "Height": 9, + "Text": "strike to his chest. He recovers quickly.", + "Confidence": null, + "CenterX": 503.5 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 434, + "Width": 104, + "Height": 9, + "Text": "His shield side still faces you.", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 585, + "Width": 145, + "Height": 9, + "Text": "Arm and chest strike. Foe cannot defend", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 585, + "Width": 141, + "Height": 9, + "Text": "himself for a moment. You step around", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 585, + "Width": 61, + "Height": 9, + "Text": "his shielded side.", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 280, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "Foe avoids your main effort, but you nick", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 291, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "him on your recovery. Foe receives minor", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 301, + "Left": 737, + "Width": 138, + "Height": 9, + "Text": "side wound and stumbles back 10 feet.", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 217, + "Width": 59, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 246.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 379, + "Width": 48, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-20)", + "Confidence": null, + "CenterX": 403 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 545, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 689, + "Width": 40, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 830, + "Width": 55, + "Height": 9, + "Text": "\u002B3H \u2013 \u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 857.5 + }, + { + "PageNumber": 1, + "Top": 354, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 149, + "Width": 114, + "Height": 9, + "Text": "Minor thigh wound. Cut foe with", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 149, + "Width": 85, + "Height": 9, + "Text": "the smallest of slashes.", + "Confidence": null, + "CenterX": 191.5 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 283, + "Width": 129, + "Height": 9, + "Text": "Strike foe in shin. If he doesn\u0027t have", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 283, + "Width": 124, + "Height": 9, + "Text": "greaves, you slash open foe\u0027s shin.", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 434, + "Width": 147, + "Height": 9, + "Text": "The blow does nothing more than open a", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 434, + "Width": 54, + "Height": 9, + "Text": "wide cut in foe.", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 585, + "Width": 145, + "Height": 9, + "Text": "Foe blocks your attack on his chest. You", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 585, + "Width": 82, + "Height": 9, + "Text": "slash foe\u0027s upper area.", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 737, + "Width": 146, + "Height": 9, + "Text": "Blow to foe\u0027s upper leg. Leg armor helps", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 346, + "Left": 737, + "Width": 54, + "Height": 9, + "Text": "block the blow.", + "Confidence": null, + "CenterX": 764 + }, + { + "PageNumber": 1, + "Top": 376, + "Left": 269, + "Width": 7, + "Height": 9, + "Text": "\u222B", + "Confidence": null, + "CenterX": 272.5 + }, + { + "PageNumber": 1, + "Top": 366, + "Left": 335, + "Width": 92, + "Height": 9, + "Text": "with leg greaves: \u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 376, + "Left": 340, + "Width": 88, + "Height": 9, + "Text": "w/o leg greaves: \u002B2H \u2013 \u222B", + "Confidence": null, + "CenterX": 384 + }, + { + "PageNumber": 1, + "Top": 376, + "Left": 545, + "Width": 33, + "Height": 9, + "Text": "\u002B2H \u2013 2\u222B", + "Confidence": null, + "CenterX": 561.5 + }, + { + "PageNumber": 1, + "Top": 376, + "Left": 696, + "Width": 33, + "Height": 9, + "Text": "\u002B3H \u2013 2\u222B", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 366, + "Left": 809, + "Width": 76, + "Height": 9, + "Text": "with leg greaves: \u002B5H", + "Confidence": null, + "CenterX": 847 + }, + { + "PageNumber": 1, + "Top": 376, + "Left": 792, + "Width": 93, + "Height": 9, + "Text": "w/o leg greaves: \u002B3H \u2013 3\u222B", + "Confidence": null, + "CenterX": 838.5 + }, + { + "PageNumber": 1, + "Top": 409, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 149, + "Width": 127, + "Height": 9, + "Text": "Blow to foe\u0027s back. Foe attempts to", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 149, + "Width": 112, + "Height": 9, + "Text": "ward you off with a wild swing.", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 283, + "Width": 134, + "Height": 9, + "Text": "Foe twists oddly to avoid your attack.", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 283, + "Width": 86, + "Height": 9, + "Text": "Blow strikes foe\u0027s back.", + "Confidence": null, + "CenterX": 326 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "Blow to foe\u0027s back. Foe twists out of it", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 434, + "Width": 135, + "Height": 9, + "Text": "and you turn your weapon to magnify", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 434, + "Width": 88, + "Height": 9, + "Text": "the wound. Foe yells out.", + "Confidence": null, + "CenterX": 478 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 585, + "Width": 135, + "Height": 9, + "Text": "Reach long and catch foe in his lower", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 585, + "Width": 110, + "Height": 9, + "Text": "back. He twists out of it, but is", + "Confidence": null, + "CenterX": 640 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 585, + "Width": 43, + "Height": 9, + "Text": "unbalanced.", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 391, + "Left": 737, + "Width": 146, + "Height": 9, + "Text": "Strike to foe\u0027s stomach. He doubles over", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 402, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "in pain and you pull your sword clean", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 412, + "Left": 737, + "Width": 80, + "Height": 9, + "Text": "with one more sweep.", + "Confidence": null, + "CenterX": 777 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 227, + "Width": 48, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-30)", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 379, + "Width": 48, + "Height": 9, + "Text": "\u002B4H \u2013 (\u03C0-30)", + "Confidence": null, + "CenterX": 403 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 524, + "Width": 54, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211\u220F \u2013 \u222B", + "Confidence": null, + "CenterX": 551 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 671, + "Width": 58, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 700 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 827, + "Width": 58, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 856 + }, + { + "PageNumber": 1, + "Top": 471, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 448, + "Left": 149, + "Width": 119, + "Height": 9, + "Text": "Blow to foe\u0027s chest. Foe stumbles", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 149, + "Width": 115, + "Height": 9, + "Text": "back and puts up a feeble guard.", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 448, + "Left": 283, + "Width": 144, + "Height": 9, + "Text": "Quality strike. Minor chest wound. If foe", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 283, + "Width": 140, + "Height": 9, + "Text": "has armor, he only staggers. If not, the", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 283, + "Width": 66, + "Height": 9, + "Text": "wound is effective.", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 448, + "Left": 434, + "Width": 129, + "Height": 9, + "Text": "Blow lands solidly upon foe\u0027s chest.", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 434, + "Width": 143, + "Height": 9, + "Text": "You get some slashing action, but not a", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 434, + "Width": 51, + "Height": 9, + "Text": "mortal wound.", + "Confidence": null, + "CenterX": 459.5 + }, + { + "PageNumber": 1, + "Top": 448, + "Left": 585, + "Width": 142, + "Height": 9, + "Text": "Heavy blow to upper torso. Wound falls", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 585, + "Width": 146, + "Height": 9, + "Text": "open and foe is in pain. His guard is still", + "Confidence": null, + "CenterX": 658 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 585, + "Width": 80, + "Height": 9, + "Text": "up, amazingly enough.", + "Confidence": null, + "CenterX": 625 + }, + { + "PageNumber": 1, + "Top": 448, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "Cut foe open with little grace. You are", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 458, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "unsure of your success until you see all", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 469, + "Left": 737, + "Width": 121, + "Height": 9, + "Text": "the blood coming out of his chest.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 499, + "Left": 214, + "Width": 62, + "Height": 9, + "Text": "\u002B2H \u2013 (\u03C0-25) \u2013 \u222B", + "Confidence": null, + "CenterX": 245 + }, + { + "PageNumber": 1, + "Top": 488, + "Left": 332, + "Width": 95, + "Height": 9, + "Text": "with chest armor: \u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 379.5 + }, + { + "PageNumber": 1, + "Top": 499, + "Left": 293, + "Width": 134, + "Height": 9, + "Text": "w/o chest armor: \u002B3H \u2013 2\u03C0 \u2013 \u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 360 + }, + { + "PageNumber": 1, + "Top": 499, + "Left": 501, + "Width": 76, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 539 + }, + { + "PageNumber": 1, + "Top": 499, + "Left": 653, + "Width": 76, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 691 + }, + { + "PageNumber": 1, + "Top": 499, + "Left": 803, + "Width": 82, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211 \u2013 4\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 844 + }, + { + "PageNumber": 1, + "Top": 526, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 514, + "Left": 149, + "Width": 127, + "Height": 9, + "Text": "You recover from your initial swing", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 149, + "Width": 123, + "Height": 9, + "Text": "and bring edge across foe\u0027s thigh.", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 514, + "Left": 283, + "Width": 144, + "Height": 9, + "Text": "Edge makes contact well enough. Minor", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 283, + "Width": 49, + "Height": 9, + "Text": "thigh wound.", + "Confidence": null, + "CenterX": 307.5 + }, + { + "PageNumber": 1, + "Top": 514, + "Left": 434, + "Width": 127, + "Height": 9, + "Text": "Strike to side slips down onto foe\u0027s", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 434, + "Width": 104, + "Height": 9, + "Text": "thigh. The wound is effective.", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 514, + "Left": 585, + "Width": 127, + "Height": 9, + "Text": "Tip of your blade gets a hit on foe\u0027s", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 585, + "Width": 106, + "Height": 9, + "Text": "thigh. You twist your weapon.", + "Confidence": null, + "CenterX": 638 + }, + { + "PageNumber": 1, + "Top": 514, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "Thigh wound. Your blow cuts deep and", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 524, + "Left": 737, + "Width": 89, + "Height": 9, + "Text": "severs an important vein.", + "Confidence": null, + "CenterX": 781.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 227, + "Width": 49, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 251.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 374, + "Width": 53, + "Height": 9, + "Text": "\u002B4H \u2013 2\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 400.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 527, + "Width": 51, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 552.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 674, + "Width": 55, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 701.5 + }, + { + "PageNumber": 1, + "Top": 544, + "Left": 830, + "Width": 55, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211 \u2013 5\u222B", + "Confidence": null, + "CenterX": 857.5 + }, + { + "PageNumber": 1, + "Top": 573, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 149, + "Width": 108, + "Height": 9, + "Text": "You feign high and strike low.", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 149, + "Width": 107, + "Height": 9, + "Text": "Slash foe in back of upper leg.", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 283, + "Width": 138, + "Height": 9, + "Text": "Nick foe in his forearm. Wound bleeds", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 283, + "Width": 75, + "Height": 9, + "Text": "surprisingly strongly.", + "Confidence": null, + "CenterX": 320.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 434, + "Width": 146, + "Height": 9, + "Text": "Catch part of foe\u0027s forearm. You make a", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 434, + "Width": 80, + "Height": 9, + "Text": "long slice in foe\u0027s arm.", + "Confidence": null, + "CenterX": 474 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 585, + "Width": 131, + "Height": 9, + "Text": "You are lucky to strike foe\u0027s forearm", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 585, + "Width": 108, + "Height": 9, + "Text": "while recovering from a lunge.", + "Confidence": null, + "CenterX": 639 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "Foe tries to disarm you and pays with a", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 737, + "Width": 87, + "Height": 9, + "Text": "nasty cut to his forearm.", + "Confidence": null, + "CenterX": 780.5 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 217, + "Width": 60, + "Height": 9, + "Text": "\u002B3H \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 247 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 350, + "Width": 78, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 500, + "Width": 78, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 539 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 647, + "Width": 82, + "Height": 9, + "Text": "\u002B4H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 590, + "Left": 803, + "Width": 82, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 844 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 112, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 149, + "Width": 111, + "Height": 9, + "Text": "Foe blocks your attack with his", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 149, + "Width": 126, + "Height": 9, + "Text": "shield arm. Shoulder is broken and", + "Confidence": null, + "CenterX": 212 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 149, + "Width": 122, + "Height": 9, + "Text": "arm is useless. You have initiative.", + "Confidence": null, + "CenterX": 210 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 283, + "Width": 130, + "Height": 9, + "Text": "Your strike misses torso and breaks", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 283, + "Width": 140, + "Height": 9, + "Text": "foe\u0027s elbow. Foe drops his weapon and", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 283, + "Width": 96, + "Height": 9, + "Text": "his weapon arm is useless.", + "Confidence": null, + "CenterX": 331 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 434, + "Width": 135, + "Height": 9, + "Text": "Your swing falls short when foe leaps", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 434, + "Width": 127, + "Height": 9, + "Text": "back. You shatter foe\u0027s knee. Foe is", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 434, + "Width": 56, + "Height": 9, + "Text": "knocked down.", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 585, + "Width": 132, + "Height": 9, + "Text": "You knock foe out for 6 hours with a", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 585, + "Width": 147, + "Height": 9, + "Text": "strike to side of head. If foe has no helm,", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 585, + "Width": 78, + "Height": 9, + "Text": "you kill him instantly.", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 605, + "Left": 737, + "Width": 140, + "Height": 9, + "Text": "Block foe\u0027s weapon arm away and then", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 616, + "Left": 737, + "Width": 128, + "Height": 9, + "Text": "sever it. Foe drops immediately and", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 626, + "Left": 737, + "Width": 117, + "Height": 9, + "Text": "expires in 12 rounds. Good shot!", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 211, + "Width": 65, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 370, + "Width": 58, + "Height": 9, + "Text": "\u002B8H \u2013 4\u2211 \u2013 2\u220F", + "Confidence": null, + "CenterX": 399 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 515, + "Width": 62, + "Height": 9, + "Text": "\u002B6H \u2013 3\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 837, + "Width": 47, + "Height": 9, + "Text": "\u002B12H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 674, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 149, + "Width": 112, + "Height": 9, + "Text": "Strike lands close against foe\u0027s", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 149, + "Width": 76, + "Height": 9, + "Text": "neck. Foe is horrified.", + "Confidence": null, + "CenterX": 187 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 283, + "Width": 125, + "Height": 9, + "Text": "Your attempt to behead foe almost", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 283, + "Width": 130, + "Height": 9, + "Text": "works. Neck strike. Foe is not happy.", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 434, + "Width": 147, + "Height": 9, + "Text": "Slash foe\u0027s neck. Your weapon cuts neck", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 434, + "Width": 96, + "Height": 9, + "Text": "garments (and armor) free.", + "Confidence": null, + "CenterX": 482 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 585, + "Width": 127, + "Height": 9, + "Text": "You strike foe\u0027s shoulder and slash", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 585, + "Width": 32, + "Height": 9, + "Text": "muscles.", + "Confidence": null, + "CenterX": 601 + }, + { + "PageNumber": 1, + "Top": 662, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "Slash tendons and crush the bones in", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 673, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "foe\u0027s shield arm shoulder. Arm is useless.", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 223, + "Width": 53, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 249.5 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 350, + "Width": 78, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 3\u222B \u2013 (-5)", + "Confidence": null, + "CenterX": 389 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 491, + "Width": 86, + "Height": 9, + "Text": "\u002B8H \u2013 4\u2211 \u2013 2\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 534 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 636, + "Width": 92, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 (-20) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 682 + }, + { + "PageNumber": 1, + "Top": 692, + "Left": 852, + "Width": 32, + "Height": 9, + "Text": "4\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 868 + }, + { + "PageNumber": 1, + "Top": 727, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 149, + "Width": 106, + "Height": 9, + "Text": "Blow falls on lower leg. Slash", + "Confidence": null, + "CenterX": 202 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 149, + "Width": 78, + "Height": 9, + "Text": "tendons. Poor sucker.", + "Confidence": null, + "CenterX": 188 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 283, + "Width": 140, + "Height": 9, + "Text": "Slash muscle in foe\u0027s calf. Foe is in too", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 283, + "Width": 127, + "Height": 9, + "Text": "much pain to regain footing quickly.", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 434, + "Width": 145, + "Height": 9, + "Text": "Slash muscle and tendons in foe\u0027s lower", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 434, + "Width": 142, + "Height": 9, + "Text": "leg. Foe stumbles forward into you with", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 434, + "Width": 57, + "Height": 9, + "Text": "his guard down.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 585, + "Width": 145, + "Height": 9, + "Text": "Slash muscle and sever tendons in foe\u0027s", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 585, + "Width": 139, + "Height": 9, + "Text": "lower leg. He can\u0027t stand much longer.", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 585, + "Width": 70, + "Height": 9, + "Text": "His guard is feeble.", + "Confidence": null, + "CenterX": 620 + }, + { + "PageNumber": 1, + "Top": 709, + "Left": 737, + "Width": 140, + "Height": 9, + "Text": "Slash foe\u0027s lower leg and sever muscle", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 719, + "Left": 737, + "Width": 119, + "Height": 9, + "Text": "and tendons. Foe will fall without", + "Confidence": null, + "CenterX": 796.5 + }, + { + "PageNumber": 1, + "Top": 730, + "Left": 737, + "Width": 93, + "Height": 9, + "Text": "something to lean against.", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 194, + "Width": 82, + "Height": 9, + "Text": "\u002B4H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 347, + "Width": 80, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211 \u2013 \u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 506, + "Width": 71, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 (-45)", + "Confidence": null, + "CenterX": 541.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 668, + "Width": 61, + "Height": 9, + "Text": "3\u2211 \u2013 2\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 698.5 + }, + { + "PageNumber": 1, + "Top": 749, + "Left": 821, + "Width": 64, + "Height": 9, + "Text": "\u002B8H \u2013 6\u2211 \u2013 (-70)", + "Confidence": null, + "CenterX": 853 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 149, + "Width": 129, + "Height": 9, + "Text": "Foe goes low, but you still catch his", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 149, + "Width": 89, + "Height": 9, + "Text": "upper arm. It\u0027s a bleeder.", + "Confidence": null, + "CenterX": 193.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 283, + "Width": 131, + "Height": 9, + "Text": "Foe moves his shield arm too slowly.", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 283, + "Width": 89, + "Height": 9, + "Text": "You gladly slash his arm.", + "Confidence": null, + "CenterX": 327.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 434, + "Width": 147, + "Height": 9, + "Text": "You come in high and fast. Slash muscle", + "Confidence": null, + "CenterX": 507.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "and tendons in foe\u0027s shield arm. Foe\u0027s", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 434, + "Width": 55, + "Height": 9, + "Text": "arm is useless.", + "Confidence": null, + "CenterX": 461.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 585, + "Width": 138, + "Height": 9, + "Text": "Foe mistakenly brings his weapon arm", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 585, + "Width": 123, + "Height": 9, + "Text": "across your blade. Sever tendons.", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 585, + "Width": 109, + "Height": 9, + "Text": "Foe\u0027s arm is limp and useless.", + "Confidence": null, + "CenterX": 639.5 + }, + { + "PageNumber": 1, + "Top": 764, + "Left": 737, + "Width": 145, + "Height": 9, + "Text": "Foe reaches out to block your blow. You", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "sever two fingers and break his shield", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 785, + "Left": 737, + "Width": 82, + "Height": 9, + "Text": "arm making it useless.", + "Confidence": null, + "CenterX": 778 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 187, + "Width": 90, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 232 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 338, + "Width": 90, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 383 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 522, + "Width": 55, + "Height": 9, + "Text": "\u002B9H \u2013 6\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 549.5 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 666, + "Width": 62, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211 \u2013 2\u220F", + "Confidence": null, + "CenterX": 697 + }, + { + "PageNumber": 1, + "Top": 805, + "Left": 836, + "Width": 49, + "Height": 9, + "Text": "\u002B12H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 839, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 149, + "Width": 112, + "Height": 9, + "Text": "Foe steps right into your swing.", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 149, + "Width": 90, + "Height": 9, + "Text": "You make a large wound.", + "Confidence": null, + "CenterX": 194 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 283, + "Width": 137, + "Height": 9, + "Text": "Your edge bites half its width into foe.", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 283, + "Width": 136, + "Height": 9, + "Text": "Open up a terrible wound. Blood goes", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 842, + "Left": 283, + "Width": 43, + "Height": 9, + "Text": "everywhere.", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 434, + "Width": 122, + "Height": 9, + "Text": "You follow your training well. You", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 434, + "Width": 125, + "Height": 9, + "Text": "extend on your slashing arc. Strike", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 842, + "Left": 434, + "Width": 85, + "Height": 9, + "Text": "lands against foe\u0027s side.", + "Confidence": null, + "CenterX": 476.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 585, + "Width": 126, + "Height": 9, + "Text": "You plunge your weapon into foe\u0027s", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 585, + "Width": 142, + "Height": 9, + "Text": "stomach. Major abdomenal wound. Foe", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 842, + "Left": 585, + "Width": 115, + "Height": 9, + "Text": "is instantly pale from blood loss.", + "Confidence": null, + "CenterX": 642.5 + }, + { + "PageNumber": 1, + "Top": 821, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "Sever opponent\u0027s hand. Sad. Foe is down", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 832, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "and in shock for 12 rounds, then dies.", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 193, + "Width": 84, + "Height": 9, + "Text": "\u002B6H \u2013 5\u2211 \u2013 6\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 365, + "Width": 63, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 6\u222B", + "Confidence": null, + "CenterX": 396.5 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 488, + "Width": 90, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 533 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 621, + "Width": 108, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211 \u2013 2\u220F \u2013 8\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 675 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 836, + "Width": 49, + "Height": 9, + "Text": "\u002B5H \u2013 12\u2211\u220F", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 149, + "Width": 122, + "Height": 9, + "Text": "Foe turns out and away from your", + "Confidence": null, + "CenterX": 210 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 149, + "Width": 109, + "Height": 9, + "Text": "swing. You still catch his side.", + "Confidence": null, + "CenterX": 203.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 283, + "Width": 139, + "Height": 9, + "Text": "Stike to back. Foe goes prone trying to", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 283, + "Width": 141, + "Height": 9, + "Text": "avoid your strike. He gets up facing the", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 434, + "Width": 112, + "Height": 9, + "Text": "Blast to back breaks bone. Foe", + "Confidence": null, + "CenterX": 490 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 434, + "Width": 135, + "Height": 9, + "Text": "stumbles forward before falling down.", + "Confidence": null, + "CenterX": 501.5 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 434, + "Width": 106, + "Height": 9, + "Text": "He is having trouble standing.", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 585, + "Width": 145, + "Height": 9, + "Text": "Your attempt to disarm foe is even more", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 585, + "Width": 143, + "Height": 9, + "Text": "effective. Sever opponent\u0027s hand. Foe is", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 585, + "Width": 130, + "Height": 9, + "Text": "in shock for 6 rounds and then dies.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 737, + "Width": 134, + "Height": 9, + "Text": "Meat chopping strike severs foe\u0027s leg.", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 887, + "Left": 737, + "Width": 86, + "Height": 9, + "Text": "Foe drops and lapses in", + "Confidence": null, + "CenterX": 780 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "unconsciousness. Foe dies in 9 rounds.", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 187, + "Width": 90, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 232 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 361, + "Width": 67, + "Height": 9, + "Text": "\u002B10H \u2013 3\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 394.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 506, + "Width": 71, + "Height": 9, + "Text": "\u002B9H \u2013 4\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 541.5 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 684, + "Width": 44, + "Height": 9, + "Text": "\u002B6H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 917, + "Left": 837, + "Width": 47, + "Height": 9, + "Text": "\u002B15H \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 956, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 149, + "Width": 115, + "Height": 9, + "Text": "Blow to foe\u0027s head. If no helmet,", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 149, + "Width": 131, + "Height": 9, + "Text": "cut off foe\u0027s ear (all hearing ability is", + "Confidence": null, + "CenterX": 214.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 149, + "Width": 28, + "Height": 9, + "Text": "halved).", + "Confidence": null, + "CenterX": 163 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 283, + "Width": 133, + "Height": 9, + "Text": "Strike to foe\u0027s hip. The blow has little", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 283, + "Width": 127, + "Height": 9, + "Text": "edge, but much impact. Your blow", + "Confidence": null, + "CenterX": 346.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 283, + "Width": 122, + "Height": 9, + "Text": "staggers foe. His recovery is slow.", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 434, + "Width": 141, + "Height": 9, + "Text": "Chop the top of foe\u0027s thigh. Sever foe\u0027s", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 434, + "Width": 145, + "Height": 9, + "Text": "leg. Foe drops immediately and dies in 6", + "Confidence": null, + "CenterX": 506.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 434, + "Width": 131, + "Height": 9, + "Text": "rounds due to shock and blood loss.", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 585, + "Width": 139, + "Height": 9, + "Text": "Sever foe\u0027s weapon arm and bury your", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 585, + "Width": 135, + "Height": 9, + "Text": "sword into foe\u0027s side. Foe falls prone.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 585, + "Width": 142, + "Height": 9, + "Text": "Foe is in shock for 12 rounds, then dies.", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 934, + "Left": 737, + "Width": 117, + "Height": 9, + "Text": "Sever foe\u0027s spine. Foe collapses,", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 737, + "Width": 109, + "Height": 9, + "Text": "paralyzed from the neck down", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 955, + "Left": 737, + "Width": 46, + "Height": 9, + "Text": "permanently.", + "Confidence": null, + "CenterX": 760 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 187, + "Width": 90, + "Height": 9, + "Text": "with helmet: \u002B3H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 232 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 161, + "Width": 115, + "Height": 9, + "Text": "w/o helmet: \u002B3H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 218.5 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 319, + "Width": 109, + "Height": 9, + "Text": "\u002B7H \u2013 3\u2211 \u2013 \u220F \u2013 (-20) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 373.5 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 558, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 680, + "Width": 49, + "Height": 9, + "Text": "\u002B15H \u2013 9\u2211\u220F", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 985, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 101, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 149, + "Width": 112, + "Height": 9, + "Text": "The tip of your weapon slashes", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 149, + "Width": 112, + "Height": 9, + "Text": "foe\u0027s nose. Minor wound and a", + "Confidence": null, + "CenterX": 205 + }, + { + "PageNumber": 1, + "Top": 1021, + "Left": 149, + "Width": 57, + "Height": 9, + "Text": "permanent scar.", + "Confidence": null, + "CenterX": 177.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 283, + "Width": 130, + "Height": 9, + "Text": "Strike to foe\u0027s head breaks skull and", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 283, + "Width": 125, + "Height": 9, + "Text": "causes massive brain damage. Foe", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 1021, + "Left": 283, + "Width": 97, + "Height": 9, + "Text": "drops and dies in 6 rounds.", + "Confidence": null, + "CenterX": 331.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 434, + "Width": 134, + "Height": 9, + "Text": "You cleave shield and arm in half Foe", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 434, + "Width": 142, + "Height": 9, + "Text": "attempts to catch his falling arm. Foe is", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 1021, + "Left": 434, + "Width": 119, + "Height": 9, + "Text": "in shock for 12 rounds then dies.", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 585, + "Width": 134, + "Height": 9, + "Text": "Slash foe\u0027s side. Foe dies in 3 rounds", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 585, + "Width": 131, + "Height": 9, + "Text": "due to internal organ damage. Foe is", + "Confidence": null, + "CenterX": 650.5 + }, + { + "PageNumber": 1, + "Top": 1021, + "Left": 585, + "Width": 129, + "Height": 9, + "Text": "down and unconscious immediately.", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 737, + "Width": 139, + "Height": 9, + "Text": "Strike to foe\u0027s head destroys brain and", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 1010, + "Left": 737, + "Width": 129, + "Height": 9, + "Text": "makes life difficult for the poor fool.", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 1021, + "Left": 737, + "Width": 129, + "Height": 9, + "Text": "Foe expires in a heap\u2014immediately.", + "Confidence": null, + "CenterX": 801.5 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 194, + "Width": 82, + "Height": 9, + "Text": "\u002B2H \u2013 6\u2211 \u2013 2\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 235 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 409, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 524, + "Width": 53, + "Height": 9, + "Text": "\u002B18H \u2013 12\u2211\u220F", + "Confidence": null, + "CenterX": 550.5 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 1040, + "Left": 875, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 879.5 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 107, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 119.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 149, + "Width": 113, + "Height": 9, + "Text": "Strike severs carotid artery and", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 149, + "Width": 119, + "Height": 9, + "Text": "jugular vein, breaking foe\u0027s neck.", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 149, + "Width": 107, + "Height": 9, + "Text": "Foe dies in 6 rounds of agony.", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 283, + "Width": 135, + "Height": 9, + "Text": "Disembowel foe, killing him instantly.", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 283, + "Width": 132, + "Height": 9, + "Text": "25% chance your weapon is stuck in", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 283, + "Width": 78, + "Height": 9, + "Text": "opponent for 1 round.", + "Confidence": null, + "CenterX": 322 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 434, + "Width": 143, + "Height": 9, + "Text": "Strike up, in, and across foe\u0027s forehead.", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 434, + "Width": 133, + "Height": 9, + "Text": "Destroy foe\u0027s eyes. Foe flips onto his", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 434, + "Width": 45, + "Height": 9, + "Text": "back in pain.", + "Confidence": null, + "CenterX": 456.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 585, + "Width": 137, + "Height": 9, + "Text": "Impale foe in heart. Foe dies instantly.", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 585, + "Width": 133, + "Height": 9, + "Text": "Heart is destroyed. 25% chance your", + "Confidence": null, + "CenterX": 651.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 585, + "Width": 114, + "Height": 9, + "Text": "weapon is stuck in for 2 rounds.", + "Confidence": null, + "CenterX": 642 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 737, + "Width": 145, + "Height": 9, + "Text": "Very close! Strike to foe\u0027s groin area. All", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "vital organs are destroyed immediately.", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 737, + "Width": 121, + "Height": 9, + "Text": "Foe dies after 24 rounds of agony.", + "Confidence": null, + "CenterX": 797.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 266, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 418, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 528, + "Width": 49, + "Height": 9, + "Text": "\u002B5H \u2013 30\u2211\u220F", + "Confidence": null, + "CenterX": 552.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 1097, + "Left": 831, + "Width": 53, + "Height": 9, + "Text": "\u002B10H \u2013 12\u2211\u220F", + "Confidence": null, + "CenterX": 857.5 + }, + { + "PageNumber": 1, + "Top": 48, + "Left": 312, + "Width": 361, + "Height": 14, + "Text": "4.8 slash critical strike table", + "Confidence": null, + "CenterX": 492.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 206, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 347, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 498, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 648, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 808, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 813.5 + }, + { + "PageNumber": 1, + "Top": 877, + "Left": 282, + "Width": 139, + "Height": 9, + "Text": "Strike to back. Foe goes prone trying to", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 888, + "Left": 282, + "Width": 138, + "Height": 9, + "Text": "avoid your strike. He gets up facing the", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 898, + "Left": 282, + "Width": 58, + "Height": 9, + "Text": "wrong direction.", + "Confidence": null, + "CenterX": 311 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/slash/pages/page-001.png new file mode 100644 index 0000000..ff72c8f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/slash/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/slash/parsed-cells.json new file mode 100644 index 0000000..39c25c1 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/slash/parsed-cells.json @@ -0,0 +1,7747 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Weak strike.", + "\u002B0H" + ], + "BaseLines": [ + "Weak strike.", + "\u002B0H" + ], + "RawCellText": "Weak strike.\n\u002B0H", + "DescriptionText": "Weak strike.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 106, + "Width": 127, + "Height": 29 + }, + "SourceImagePath": "slash/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 424, + "BoundsWidth": 508, + "BoundsHeight": 116, + "CropLeft": 548, + "CropTop": 392, + "CropWidth": 604, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Feeble strike falls clear of target.", + "\u002B0H" + ], + "BaseLines": [ + "Feeble strike falls clear of target.", + "\u002B0H" + ], + "RawCellText": "Feeble strike falls clear of target.\n\u002B0H", + "DescriptionText": "Feeble strike falls clear of target.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 106, + "Width": 144, + "Height": 29 + }, + "SourceImagePath": "slash/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 424, + "BoundsWidth": 576, + "BoundsHeight": 116, + "CropLeft": 1084, + "CropTop": 392, + "CropWidth": 672, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Firm shot. Good recovery. Try again.", + "\u002B1H" + ], + "BaseLines": [ + "Firm shot. Good recovery. Try again.", + "\u002B1H" + ], + "RawCellText": "Firm shot. Good recovery. Try again.\n\u002B1H", + "DescriptionText": "Firm shot. Good recovery. Try again.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 106, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "slash/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 424, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 1688, + "CropTop": 392, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Strike lands poorly.", + "\u002B2H" + ], + "BaseLines": [ + "Strike lands poorly.", + "\u002B2H" + ], + "RawCellText": "Strike lands poorly.\n\u002B2H", + "DescriptionText": "Strike lands poorly.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 106, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "slash/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 424, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 2292, + "CropTop": 392, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Your attack is weak.", + "\u002B3H" + ], + "BaseLines": [ + "Your attack is weak.", + "\u002B3H" + ], + "RawCellText": "Your attack is weak.\n\u002B3H", + "DescriptionText": "Your attack is weak.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 106, + "Width": 147, + "Height": 29 + }, + "SourceImagePath": "slash/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 424, + "BoundsWidth": 588, + "BoundsHeight": 116, + "CropLeft": 2900, + "CropTop": 392, + "CropWidth": 684, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Good form, but it disappoints.", + "\u002B1H" + ], + "BaseLines": [ + "Good form, but it disappoints.", + "\u002B1H" + ], + "RawCellText": "Good form, but it disappoints.\n\u002B1H", + "DescriptionText": "Good form, but it disappoints.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 142, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 568, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 536, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Hard strike with no edge. Foe steps clear", + "before you sort it out.", + "\u002B2H" + ], + "BaseLines": [ + "Hard strike with no edge. Foe steps clear", + "before you sort it out.", + "\u002B2H" + ], + "RawCellText": "Hard strike with no edge. Foe steps clear\nbefore you sort it out.\n\u002B2H", + "DescriptionText": "Hard strike with no edge. Foe steps clear before you sort it out.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 142, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 568, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 536, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Strike foe with more force than edge.", + "\u002B3H" + ], + "BaseLines": [ + "Strike foe with more force than edge.", + "\u002B3H" + ], + "RawCellText": "Strike foe with more force than edge.\n\u002B3H", + "DescriptionText": "Strike foe with more force than edge.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 142, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 568, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 536, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "An opening appears and all you can to is", + "smack foe lightly.", + "\u002B4H" + ], + "BaseLines": [ + "An opening appears and all you can to is", + "smack foe lightly.", + "\u002B4H" + ], + "RawCellText": "An opening appears and all you can to is\nsmack foe lightly.\n\u002B4H", + "DescriptionText": "An opening appears and all you can to is smack foe lightly.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 142, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 568, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 536, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Unbalance foe. You receive initiative next", + "round.", + "\u002B5H" + ], + "BaseLines": [ + "Unbalance foe. You receive initiative next", + "round.", + "\u002B5H" + ], + "RawCellText": "Unbalance foe. You receive initiative next\nround.\n\u002B5H", + "DescriptionText": "Unbalance foe. You receive initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 142, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 568, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 536, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Blade misses foe\u0027s face by inches.", + "You receive initiative next round.", + "\u002B1H" + ], + "BaseLines": [ + "Blade misses foe\u0027s face by inches.", + "You receive initiative next round.", + "\u002B1H" + ], + "RawCellText": "Blade misses foe\u0027s face by inches.\nYou receive initiative next round.\n\u002B1H", + "DescriptionText": "Blade misses foe\u0027s face by inches. You receive initiative next round.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 187, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 748, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 716, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Foe steps quickly out of your reach. You", + "receive initiative next round.", + "\u002B3H" + ], + "BaseLines": [ + "Foe steps quickly out of your reach. You", + "receive initiative next round.", + "\u002B3H" + ], + "RawCellText": "Foe steps quickly out of your reach. You\nreceive initiative next round.\n\u002B3H", + "DescriptionText": "Foe steps quickly out of your reach. You receive initiative next round.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 187, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 748, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 716, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s side yields the initiative to", + "you next round.", + "\u002B6H" + ], + "BaseLines": [ + "Blow to foe\u0027s side yields the initiative to", + "you next round.", + "\u002B6H" + ], + "RawCellText": "Blow to foe\u0027s side yields the initiative to\nyou next round.\n\u002B6H", + "DescriptionText": "Blow to foe\u0027s side yields the initiative to you next round.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 187, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 748, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 716, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "You force your opponent back. He keeps", + "you at bay with wild swings.", + "\u002B3H \u2013 \u03C0" + ], + "BaseLines": [ + "You force your opponent back. He keeps", + "you at bay with wild swings.", + "\u002B3H \u2013 \u03C0" + ], + "RawCellText": "You force your opponent back. He keeps\nyou at bay with wild swings.\n\u002B3H \u2013 \u03C0", + "DescriptionText": "You force your opponent back. He keeps you at bay with wild swings.", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 187, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 748, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 716, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "You push aside foe\u0027s weapon and force", + "him back.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "You push aside foe\u0027s weapon and force", + "him back.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "You push aside foe\u0027s weapon and force\nhim back.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "You push aside foe\u0027s weapon and force him back.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 187, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 748, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 716, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Strike passes under foe\u0027s arm. It", + "fails to bite deep. He recoils.", + "\u002B1H \u2013 \u03C0" + ], + "BaseLines": [ + "Strike passes under foe\u0027s arm. It", + "fails to bite deep. He recoils.", + "\u002B1H \u2013 \u03C0" + ], + "RawCellText": "Strike passes under foe\u0027s arm. It\nfails to bite deep. He recoils.\n\u002B1H \u2013 \u03C0", + "DescriptionText": "Strike passes under foe\u0027s arm. It fails to bite deep. He recoils.", + "RawAffixText": "\u002B1H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 234, + "Width": 126, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 936, + "BoundsWidth": 504, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 904, + "CropWidth": 600, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Blow to foe\u0027s side. Foe defends", + "energetically.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s side. Foe defends", + "energetically.", + "\u002B2H \u2013 (\u03C0-10)" + ], + "RawCellText": "Blow to foe\u0027s side. Foe defends\nenergetically.\n\u002B2H \u2013 (\u03C0-10)", + "DescriptionText": "Blow to foe\u0027s side. Foe defends energetically.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 234, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 936, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 904, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Your assault catches foe in side and", + "forces him back 5 feet.", + "\u002B4H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Your assault catches foe in side and", + "forces him back 5 feet.", + "\u002B4H \u2013 (\u03C0-20)" + ], + "RawCellText": "Your assault catches foe in side and\nforces him back 5 feet.\n\u002B4H \u2013 (\u03C0-20)", + "DescriptionText": "Your assault catches foe in side and forces him back 5 feet.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 234, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 936, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 904, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "You lean in and slash foe\u0027s side. You", + "receive initiative next round.", + "\u002B2H \u2013 (-10)" + ], + "BaseLines": [ + "You lean in and slash foe\u0027s side. You", + "receive initiative next round.", + "\u002B2H \u2013 (-10)" + ], + "RawCellText": "You lean in and slash foe\u0027s side. You\nreceive initiative next round.\n\u002B2H \u2013 (-10)", + "DescriptionText": "You lean in and slash foe\u0027s side. You receive initiative next round.", + "RawAffixText": "\u002B2H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 234, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 936, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 904, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Strong blow to foe\u0027s ribs. Foe drops his", + "guard and almost his weapon.", + "\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s ribs. Foe drops his", + "guard and almost his weapon.", + "\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Strong blow to foe\u0027s ribs. Foe drops his\nguard and almost his weapon.\n\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Strong blow to foe\u0027s ribs. Foe drops his guard and almost his weapon.", + "RawAffixText": "\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 234, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 936, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 904, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s evasion puts him out of an", + "aggressive posture.", + "\u002B2H \u2013 \u03C0 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe\u0027s evasion puts him out of an", + "aggressive posture.", + "\u002B2H \u2013 \u03C0 \u2013 (\u002B10)" + ], + "RawCellText": "Foe\u0027s evasion puts him out of an\naggressive posture.\n\u002B2H \u2013 \u03C0 \u2013 (\u002B10)", + "DescriptionText": "Foe\u0027s evasion puts him out of an aggressive posture.", + "RawAffixText": "\u002B2H \u2013 \u03C0 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 280, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1120, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 548, + "CropTop": 1088, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Foe is shaken by your blow to his", + "side. His defensive measures look", + "clumsy.", + "\u002B2H \u2013 (\u03C0-20)" + ], + "BaseLines": [ + "Foe is shaken by your blow to his", + "side. His defensive measures look", + "clumsy.", + "\u002B2H \u2013 (\u03C0-20)" + ], + "RawCellText": "Foe is shaken by your blow to his\nside. His defensive measures look\nclumsy.\n\u002B2H \u2013 (\u03C0-20)", + "DescriptionText": "Foe is shaken by your blow to his side. His defensive measures look clumsy.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 280, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 1120, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1084, + "CropTop": 1088, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "You break foe\u0027s rib with a lightning", + "strike to his chest. He recovers quickly.", + "His shield side still faces you.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "You break foe\u0027s rib with a lightning", + "strike to his chest. He recovers quickly.", + "His shield side still faces you.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "You break foe\u0027s rib with a lightning\nstrike to his chest. He recovers quickly.\nHis shield side still faces you.\n\u002B3H \u2013 \u2211", + "DescriptionText": "You break foe\u0027s rib with a lightning strike to his chest. He recovers quickly. His shield side still faces you.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 280, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1120, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 1088, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Arm and chest strike. Foe cannot defend", + "himself for a moment. You step around", + "his shielded side.", + "\u002B3H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Arm and chest strike. Foe cannot defend", + "himself for a moment. You step around", + "his shielded side.", + "\u002B3H \u2013 \u2211\u220F" + ], + "RawCellText": "Arm and chest strike. Foe cannot defend\nhimself for a moment. You step around\nhis shielded side.\n\u002B3H \u2013 \u2211\u220F", + "DescriptionText": "Arm and chest strike. Foe cannot defend himself for a moment. You step around his shielded side.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 280, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 1120, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 2292, + "CropTop": 1088, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Foe avoids your main effort, but you nick", + "him on your recovery. Foe receives minor", + "side wound and stumbles back 10 feet.", + "\u002B3H \u2013 \u222B \u2013 (-10)" + ], + "BaseLines": [ + "Foe avoids your main effort, but you nick", + "him on your recovery. Foe receives minor", + "side wound and stumbles back 10 feet.", + "\u002B3H \u2013 \u222B \u2013 (-10)" + ], + "RawCellText": "Foe avoids your main effort, but you nick\nhim on your recovery. Foe receives minor\nside wound and stumbles back 10 feet.\n\u002B3H \u2013 \u222B \u2013 (-10)", + "DescriptionText": "Foe avoids your main effort, but you nick him on your recovery. Foe receives minor side wound and stumbles back 10 feet.", + "RawAffixText": "\u002B3H \u2013 \u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 280, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1120, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 1088, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Minor thigh wound. Cut foe with", + "the smallest of slashes.", + "\u222B" + ], + "BaseLines": [ + "Minor thigh wound. Cut foe with", + "the smallest of slashes.", + "\u222B" + ], + "RawCellText": "Minor thigh wound. Cut foe with\nthe smallest of slashes.\n\u222B", + "DescriptionText": "Minor thigh wound. Cut foe with the smallest of slashes.", + "RawAffixText": "\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 336, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1344, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 548, + "CropTop": 1312, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Strike foe in shin. If he doesn\u0027t have", + "greaves, you slash open foe\u0027s shin.", + "with leg greaves: \u002B2H \u2013 \u03C0", + "w/o leg greaves: \u002B2H \u2013 \u222B" + ], + "BaseLines": [ + "Strike foe in shin. If he doesn\u0027t have", + "greaves, you slash open foe\u0027s shin." + ], + "RawCellText": "Strike foe in shin. If he doesn\u0027t have\ngreaves, you slash open foe\u0027s shin.", + "DescriptionText": "Strike foe in shin. If he doesn\u0027t have greaves, you slash open foe\u0027s shin.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greaves", + "ConditionText": "with leg greaves", + "RawText": "with leg greaves: \u002B2H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B2H \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 336, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 1344, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1084, + "CropTop": 1312, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "The blow does nothing more than open a", + "wide cut in foe.", + "\u002B2H \u2013 2\u222B" + ], + "BaseLines": [ + "The blow does nothing more than open a", + "wide cut in foe.", + "\u002B2H \u2013 2\u222B" + ], + "RawCellText": "The blow does nothing more than open a\nwide cut in foe.\n\u002B2H \u2013 2\u222B", + "DescriptionText": "The blow does nothing more than open a wide cut in foe.", + "RawAffixText": "\u002B2H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 336, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1344, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 1312, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Foe blocks your attack on his chest. You", + "slash foe\u0027s upper area.", + "\u002B3H \u2013 2\u222B" + ], + "BaseLines": [ + "Foe blocks your attack on his chest. You", + "slash foe\u0027s upper area.", + "\u002B3H \u2013 2\u222B" + ], + "RawCellText": "Foe blocks your attack on his chest. You\nslash foe\u0027s upper area.\n\u002B3H \u2013 2\u222B", + "DescriptionText": "Foe blocks your attack on his chest. You slash foe\u0027s upper area.", + "RawAffixText": "\u002B3H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 336, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 1344, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2292, + "CropTop": 1312, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s upper leg. Leg armor helps", + "block the blow.", + "with leg greaves: \u002B5H", + "w/o leg greaves: \u002B3H \u2013 3\u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s upper leg. Leg armor helps", + "block the blow." + ], + "RawCellText": "Blow to foe\u0027s upper leg. Leg armor helps\nblock the blow.", + "DescriptionText": "Blow to foe\u0027s upper leg. Leg armor helps block the blow.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_greaves", + "ConditionText": "with leg greaves", + "RawText": "with leg greaves: \u002B5H", + "DescriptionText": "", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B3H \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 336, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1344, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 1312, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s back. Foe attempts to", + "ward you off with a wild swing.", + "\u002B2H \u2013 (\u03C0-30)" + ], + "BaseLines": [ + "Blow to foe\u0027s back. Foe attempts to", + "ward you off with a wild swing.", + "\u002B2H \u2013 (\u03C0-30)" + ], + "RawCellText": "Blow to foe\u0027s back. Foe attempts to\nward you off with a wild swing.\n\u002B2H \u2013 (\u03C0-30)", + "DescriptionText": "Blow to foe\u0027s back. Foe attempts to ward you off with a wild swing.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 391, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1564, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 548, + "CropTop": 1532, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Foe twists oddly to avoid your attack.", + "Blow strikes foe\u0027s back.", + "\u002B4H \u2013 (\u03C0-30)" + ], + "BaseLines": [ + "Foe twists oddly to avoid your attack.", + "Blow strikes foe\u0027s back.", + "\u002B4H \u2013 (\u03C0-30)" + ], + "RawCellText": "Foe twists oddly to avoid your attack.\nBlow strikes foe\u0027s back.\n\u002B4H \u2013 (\u03C0-30)", + "DescriptionText": "Foe twists oddly to avoid your attack. Blow strikes foe\u0027s back.", + "RawAffixText": "\u002B4H \u2013 (\u03C0-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 391, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 1564, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1084, + "CropTop": 1532, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s back. Foe twists out of it", + "and you turn your weapon to magnify", + "the wound. Foe yells out.", + "\u002B3H \u2013 \u2211\u220F \u2013 \u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s back. Foe twists out of it", + "and you turn your weapon to magnify", + "the wound. Foe yells out.", + "\u002B3H \u2013 \u2211\u220F \u2013 \u222B" + ], + "RawCellText": "Blow to foe\u0027s back. Foe twists out of it\nand you turn your weapon to magnify\nthe wound. Foe yells out.\n\u002B3H \u2013 \u2211\u220F \u2013 \u222B", + "DescriptionText": "Blow to foe\u0027s back. Foe twists out of it and you turn your weapon to magnify the wound. Foe yells out.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 391, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1564, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 1532, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Reach long and catch foe in his lower", + "back. He twists out of it, but is", + "unbalanced.", + "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Reach long and catch foe in his lower", + "back. He twists out of it, but is", + "unbalanced.", + "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "Reach long and catch foe in his lower\nback. He twists out of it, but is\nunbalanced.\n\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "DescriptionText": "Reach long and catch foe in his lower back. He twists out of it, but is unbalanced.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 391, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 1564, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2292, + "CropTop": 1532, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s stomach. He doubles over", + "in pain and you pull your sword clean", + "with one more sweep.", + "\u002B4H \u2013 \u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Strike to foe\u0027s stomach. He doubles over", + "in pain and you pull your sword clean", + "with one more sweep.", + "\u002B4H \u2013 \u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Strike to foe\u0027s stomach. He doubles over\nin pain and you pull your sword clean\nwith one more sweep.\n\u002B4H \u2013 \u2211\u220F \u2013 3\u222B", + "DescriptionText": "Strike to foe\u0027s stomach. He doubles over in pain and you pull your sword clean with one more sweep.", + "RawAffixText": "\u002B4H \u2013 \u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 391, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1564, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 1532, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s chest. Foe stumbles", + "back and puts up a feeble guard.", + "\u002B2H \u2013 (\u03C0-25) \u2013 \u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. Foe stumbles", + "back and puts up a feeble guard.", + "\u002B2H \u2013 (\u03C0-25) \u2013 \u222B" + ], + "RawCellText": "Blow to foe\u0027s chest. Foe stumbles\nback and puts up a feeble guard.\n\u002B2H \u2013 (\u03C0-25) \u2013 \u222B", + "DescriptionText": "Blow to foe\u0027s chest. Foe stumbles back and puts up a feeble guard.", + "RawAffixText": "\u002B2H \u2013 (\u03C0-25) \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u03C0-25)" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 448, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 1792, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 548, + "CropTop": 1760, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Quality strike. Minor chest wound. If foe", + "has armor, he only staggers. If not, the", + "wound is effective.", + "with chest armor: \u002B4H \u2013 \u03C0", + "w/o chest armor: \u002B3H \u2013 2\u03C0 \u2013 \u222B \u2013 (-5)" + ], + "BaseLines": [ + "Quality strike. Minor chest wound. If foe", + "has armor, he only staggers. If not, the", + "wound is effective." + ], + "RawCellText": "Quality strike. Minor chest wound. If foe\nhas armor, he only staggers. If not, the\nwound is effective.", + "DescriptionText": "Quality strike. Minor chest wound. If foe has armor, he only staggers. If not, the wound is effective.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_chest_armor", + "ConditionText": "with chest armor", + "RawText": "with chest armor: \u002B4H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_chest_armor", + "ConditionText": "w/o chest armor", + "RawText": "w/o chest armor: \u002B3H \u2013 2\u03C0 \u2013 \u222B \u2013 (-5)", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u03C0 \u2013 \u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 448, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 1792, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1084, + "CropTop": 1760, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Blow lands solidly upon foe\u0027s chest.", + "You get some slashing action, but not a", + "mortal wound.", + "\u002B4H \u2013 \u03C0 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Blow lands solidly upon foe\u0027s chest.", + "You get some slashing action, but not a", + "mortal wound.", + "\u002B4H \u2013 \u03C0 \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Blow lands solidly upon foe\u0027s chest.\nYou get some slashing action, but not a\nmortal wound.\n\u002B4H \u2013 \u03C0 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Blow lands solidly upon foe\u0027s chest. You get some slashing action, but not a mortal wound.", + "RawAffixText": "\u002B4H \u2013 \u03C0 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 448, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1792, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 1688, + "CropTop": 1760, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Heavy blow to upper torso. Wound falls", + "open and foe is in pain. His guard is still", + "up, amazingly enough.", + "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Heavy blow to upper torso. Wound falls", + "open and foe is in pain. His guard is still", + "up, amazingly enough.", + "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Heavy blow to upper torso. Wound falls\nopen and foe is in pain. His guard is still\nup, amazingly enough.\n\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Heavy blow to upper torso. Wound falls open and foe is in pain. His guard is still up, amazingly enough.", + "RawAffixText": "\u002B5H \u2013 \u03C0 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 448, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 1792, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 2292, + "CropTop": 1760, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Cut foe open with little grace. You are", + "unsure of your success until you see all", + "the blood coming out of his chest.", + "\u002B6H \u2013 2\u2211 \u2013 4\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Cut foe open with little grace. You are", + "unsure of your success until you see all", + "the blood coming out of his chest.", + "\u002B6H \u2013 2\u2211 \u2013 4\u222B \u2013 (-10)" + ], + "RawCellText": "Cut foe open with little grace. You are\nunsure of your success until you see all\nthe blood coming out of his chest.\n\u002B6H \u2013 2\u2211 \u2013 4\u222B \u2013 (-10)", + "DescriptionText": "Cut foe open with little grace. You are unsure of your success until you see all the blood coming out of his chest.", + "RawAffixText": "\u002B6H \u2013 2\u2211 \u2013 4\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 448, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1792, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2900, + "CropTop": 1760, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "You recover from your initial swing", + "and bring edge across foe\u0027s thigh.", + "\u002B3H \u2013 \u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "You recover from your initial swing", + "and bring edge across foe\u0027s thigh.", + "\u002B3H \u2013 \u03C0 \u2013 2\u222B" + ], + "RawCellText": "You recover from your initial swing\nand bring edge across foe\u0027s thigh.\n\u002B3H \u2013 \u03C0 \u2013 2\u222B", + "DescriptionText": "You recover from your initial swing and bring edge across foe\u0027s thigh.", + "RawAffixText": "\u002B3H \u2013 \u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 514, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2056, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 2024, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Edge makes contact well enough. Minor", + "thigh wound.", + "\u002B4H \u2013 2\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Edge makes contact well enough. Minor", + "thigh wound.", + "\u002B4H \u2013 2\u03C0 \u2013 2\u222B" + ], + "RawCellText": "Edge makes contact well enough. Minor\nthigh wound.\n\u002B4H \u2013 2\u03C0 \u2013 2\u222B", + "DescriptionText": "Edge makes contact well enough. Minor thigh wound.", + "RawAffixText": "\u002B4H \u2013 2\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 514, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 2056, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 2024, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Strike to side slips down onto foe\u0027s", + "thigh. The wound is effective.", + "\u002B5H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Strike to side slips down onto foe\u0027s", + "thigh. The wound is effective.", + "\u002B5H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Strike to side slips down onto foe\u0027s\nthigh. The wound is effective.\n\u002B5H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Strike to side slips down onto foe\u0027s thigh. The wound is effective.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 514, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2056, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 2024, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Tip of your blade gets a hit on foe\u0027s", + "thigh. You twist your weapon.", + "\u002B6H \u2013 2\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Tip of your blade gets a hit on foe\u0027s", + "thigh. You twist your weapon.", + "\u002B6H \u2013 2\u2211 \u2013 2\u222B" + ], + "RawCellText": "Tip of your blade gets a hit on foe\u0027s\nthigh. You twist your weapon.\n\u002B6H \u2013 2\u2211 \u2013 2\u222B", + "DescriptionText": "Tip of your blade gets a hit on foe\u0027s thigh. You twist your weapon.", + "RawAffixText": "\u002B6H \u2013 2\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 514, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 2056, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 2024, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Thigh wound. Your blow cuts deep and", + "severs an important vein.", + "\u002B8H \u2013 2\u2211 \u2013 5\u222B" + ], + "BaseLines": [ + "Thigh wound. Your blow cuts deep and", + "severs an important vein.", + "\u002B8H \u2013 2\u2211 \u2013 5\u222B" + ], + "RawCellText": "Thigh wound. Your blow cuts deep and\nsevers an important vein.\n\u002B8H \u2013 2\u2211 \u2013 5\u222B", + "DescriptionText": "Thigh wound. Your blow cuts deep and severs an important vein.", + "RawAffixText": "\u002B8H \u2013 2\u2211 \u2013 5\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 514, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2056, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 2024, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "You feign high and strike low.", + "Slash foe in back of upper leg.", + "\u002B3H \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "You feign high and strike low.", + "Slash foe in back of upper leg.", + "\u002B3H \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "You feign high and strike low.\nSlash foe in back of upper leg.\n\u002B3H \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "You feign high and strike low. Slash foe in back of upper leg.", + "RawAffixText": "\u002B3H \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 560, + "Width": 128, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2240, + "BoundsWidth": 512, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 2208, + "CropWidth": 608, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Nick foe in his forearm. Wound bleeds", + "surprisingly strongly.", + "\u002B4H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Nick foe in his forearm. Wound bleeds", + "surprisingly strongly.", + "\u002B4H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Nick foe in his forearm. Wound bleeds\nsurprisingly strongly.\n\u002B4H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Nick foe in his forearm. Wound bleeds surprisingly strongly.", + "RawAffixText": "\u002B4H \u2013 \u2211 \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 560, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 2240, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 2208, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Catch part of foe\u0027s forearm. You make a", + "long slice in foe\u0027s arm.", + "\u002B4H \u2013 \u2211 \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Catch part of foe\u0027s forearm. You make a", + "long slice in foe\u0027s arm.", + "\u002B4H \u2013 \u2211 \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "Catch part of foe\u0027s forearm. You make a\nlong slice in foe\u0027s arm.\n\u002B4H \u2013 \u2211 \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "Catch part of foe\u0027s forearm. You make a long slice in foe\u0027s arm.", + "RawAffixText": "\u002B4H \u2013 \u2211 \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 560, + "Width": 146, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2240, + "BoundsWidth": 584, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 2208, + "CropWidth": 680, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "You are lucky to strike foe\u0027s forearm", + "while recovering from a lunge.", + "\u002B4H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "You are lucky to strike foe\u0027s forearm", + "while recovering from a lunge.", + "\u002B4H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "You are lucky to strike foe\u0027s forearm\nwhile recovering from a lunge.\n\u002B4H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "You are lucky to strike foe\u0027s forearm while recovering from a lunge.", + "RawAffixText": "\u002B4H \u2013 2\u2211 \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 560, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 2240, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 2208, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Foe tries to disarm you and pays with a", + "nasty cut to his forearm.", + "\u002B6H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Foe tries to disarm you and pays with a", + "nasty cut to his forearm.", + "\u002B6H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)" + ], + "RawCellText": "Foe tries to disarm you and pays with a\nnasty cut to his forearm.\n\u002B6H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "DescriptionText": "Foe tries to disarm you and pays with a nasty cut to his forearm.", + "RawAffixText": "\u002B6H \u2013 2\u2211 \u2013 3\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 560, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2240, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 2208, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Foe blocks your attack with his", + "shield arm. Shoulder is broken and", + "arm is useless. You have initiative.", + "\u002B9H \u2013 3\u2211 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Foe blocks your attack with his", + "shield arm. Shoulder is broken and", + "arm is useless. You have initiative.", + "\u002B9H \u2013 3\u2211 \u2013 (\u002B10)" + ], + "RawCellText": "Foe blocks your attack with his\nshield arm. Shoulder is broken and\narm is useless. You have initiative.\n\u002B9H \u2013 3\u2211 \u2013 (\u002B10)", + "DescriptionText": "Foe blocks your attack with his shield arm. Shoulder is broken and arm is useless. You have initiative.", + "RawAffixText": "\u002B9H \u2013 3\u2211 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 605, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2420, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 548, + "CropTop": 2388, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Your strike misses torso and breaks", + "foe\u0027s elbow. Foe drops his weapon and", + "his weapon arm is useless.", + "\u002B8H \u2013 4\u2211 \u2013 2\u220F" + ], + "BaseLines": [ + "Your strike misses torso and breaks", + "foe\u0027s elbow. Foe drops his weapon and", + "his weapon arm is useless.", + "\u002B8H \u2013 4\u2211 \u2013 2\u220F" + ], + "RawCellText": "Your strike misses torso and breaks\nfoe\u0027s elbow. Foe drops his weapon and\nhis weapon arm is useless.\n\u002B8H \u2013 4\u2211 \u2013 2\u220F", + "DescriptionText": "Your strike misses torso and breaks foe\u0027s elbow. Foe drops his weapon and his weapon arm is useless.", + "RawAffixText": "\u002B8H \u2013 4\u2211 \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 605, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 2420, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 1084, + "CropTop": 2388, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Your swing falls short when foe leaps", + "back. You shatter foe\u0027s knee. Foe is", + "knocked down.", + "\u002B6H \u2013 3\u220F \u2013 (-90)" + ], + "BaseLines": [ + "Your swing falls short when foe leaps", + "back. You shatter foe\u0027s knee. Foe is", + "knocked down.", + "\u002B6H \u2013 3\u220F \u2013 (-90)" + ], + "RawCellText": "Your swing falls short when foe leaps\nback. You shatter foe\u0027s knee. Foe is\nknocked down.\n\u002B6H \u2013 3\u220F \u2013 (-90)", + "DescriptionText": "Your swing falls short when foe leaps back. You shatter foe\u0027s knee. Foe is knocked down.", + "RawAffixText": "\u002B6H \u2013 3\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 605, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2420, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 2388, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "You knock foe out for 6 hours with a", + "strike to side of head. If foe has no helm,", + "you kill him instantly.", + "\u002B15H" + ], + "BaseLines": [ + "You knock foe out for 6 hours with a", + "strike to side of head. If foe has no helm,", + "you kill him instantly.", + "\u002B15H" + ], + "RawCellText": "You knock foe out for 6 hours with a\nstrike to side of head. If foe has no helm,\nyou kill him instantly.\n\u002B15H", + "DescriptionText": "You knock foe out for 6 hours with a strike to side of head. If foe has no helm, you kill him instantly.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 605, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 2420, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2292, + "CropTop": 2388, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Block foe\u0027s weapon arm away and then", + "sever it. Foe drops immediately and", + "expires in 12 rounds. Good shot!", + "\u002B12H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Block foe\u0027s weapon arm away and then", + "sever it. Foe drops immediately and", + "expires in 12 rounds. Good shot!", + "\u002B12H \u2013 (\u002B10)" + ], + "RawCellText": "Block foe\u0027s weapon arm away and then\nsever it. Foe drops immediately and\nexpires in 12 rounds. Good shot!\n\u002B12H \u2013 (\u002B10)", + "DescriptionText": "Block foe\u0027s weapon arm away and then sever it. Foe drops immediately and expires in 12 rounds. Good shot!", + "RawAffixText": "\u002B12H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 605, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2420, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 2388, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Strike lands close against foe\u0027s", + "neck. Foe is horrified.", + "\u002B6H \u2013 3\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Strike lands close against foe\u0027s", + "neck. Foe is horrified.", + "\u002B6H \u2013 3\u2211 \u2013 \u220F" + ], + "RawCellText": "Strike lands close against foe\u0027s\nneck. Foe is horrified.\n\u002B6H \u2013 3\u2211 \u2013 \u220F", + "DescriptionText": "Strike lands close against foe\u0027s neck. Foe is horrified.", + "RawAffixText": "\u002B6H \u2013 3\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 662, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2648, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 548, + "CropTop": 2616, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Your attempt to behead foe almost", + "works. Neck strike. Foe is not happy.", + "\u002B7H \u2013 2\u2211 \u2013 3\u222B \u2013 (-5)" + ], + "BaseLines": [ + "Your attempt to behead foe almost", + "works. Neck strike. Foe is not happy.", + "\u002B7H \u2013 2\u2211 \u2013 3\u222B \u2013 (-5)" + ], + "RawCellText": "Your attempt to behead foe almost\nworks. Neck strike. Foe is not happy.\n\u002B7H \u2013 2\u2211 \u2013 3\u222B \u2013 (-5)", + "DescriptionText": "Your attempt to behead foe almost works. Neck strike. Foe is not happy.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 3\u222B \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 662, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 2648, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 1084, + "CropTop": 2616, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Slash foe\u0027s neck. Your weapon cuts neck", + "garments (and armor) free.", + "\u002B8H \u2013 4\u2211 \u2013 2\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Slash foe\u0027s neck. Your weapon cuts neck", + "garments (and armor) free.", + "\u002B8H \u2013 4\u2211 \u2013 2\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Slash foe\u0027s neck. Your weapon cuts neck\ngarments (and armor) free.\n\u002B8H \u2013 4\u2211 \u2013 2\u220F \u2013 (\u002B10)", + "DescriptionText": "Slash foe\u0027s neck. Your weapon cuts neck garments (and armor) free.", + "RawAffixText": "\u002B8H \u2013 4\u2211 \u2013 2\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 662, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2648, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 2616, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "You strike foe\u0027s shoulder and slash", + "muscles.", + "\u002B5H \u2013 3\u2211 \u2013 (-20) \u2013 (\u002B10)" + ], + "BaseLines": [ + "You strike foe\u0027s shoulder and slash", + "muscles.", + "\u002B5H \u2013 3\u2211 \u2013 (-20) \u2013 (\u002B10)" + ], + "RawCellText": "You strike foe\u0027s shoulder and slash\nmuscles.\n\u002B5H \u2013 3\u2211 \u2013 (-20) \u2013 (\u002B10)", + "DescriptionText": "You strike foe\u0027s shoulder and slash muscles.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 (-20) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 662, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 2648, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2292, + "CropTop": 2616, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Slash tendons and crush the bones in", + "foe\u0027s shield arm shoulder. Arm is useless.", + "4\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Slash tendons and crush the bones in", + "foe\u0027s shield arm shoulder. Arm is useless.", + "4\u2211 \u2013 2\u222B" + ], + "RawCellText": "Slash tendons and crush the bones in\nfoe\u0027s shield arm shoulder. Arm is useless.\n4\u2211 \u2013 2\u222B", + "DescriptionText": "Slash tendons and crush the bones in foe\u0027s shield arm shoulder. Arm is useless.", + "RawAffixText": "4\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 662, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "slash/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2648, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 2616, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Blow falls on lower leg. Slash", + "tendons. Poor sucker.", + "\u002B4H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Blow falls on lower leg. Slash", + "tendons. Poor sucker.", + "\u002B4H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "RawCellText": "Blow falls on lower leg. Slash\ntendons. Poor sucker.\n\u002B4H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "DescriptionText": "Blow falls on lower leg. Slash tendons. Poor sucker.", + "RawAffixText": "\u002B4H \u2013 2\u2211 \u2013 2\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 709, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 2836, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 548, + "CropTop": 2804, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Slash muscle in foe\u0027s calf. Foe is in too", + "much pain to regain footing quickly.", + "\u002B6H \u2013 3\u2211 \u2013 \u220F \u2013 (-40)" + ], + "BaseLines": [ + "Slash muscle in foe\u0027s calf. Foe is in too", + "much pain to regain footing quickly.", + "\u002B6H \u2013 3\u2211 \u2013 \u220F \u2013 (-40)" + ], + "RawCellText": "Slash muscle in foe\u0027s calf. Foe is in too\nmuch pain to regain footing quickly.\n\u002B6H \u2013 3\u2211 \u2013 \u220F \u2013 (-40)", + "DescriptionText": "Slash muscle in foe\u0027s calf. Foe is in too much pain to regain footing quickly.", + "RawAffixText": "\u002B6H \u2013 3\u2211 \u2013 \u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 709, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 2836, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1084, + "CropTop": 2804, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Slash muscle and tendons in foe\u0027s lower", + "leg. Foe stumbles forward into you with", + "his guard down.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-45)" + ], + "BaseLines": [ + "Slash muscle and tendons in foe\u0027s lower", + "leg. Foe stumbles forward into you with", + "his guard down.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-45)" + ], + "RawCellText": "Slash muscle and tendons in foe\u0027s lower\nleg. Foe stumbles forward into you with\nhis guard down.\n\u002B7H \u2013 2\u2211\u220F \u2013 (-45)", + "DescriptionText": "Slash muscle and tendons in foe\u0027s lower leg. Foe stumbles forward into you with his guard down.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 (-45)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -45, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-45)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 709, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2836, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 2804, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Slash muscle and sever tendons in foe\u0027s", + "lower leg. He can\u0027t stand much longer.", + "His guard is feeble.", + "3\u2211 \u2013 2\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Slash muscle and sever tendons in foe\u0027s", + "lower leg. He can\u0027t stand much longer.", + "His guard is feeble.", + "3\u2211 \u2013 2\u220F \u2013 (-50)" + ], + "RawCellText": "Slash muscle and sever tendons in foe\u0027s\nlower leg. He can\u0027t stand much longer.\nHis guard is feeble.\n3\u2211 \u2013 2\u220F \u2013 (-50)", + "DescriptionText": "Slash muscle and sever tendons in foe\u0027s lower leg. He can\u0027t stand much longer. His guard is feeble.", + "RawAffixText": "3\u2211 \u2013 2\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 709, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 2836, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2292, + "CropTop": 2804, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Slash foe\u0027s lower leg and sever muscle", + "and tendons. Foe will fall without", + "something to lean against.", + "\u002B8H \u2013 6\u2211 \u2013 (-70)" + ], + "BaseLines": [ + "Slash foe\u0027s lower leg and sever muscle", + "and tendons. Foe will fall without", + "something to lean against.", + "\u002B8H \u2013 6\u2211 \u2013 (-70)" + ], + "RawCellText": "Slash foe\u0027s lower leg and sever muscle\nand tendons. Foe will fall without\nsomething to lean against.\n\u002B8H \u2013 6\u2211 \u2013 (-70)", + "DescriptionText": "Slash foe\u0027s lower leg and sever muscle and tendons. Foe will fall without something to lean against.", + "RawAffixText": "\u002B8H \u2013 6\u2211 \u2013 (-70)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -70, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-70)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 709, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2836, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 2804, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Foe goes low, but you still catch his", + "upper arm. It\u0027s a bleeder.", + "\u002B5H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Foe goes low, but you still catch his", + "upper arm. It\u0027s a bleeder.", + "\u002B5H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-25)" + ], + "RawCellText": "Foe goes low, but you still catch his\nupper arm. It\u0027s a bleeder.\n\u002B5H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "DescriptionText": "Foe goes low, but you still catch his upper arm. It\u0027s a bleeder.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 764, + "Width": 129, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3056, + "BoundsWidth": 516, + "BoundsHeight": 200, + "CropLeft": 548, + "CropTop": 3024, + "CropWidth": 612, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Foe moves his shield arm too slowly.", + "You gladly slash his arm.", + "\u002B6H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-30)" + ], + "BaseLines": [ + "Foe moves his shield arm too slowly.", + "You gladly slash his arm.", + "\u002B6H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-30)" + ], + "RawCellText": "Foe moves his shield arm too slowly.\nYou gladly slash his arm.\n\u002B6H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "DescriptionText": "Foe moves his shield arm too slowly. You gladly slash his arm.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F \u2013 3\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 764, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 3056, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 1084, + "CropTop": 3024, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "You come in high and fast. Slash muscle", + "and tendons in foe\u0027s shield arm. Foe\u0027s", + "arm is useless.", + "\u002B9H \u2013 6\u2211 \u2013 4\u222B" + ], + "BaseLines": [ + "You come in high and fast. Slash muscle", + "and tendons in foe\u0027s shield arm. Foe\u0027s", + "arm is useless.", + "\u002B9H \u2013 6\u2211 \u2013 4\u222B" + ], + "RawCellText": "You come in high and fast. Slash muscle\nand tendons in foe\u0027s shield arm. Foe\u0027s\narm is useless.\n\u002B9H \u2013 6\u2211 \u2013 4\u222B", + "DescriptionText": "You come in high and fast. Slash muscle and tendons in foe\u0027s shield arm. Foe\u0027s arm is useless.", + "RawAffixText": "\u002B9H \u2013 6\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 764, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3056, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 3024, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Foe mistakenly brings his weapon arm", + "across your blade. Sever tendons.", + "Foe\u0027s arm is limp and useless.", + "\u002B10H \u2013 4\u2211 \u2013 2\u220F" + ], + "BaseLines": [ + "Foe mistakenly brings his weapon arm", + "across your blade. Sever tendons.", + "Foe\u0027s arm is limp and useless.", + "\u002B10H \u2013 4\u2211 \u2013 2\u220F" + ], + "RawCellText": "Foe mistakenly brings his weapon arm\nacross your blade. Sever tendons.\nFoe\u0027s arm is limp and useless.\n\u002B10H \u2013 4\u2211 \u2013 2\u220F", + "DescriptionText": "Foe mistakenly brings his weapon arm across your blade. Sever tendons. Foe\u0027s arm is limp and useless.", + "RawAffixText": "\u002B10H \u2013 4\u2211 \u2013 2\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 764, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 3056, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2292, + "CropTop": 3024, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Foe reaches out to block your blow. You", + "sever two fingers and break his shield", + "arm making it useless.", + "\u002B12H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Foe reaches out to block your blow. You", + "sever two fingers and break his shield", + "arm making it useless.", + "\u002B12H \u2013 3\u2211\u220F" + ], + "RawCellText": "Foe reaches out to block your blow. You\nsever two fingers and break his shield\narm making it useless.\n\u002B12H \u2013 3\u2211\u220F", + "DescriptionText": "Foe reaches out to block your blow. You sever two fingers and break his shield arm making it useless.", + "RawAffixText": "\u002B12H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 764, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3056, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 3024, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Foe steps right into your swing.", + "You make a large wound.", + "\u002B6H \u2013 5\u2211 \u2013 6\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe steps right into your swing.", + "You make a large wound.", + "\u002B6H \u2013 5\u2211 \u2013 6\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Foe steps right into your swing.\nYou make a large wound.\n\u002B6H \u2013 5\u2211 \u2013 6\u222B \u2013 (\u002B20)", + "DescriptionText": "Foe steps right into your swing. You make a large wound.", + "RawAffixText": "\u002B6H \u2013 5\u2211 \u2013 6\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 5, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 821, + "Width": 128, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3284, + "BoundsWidth": 512, + "BoundsHeight": 200, + "CropLeft": 548, + "CropTop": 3252, + "CropWidth": 608, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Your edge bites half its width into foe.", + "Open up a terrible wound. Blood goes", + "everywhere.", + "\u002B7H \u2013 2\u2211\u220F \u2013 6\u222B" + ], + "BaseLines": [ + "Your edge bites half its width into foe.", + "Open up a terrible wound. Blood goes", + "everywhere.", + "\u002B7H \u2013 2\u2211\u220F \u2013 6\u222B" + ], + "RawCellText": "Your edge bites half its width into foe.\nOpen up a terrible wound. Blood goes\neverywhere.\n\u002B7H \u2013 2\u2211\u220F \u2013 6\u222B", + "DescriptionText": "Your edge bites half its width into foe. Open up a terrible wound. Blood goes everywhere.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 6\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 6, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 821, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 3284, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 1084, + "CropTop": 3252, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "You follow your training well. You", + "extend on your slashing arc. Strike", + "lands against foe\u0027s side.", + "\u002B8H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-20)" + ], + "BaseLines": [ + "You follow your training well. You", + "extend on your slashing arc. Strike", + "lands against foe\u0027s side.", + "\u002B8H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-20)" + ], + "RawCellText": "You follow your training well. You\nextend on your slashing arc. Strike\nlands against foe\u0027s side.\n\u002B8H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-20)", + "DescriptionText": "You follow your training well. You extend on your slashing arc. Strike lands against foe\u0027s side.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F \u2013 4\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 821, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3284, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 3252, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "You plunge your weapon into foe\u0027s", + "stomach. Major abdomenal wound. Foe", + "is instantly pale from blood loss.", + "\u002B10H \u2013 4\u2211 \u2013 2\u220F \u2013 8\u222B \u2013 (-10)" + ], + "BaseLines": [ + "You plunge your weapon into foe\u0027s", + "stomach. Major abdomenal wound. Foe", + "is instantly pale from blood loss.", + "\u002B10H \u2013 4\u2211 \u2013 2\u220F \u2013 8\u222B \u2013 (-10)" + ], + "RawCellText": "You plunge your weapon into foe\u0027s\nstomach. Major abdomenal wound. Foe\nis instantly pale from blood loss.\n\u002B10H \u2013 4\u2211 \u2013 2\u220F \u2013 8\u222B \u2013 (-10)", + "DescriptionText": "You plunge your weapon into foe\u0027s stomach. Major abdomenal wound. Foe is instantly pale from blood loss.", + "RawAffixText": "\u002B10H \u2013 4\u2211 \u2013 2\u220F \u2013 8\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 8, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 821, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 3284, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2292, + "CropTop": 3252, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Sever opponent\u0027s hand. Sad. Foe is down", + "and in shock for 12 rounds, then dies.", + "\u002B5H \u2013 12\u2211\u220F" + ], + "BaseLines": [ + "Sever opponent\u0027s hand. Sad. Foe is down", + "and in shock for 12 rounds, then dies.", + "\u002B5H \u2013 12\u2211\u220F" + ], + "RawCellText": "Sever opponent\u0027s hand. Sad. Foe is down\nand in shock for 12 rounds, then dies.\n\u002B5H \u2013 12\u2211\u220F", + "DescriptionText": "Sever opponent\u0027s hand. Sad. Foe is down and in shock for 12 rounds, then dies.", + "RawAffixText": "\u002B5H \u2013 12\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 821, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "slash/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3284, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 3252, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Foe turns out and away from your", + "swing. You still catch his side.", + "\u002B8H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Foe turns out and away from your", + "swing. You still catch his side.", + "\u002B8H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-10)" + ], + "RawCellText": "Foe turns out and away from your\nswing. You still catch his side.\n\u002B8H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "DescriptionText": "Foe turns out and away from your swing. You still catch his side.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 877, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3508, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 548, + "CropTop": 3476, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Strike Stike to back. Foe goes prone trying to to back. Foe goes prone trying to", + "avoid avoid your strike. He gets up facing the your strike. He gets up facing the", + "wrong direction.", + "\u002B10H \u2013 3\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Strike Stike to back. Foe goes prone trying to to back. Foe goes prone trying to", + "avoid avoid your strike. He gets up facing the your strike. He gets up facing the", + "wrong direction.", + "\u002B10H \u2013 3\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Strike Stike to back. Foe goes prone trying to to back. Foe goes prone trying to\navoid avoid your strike. He gets up facing the your strike. He gets up facing the\nwrong direction.\n\u002B10H \u2013 3\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Strike Stike to back. Foe goes prone trying to to back. Foe goes prone trying to avoid avoid your strike. He gets up facing the your strike. He gets up facing the wrong direction.", + "RawAffixText": "\u002B10H \u2013 3\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 877, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3508, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 3476, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Blast to back breaks bone. Foe", + "stumbles forward before falling down.", + "He is having trouble standing.", + "\u002B9H \u2013 4\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Blast to back breaks bone. Foe", + "stumbles forward before falling down.", + "He is having trouble standing.", + "\u002B9H \u2013 4\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Blast to back breaks bone. Foe\nstumbles forward before falling down.\nHe is having trouble standing.\n\u002B9H \u2013 4\u2211\u220F \u2013 (-10)", + "DescriptionText": "Blast to back breaks bone. Foe stumbles forward before falling down. He is having trouble standing.", + "RawAffixText": "\u002B9H \u2013 4\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 877, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3508, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 3476, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Your attempt to disarm foe is even more", + "effective. Sever opponent\u0027s hand. Foe is", + "in shock for 6 rounds and then dies.", + "\u002B6H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "Your attempt to disarm foe is even more", + "effective. Sever opponent\u0027s hand. Foe is", + "in shock for 6 rounds and then dies.", + "\u002B6H \u2013 6\u2211\u220F" + ], + "RawCellText": "Your attempt to disarm foe is even more\neffective. Sever opponent\u0027s hand. Foe is\nin shock for 6 rounds and then dies.\n\u002B6H \u2013 6\u2211\u220F", + "DescriptionText": "Your attempt to disarm foe is even more effective. Sever opponent\u0027s hand. Foe is in shock for 6 rounds and then dies.", + "RawAffixText": "\u002B6H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 877, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 3508, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2292, + "CropTop": 3476, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Meat chopping strike severs foe\u0027s leg.", + "Foe drops and lapses in", + "unconsciousness. Foe dies in 9 rounds.", + "\u002B15H \u2013 (\u002B10)" + ], + "BaseLines": [ + "Meat chopping strike severs foe\u0027s leg.", + "Foe drops and lapses in", + "unconsciousness. Foe dies in 9 rounds.", + "\u002B15H \u2013 (\u002B10)" + ], + "RawCellText": "Meat chopping strike severs foe\u0027s leg.\nFoe drops and lapses in\nunconsciousness. Foe dies in 9 rounds.\n\u002B15H \u2013 (\u002B10)", + "DescriptionText": "Meat chopping strike severs foe\u0027s leg. Foe drops and lapses in unconsciousness. Foe dies in 9 rounds.", + "RawAffixText": "\u002B15H \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 877, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3508, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 3476, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s head. If no helmet,", + "cut off foe\u0027s ear (all hearing ability is", + "halved).", + "with helmet: \u002B3H \u2013 2\u2211\u220F", + "w/o helmet: \u002B3H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Blow to foe\u0027s head. If no helmet,", + "cut off foe\u0027s ear (all hearing ability is", + "halved)." + ], + "RawCellText": "Blow to foe\u0027s head. If no helmet,\ncut off foe\u0027s ear (all hearing ability is\nhalved).", + "DescriptionText": "Blow to foe\u0027s head. If no helmet, cut off foe\u0027s ear (all hearing ability is halved).", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B3H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: \u002B3H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 934, + "Width": 131, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 3736, + "BoundsWidth": 524, + "BoundsHeight": 240, + "CropLeft": 548, + "CropTop": 3704, + "CropWidth": 620, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s hip. The blow has little", + "edge, but much impact. Your blow", + "staggers foe. His recovery is slow.", + "\u002B7H \u2013 3\u2211 \u2013 \u220F \u2013 (-20) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strike to foe\u0027s hip. The blow has little", + "edge, but much impact. Your blow", + "staggers foe. His recovery is slow.", + "\u002B7H \u2013 3\u2211 \u2013 \u220F \u2013 (-20) \u2013 (\u002B10)" + ], + "RawCellText": "Strike to foe\u0027s hip. The blow has little\nedge, but much impact. Your blow\nstaggers foe. His recovery is slow.\n\u002B7H \u2013 3\u2211 \u2013 \u220F \u2013 (-20) \u2013 (\u002B10)", + "DescriptionText": "Strike to foe\u0027s hip. The blow has little edge, but much impact. Your blow staggers foe. His recovery is slow.", + "RawAffixText": "\u002B7H \u2013 3\u2211 \u2013 \u220F \u2013 (-20) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 934, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 3736, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 1084, + "CropTop": 3704, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Chop the top of foe\u0027s thigh. Sever foe\u0027s", + "leg. Foe drops immediately and dies in 6", + "rounds due to shock and blood loss.", + "\u002B20H" + ], + "BaseLines": [ + "Chop the top of foe\u0027s thigh. Sever foe\u0027s", + "leg. Foe drops immediately and dies in 6", + "rounds due to shock and blood loss.", + "\u002B20H" + ], + "RawCellText": "Chop the top of foe\u0027s thigh. Sever foe\u0027s\nleg. Foe drops immediately and dies in 6\nrounds due to shock and blood loss.\n\u002B20H", + "DescriptionText": "Chop the top of foe\u0027s thigh. Sever foe\u0027s leg. Foe drops immediately and dies in 6 rounds due to shock and blood loss.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 934, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3736, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 1688, + "CropTop": 3704, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Sever foe\u0027s weapon arm and bury your", + "sword into foe\u0027s side. Foe falls prone.", + "Foe is in shock for 12 rounds, then dies.", + "\u002B15H \u2013 9\u2211\u220F" + ], + "BaseLines": [ + "Sever foe\u0027s weapon arm and bury your", + "sword into foe\u0027s side. Foe falls prone.", + "Foe is in shock for 12 rounds, then dies.", + "\u002B15H \u2013 9\u2211\u220F" + ], + "RawCellText": "Sever foe\u0027s weapon arm and bury your\nsword into foe\u0027s side. Foe falls prone.\nFoe is in shock for 12 rounds, then dies.\n\u002B15H \u2013 9\u2211\u220F", + "DescriptionText": "Sever foe\u0027s weapon arm and bury your sword into foe\u0027s side. Foe falls prone. Foe is in shock for 12 rounds, then dies.", + "RawAffixText": "\u002B15H \u2013 9\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 934, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 3736, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2292, + "CropTop": 3704, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Sever foe\u0027s spine. Foe collapses,", + "paralyzed from the neck down", + "permanently.", + "\u002B20H" + ], + "BaseLines": [ + "Sever foe\u0027s spine. Foe collapses,", + "paralyzed from the neck down", + "permanently.", + "\u002B20H" + ], + "RawCellText": "Sever foe\u0027s spine. Foe collapses,\nparalyzed from the neck down\npermanently.\n\u002B20H", + "DescriptionText": "Sever foe\u0027s spine. Foe collapses, paralyzed from the neck down permanently.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 934, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "slash/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3736, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2900, + "CropTop": 3704, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "The tip of your weapon slashes", + "foe\u0027s nose. Minor wound and a", + "permanent scar.", + "\u002B2H \u2013 6\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "BaseLines": [ + "The tip of your weapon slashes", + "foe\u0027s nose. Minor wound and a", + "permanent scar.", + "\u002B2H \u2013 6\u2211 \u2013 2\u222B \u2013 (-30)" + ], + "RawCellText": "The tip of your weapon slashes\nfoe\u0027s nose. Minor wound and a\npermanent scar.\n\u002B2H \u2013 6\u2211 \u2013 2\u222B \u2013 (-30)", + "DescriptionText": "The tip of your weapon slashes foe\u0027s nose. Minor wound and a permanent scar.", + "RawAffixText": "\u002B2H \u2013 6\u2211 \u2013 2\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 1000, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 4000, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 548, + "CropTop": 3968, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s head breaks skull and", + "causes massive brain damage. Foe", + "drops and dies in 6 rounds.", + "\u002B20H" + ], + "BaseLines": [ + "Strike to foe\u0027s head breaks skull and", + "causes massive brain damage. Foe", + "drops and dies in 6 rounds.", + "\u002B20H" + ], + "RawCellText": "Strike to foe\u0027s head breaks skull and\ncauses massive brain damage. Foe\ndrops and dies in 6 rounds.\n\u002B20H", + "DescriptionText": "Strike to foe\u0027s head breaks skull and causes massive brain damage. Foe drops and dies in 6 rounds.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 1000, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 4000, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1084, + "CropTop": 3968, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "You cleave shield and arm in half Foe", + "attempts to catch his falling arm. Foe is", + "in shock for 12 rounds then dies.", + "\u002B18H \u2013 12\u2211\u220F" + ], + "BaseLines": [ + "You cleave shield and arm in half Foe", + "attempts to catch his falling arm. Foe is", + "in shock for 12 rounds then dies.", + "\u002B18H \u2013 12\u2211\u220F" + ], + "RawCellText": "You cleave shield and arm in half Foe\nattempts to catch his falling arm. Foe is\nin shock for 12 rounds then dies.\n\u002B18H \u2013 12\u2211\u220F", + "DescriptionText": "You cleave shield and arm in half Foe attempts to catch his falling arm. Foe is in shock for 12 rounds then dies.", + "RawAffixText": "\u002B18H \u2013 12\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 1000, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 4000, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 3968, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Slash foe\u0027s side. Foe dies in 3 rounds", + "due to internal organ damage. Foe is", + "down and unconscious immediately.", + "\u002B20H" + ], + "BaseLines": [ + "Slash foe\u0027s side. Foe dies in 3 rounds", + "due to internal organ damage. Foe is", + "down and unconscious immediately.", + "\u002B20H" + ], + "RawCellText": "Slash foe\u0027s side. Foe dies in 3 rounds\ndue to internal organ damage. Foe is\ndown and unconscious immediately.\n\u002B20H", + "DescriptionText": "Slash foe\u0027s side. Foe dies in 3 rounds due to internal organ damage. Foe is down and unconscious immediately.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 1000, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 4000, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2292, + "CropTop": 3968, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s head destroys brain and", + "makes life difficult for the poor fool.", + "Foe expires in a heap\u2014immediately.", + "\u2014" + ], + "BaseLines": [ + "Strike to foe\u0027s head destroys brain and", + "makes life difficult for the poor fool.", + "Foe expires in a heap\u2014immediately.", + "\u2014" + ], + "RawCellText": "Strike to foe\u0027s head destroys brain and\nmakes life difficult for the poor fool.\nFoe expires in a heap\u2014immediately.\n\u2014", + "DescriptionText": "Strike to foe\u0027s head destroys brain and makes life difficult for the poor fool. Foe expires in a heap\u2014immediately.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 1000, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 4000, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 3968, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Strike severs carotid artery and", + "jugular vein, breaking foe\u0027s neck.", + "Foe dies in 6 rounds of agony.", + "\u2014" + ], + "BaseLines": [ + "Strike severs carotid artery and", + "jugular vein, breaking foe\u0027s neck.", + "Foe dies in 6 rounds of agony.", + "\u2014" + ], + "RawCellText": "Strike severs carotid artery and\njugular vein, breaking foe\u0027s neck.\nFoe dies in 6 rounds of agony.\n\u2014", + "DescriptionText": "Strike severs carotid artery and jugular vein, breaking foe\u0027s neck. Foe dies in 6 rounds of agony.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 149, + "Top": 1057, + "Width": 126, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 596, + "BoundsTop": 4228, + "BoundsWidth": 504, + "BoundsHeight": 196, + "CropLeft": 548, + "CropTop": 4196, + "CropWidth": 600, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Disembowel foe, killing him instantly.", + "25% chance your weapon is stuck in", + "opponent for 1 round.", + "\u2014" + ], + "BaseLines": [ + "Disembowel foe, killing him instantly.", + "25% chance your weapon is stuck in", + "opponent for 1 round.", + "\u2014" + ], + "RawCellText": "Disembowel foe, killing him instantly.\n25% chance your weapon is stuck in\nopponent for 1 round.\n\u2014", + "DescriptionText": "Disembowel foe, killing him instantly. 25% chance your weapon is stuck in opponent for 1 round.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 283, + "Top": 1057, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1132, + "BoundsTop": 4228, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1084, + "CropTop": 4196, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Strike up, in, and across foe\u0027s forehead.", + "Destroy foe\u0027s eyes. Foe flips onto his", + "back in pain.", + "\u002B5H \u2013 30\u2211\u220F" + ], + "BaseLines": [ + "Strike up, in, and across foe\u0027s forehead.", + "Destroy foe\u0027s eyes. Foe flips onto his", + "back in pain.", + "\u002B5H \u2013 30\u2211\u220F" + ], + "RawCellText": "Strike up, in, and across foe\u0027s forehead.\nDestroy foe\u0027s eyes. Foe flips onto his\nback in pain.\n\u002B5H \u2013 30\u2211\u220F", + "DescriptionText": "Strike up, in, and across foe\u0027s forehead. Destroy foe\u0027s eyes. Foe flips onto his back in pain.", + "RawAffixText": "\u002B5H \u2013 30\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 30, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "30\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 1057, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 4228, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 4196, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Impale foe in heart. Foe dies instantly.", + "Heart is destroyed. 25% chance your", + "weapon is stuck in for 2 rounds.", + "\u002B12H" + ], + "BaseLines": [ + "Impale foe in heart. Foe dies instantly.", + "Heart is destroyed. 25% chance your", + "weapon is stuck in for 2 rounds.", + "\u002B12H" + ], + "RawCellText": "Impale foe in heart. Foe dies instantly.\nHeart is destroyed. 25% chance your\nweapon is stuck in for 2 rounds.\n\u002B12H", + "DescriptionText": "Impale foe in heart. Foe dies instantly. Heart is destroyed. 25% chance your weapon is stuck in for 2 rounds.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 585, + "Top": 1057, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2340, + "BoundsTop": 4228, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2292, + "CropTop": 4196, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Very close! Strike to foe\u0027s groin area. All", + "vital organs are destroyed immediately.", + "Foe dies after 24 rounds of agony.", + "\u002B10H \u2013 12\u2211\u220F" + ], + "BaseLines": [ + "Very close! Strike to foe\u0027s groin area. All", + "vital organs are destroyed immediately.", + "Foe dies after 24 rounds of agony.", + "\u002B10H \u2013 12\u2211\u220F" + ], + "RawCellText": "Very close! Strike to foe\u0027s groin area. All\nvital organs are destroyed immediately.\nFoe dies after 24 rounds of agony.\n\u002B10H \u2013 12\u2211\u220F", + "DescriptionText": "Very close! Strike to foe\u0027s groin area. All vital organs are destroyed immediately. Foe dies after 24 rounds of agony.", + "RawAffixText": "\u002B10H \u2013 12\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 1057, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "slash/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 4228, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 4196, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/source.xml b/src/RolemasterDb.App/import-artifacts/critical/slash/source.xml new file mode 100644 index 0000000..a1c4950 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/slash/source.xml @@ -0,0 +1,385 @@ + + + + + + + + + + + + + +101 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +Weak strike. +Feeble strike falls clear of target. +Firm shot. Good recovery. Try again. +Strike lands poorly. +Your attack is weak. ++0H ++0H ++1H ++2H ++3H +06-10 +Good form, but it disappoints. +Hard strike with no edge. Foe steps clear +before you sort it out. +Strike foe with more force than edge. +An opening appears and all you can to is +smack foe lightly. +Unbalance foe. You receive initiative next +round. ++1H ++2H ++3H ++4H ++5H +11-15 +Blade misses foe's face by inches. +You receive initiative next round. +Foe steps quickly out of your reach. You +receive initiative next round. +Blow to foe's side yields the initiative to +you next round. +You force your opponent back. He keeps +you at bay with wild swings. +You push aside foe's weapon and force +him back. ++1H ++3H ++6H ++3H – π ++4H – π +16-20 +Strike passes under foe's arm. It +fails to bite deep. He recoils. +Blow to foe's side. Foe defends +energetically. +Your assault catches foe in side and +forces him back 5 feet. +You lean in and slash foe's side. You +receive initiative next round. +Strong blow to foe's ribs. Foe drops his +guard and almost his weapon. ++1H – π ++2H – (π-10) ++4H – (π-20) ++2H – (-10) +∑∏ – (+10) +21-35 +Foe's evasion puts him out of an +aggressive posture. +Foe is shaken by your blow to his +side. His defensive measures look +clumsy. +You break foe's rib with a lightning +strike to his chest. He recovers quickly. +His shield side still faces you. +Arm and chest strike. Foe cannot defend +himself for a moment. You step around +his shielded side. +Foe avoids your main effort, but you nick +him on your recovery. Foe receives minor +side wound and stumbles back 10 feet. ++2H – π – (+10) ++2H – (π-20) ++3H – ∑ ++3H – ∑∏ ++3H – ∫ – (-10) +36-45 +Minor thigh wound. Cut foe with +the smallest of slashes. +Strike foe in shin. If he doesn't have +greaves, you slash open foe's shin. +The blow does nothing more than open a +wide cut in foe. +Foe blocks your attack on his chest. You +slash foe's upper area. +Blow to foe's upper leg. Leg armor helps +block the blow. + +with leg greaves: +2H – π +w/o leg greaves: +2H – ∫ ++2H – 2∫ ++3H – 2∫ +with leg greaves: +5H +w/o leg greaves: +3H – 3∫ +46-50 +Blow to foe's back. Foe attempts to +ward you off with a wild swing. +Foe twists oddly to avoid your attack. +Blow strikes foe's back. +Blow to foe's back. Foe twists out of it +and you turn your weapon to magnify +the wound. Foe yells out. +Reach long and catch foe in his lower +back. He twists out of it, but is +unbalanced. +Strike to foe's stomach. He doubles over +in pain and you pull your sword clean +with one more sweep. ++2H – (π-30) ++4H – (π-30) ++3H – ∑∏ – ∫ ++3H – ∑∏ – 2∫ ++4H – ∑∏ – 3∫ +51-55 +Blow to foe's chest. Foe stumbles +back and puts up a feeble guard. +Quality strike. Minor chest wound. If foe +has armor, he only staggers. If not, the +wound is effective. +Blow lands solidly upon foe's chest. +You get some slashing action, but not a +mortal wound. +Heavy blow to upper torso. Wound falls +open and foe is in pain. His guard is still +up, amazingly enough. +Cut foe open with little grace. You are +unsure of your success until you see all +the blood coming out of his chest. ++2H – (π-25) – ∫ +with chest armor: +4H – π +w/o chest armor: +3H – 2π – ∫ – (-5) ++4H – π – 2∫ – (-10) ++5H – π – 3∫ – (-15) ++6H – 2∑ – 4∫ – (-10) +56-60 +You recover from your initial swing +and bring edge across foe's thigh. +Edge makes contact well enough. Minor +thigh wound. +Strike to side slips down onto foe's +thigh. The wound is effective. +Tip of your blade gets a hit on foe's +thigh. You twist your weapon. +Thigh wound. Your blow cuts deep and +severs an important vein. ++3H – π – 2∫ ++4H – 2π – 2∫ ++5H – ∑ – 2∫ ++6H – 2∑ – 2∫ ++8H – 2∑ – 5∫ +61-65 +You feign high and strike low. +Slash foe in back of upper leg. +Nick foe in his forearm. Wound bleeds +surprisingly strongly. +Catch part of foe's forearm. You make a +long slice in foe's arm. +You are lucky to strike foe's forearm +while recovering from a lunge. +Foe tries to disarm you and pays with a +nasty cut to his forearm. ++3H – 2∫ – (-10) ++4H – ∑ – 2∫ – (-10) ++4H – ∑ – 3∫ – (-10) ++4H – 2∑ – 3∫ – (-10) ++6H – 2∑ – 3∫ – (-15) +66 +Foe blocks your attack with his +shield arm. Shoulder is broken and +arm is useless. You have initiative. +Your strike misses torso and breaks +foe's elbow. Foe drops his weapon and +his weapon arm is useless. +Your swing falls short when foe leaps +back. You shatter foe's knee. Foe is +knocked down. +You knock foe out for 6 hours with a +strike to side of head. If foe has no helm, +you kill him instantly. +Block foe's weapon arm away and then +sever it. Foe drops immediately and +expires in 12 rounds. Good shot! ++9H – 3∑ – (+10) ++8H – 4∑ – 2∏ ++6H – 3∏ – (-90) ++15H ++12H – (+10) +67-70 +Strike lands close against foe's +neck. Foe is horrified. +Your attempt to behead foe almost +works. Neck strike. Foe is not happy. +Slash foe's neck. Your weapon cuts neck +garments (and armor) free. +You strike foe's shoulder and slash +muscles. +Slash tendons and crush the bones in +foe's shield arm shoulder. Arm is useless. ++6H – 3∑ – ∏ ++7H – 2∑ – 3∫ – (-5) ++8H – 4∑ – 2∏ – (+10) ++5H – 3∑ – (-20) – (+10) +4∑ – 2∫ +71-75 +Blow falls on lower leg. Slash +tendons. Poor sucker. +Slash muscle in foe's calf. Foe is in too +much pain to regain footing quickly. +Slash muscle and tendons in foe's lower +leg. Foe stumbles forward into you with +his guard down. +Slash muscle and sever tendons in foe's +lower leg. He can't stand much longer. +His guard is feeble. +Slash foe's lower leg and sever muscle +and tendons. Foe will fall without +something to lean against. ++4H – 2∑ – 2∫ – (-30) ++6H – 3∑ – ∏ – (-40) ++7H – 2∑∏ – (-45) +3∑ – 2∏ – (-50) ++8H – 6∑ – (-70) +76-80 +Foe goes low, but you still catch his +upper arm. It's a bleeder. +Foe moves his shield arm too slowly. +You gladly slash his arm. +You come in high and fast. Slash muscle +and tendons in foe's shield arm. Foe's +arm is useless. +Foe mistakenly brings his weapon arm +across your blade. Sever tendons. +Foe's arm is limp and useless. +Foe reaches out to block your blow. You +sever two fingers and break his shield +arm making it useless. ++5H – 2∑∏ – 3∫ – (-25) ++6H – 2∑∏ – 3∫ – (-30) ++9H – 6∑ – 4∫ ++10H – 4∑ – 2∏ ++12H – 3∑∏ +81-85 +Foe steps right into your swing. +You make a large wound. +Your edge bites half its width into foe. +Open up a terrible wound. Blood goes +everywhere. +You follow your training well. You +extend on your slashing arc. Strike +lands against foe's side. +You plunge your weapon into foe's +stomach. Major abdomenal wound. Foe +is instantly pale from blood loss. +Sever opponent's hand. Sad. Foe is down +and in shock for 12 rounds, then dies. ++6H – 5∑ – 6∫ – (+20) ++7H – 2∑∏ – 6∫ ++8H – 2∑∏ – 4∫ – (-20) ++10H – 4∑ – 2∏ – 8∫ – (-10) ++5H – 12∑∏ +86-90 +Foe turns out and away from your +swing. You still catch his side. +Stike to back. Foe goes prone trying to +avoid your strike. He gets up facing the +wrong direction. +Blast to back breaks bone. Foe +stumbles forward before falling down. +He is having trouble standing. +Your attempt to disarm foe is even more +effective. Sever opponent's hand. Foe is +in shock for 6 rounds and then dies. +Meat chopping strike severs foe's leg. +Foe drops and lapses in +unconsciousness. Foe dies in 9 rounds. ++8H – 2∑∏ – 2∫ – (-10) ++10H – 3∑∏ – 3∫ ++9H – 4∑∏ – (-10) ++6H – 6∑∏ ++15H – (+10) +91-95 +Blow to foe's head. If no helmet, +cut off foe's ear (all hearing ability is +halved). +Strike to foe's hip. The blow has little +edge, but much impact. Your blow +staggers foe. His recovery is slow. +Chop the top of foe's thigh. Sever foe's +leg. Foe drops immediately and dies in 6 +rounds due to shock and blood loss. +Sever foe's weapon arm and bury your +sword into foe's side. Foe falls prone. +Foe is in shock for 12 rounds, then dies. +Sever foe's spine. Foe collapses, +paralyzed from the neck down +permanently. +with helmet: +3H – 2∑∏ +w/o helmet: +3H – 3∑ – ∏ – 3∫ ++7H – 3∑ – ∏ – (-20) – (+10) ++20H ++15H – 9∑∏ ++20H +96-99 +The tip of your weapon slashes +foe's nose. Minor wound and a +permanent scar. +Strike to foe's head breaks skull and +causes massive brain damage. Foe +drops and dies in 6 rounds. +You cleave shield and arm in half Foe +attempts to catch his falling arm. Foe is +in shock for 12 rounds then dies. +Slash foe's side. Foe dies in 3 rounds +due to internal organ damage. Foe is +down and unconscious immediately. +Strike to foe's head destroys brain and +makes life difficult for the poor fool. +Foe expires in a heap—immediately. ++2H – 6∑ – 2∫ – (-30) ++20H ++18H – 12∑∏ ++20H + +100 +Strike severs carotid artery and +jugular vein, breaking foe's neck. +Foe dies in 6 rounds of agony. +Disembowel foe, killing him instantly. +25% chance your weapon is stuck in +opponent for 1 round. +Strike up, in, and across foe's forehead. +Destroy foe's eyes. Foe flips onto his +back in pain. +Impale foe in heart. Foe dies instantly. +Heart is destroyed. 25% chance your +weapon is stuck in for 2 rounds. +Very close! Strike to foe's groin area. All +vital organs are destroyed immediately. +Foe dies after 24 rounds of agony. + + ++5H – 30∑∏ ++12H ++10H – 12∑∏ +4.8 slash critical strike table +A +b +c +d +e +Strike to back. Foe goes prone trying to +avoid your strike. He gets up facing the +wrong direction. + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/slash/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/slash/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/slash/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__01-05.png new file mode 100644 index 0000000..49aa3f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__06-10.png new file mode 100644 index 0000000..648e04e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__100.png new file mode 100644 index 0000000..313dd00 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__11-15.png new file mode 100644 index 0000000..d8b8010 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__16-20.png new file mode 100644 index 0000000..55050eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__21-35.png new file mode 100644 index 0000000..8c140d2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__36-45.png new file mode 100644 index 0000000..e4874c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__46-50.png new file mode 100644 index 0000000..7850827 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__51-55.png new file mode 100644 index 0000000..ab4528a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__56-60.png new file mode 100644 index 0000000..8130a7d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__61-65.png new file mode 100644 index 0000000..4029d4a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__66.png new file mode 100644 index 0000000..b95aeec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__67-70.png new file mode 100644 index 0000000..fa4936e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__71-75.png new file mode 100644 index 0000000..2c547c1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__76-80.png new file mode 100644 index 0000000..23d066c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__81-85.png new file mode 100644 index 0000000..5e14104 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__86-90.png new file mode 100644 index 0000000..4dedec0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__91-95.png new file mode 100644 index 0000000..72bd3f3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__96-99.png new file mode 100644 index 0000000..cc760c7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__01-05.png new file mode 100644 index 0000000..d3be315 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__06-10.png new file mode 100644 index 0000000..ca8e72e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__100.png new file mode 100644 index 0000000..a79bd8c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__11-15.png new file mode 100644 index 0000000..7a9de50 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__16-20.png new file mode 100644 index 0000000..c8d87e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__21-35.png new file mode 100644 index 0000000..513f209 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__36-45.png new file mode 100644 index 0000000..4654991 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__46-50.png new file mode 100644 index 0000000..b4769e7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__51-55.png new file mode 100644 index 0000000..775f232 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__56-60.png new file mode 100644 index 0000000..ef3af4f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__61-65.png new file mode 100644 index 0000000..78082db Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__66.png new file mode 100644 index 0000000..04e284c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__67-70.png new file mode 100644 index 0000000..fce4b3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__71-75.png new file mode 100644 index 0000000..bf45e8f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__76-80.png new file mode 100644 index 0000000..193d6f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__81-85.png new file mode 100644 index 0000000..666739b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__86-90.png new file mode 100644 index 0000000..ac8f49b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__91-95.png new file mode 100644 index 0000000..5e9a2e9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__96-99.png new file mode 100644 index 0000000..a31b388 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__01-05.png new file mode 100644 index 0000000..ebf891a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__06-10.png new file mode 100644 index 0000000..3be0bf4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__100.png new file mode 100644 index 0000000..613fd77 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__11-15.png new file mode 100644 index 0000000..015e54d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__16-20.png new file mode 100644 index 0000000..acd5663 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__21-35.png new file mode 100644 index 0000000..d01c474 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__36-45.png new file mode 100644 index 0000000..196b3cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__46-50.png new file mode 100644 index 0000000..f174839 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__51-55.png new file mode 100644 index 0000000..4448840 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__56-60.png new file mode 100644 index 0000000..7437f77 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__61-65.png new file mode 100644 index 0000000..a8647db Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__66.png new file mode 100644 index 0000000..9cf3290 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__67-70.png new file mode 100644 index 0000000..da14b8b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__71-75.png new file mode 100644 index 0000000..dfa6cff Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__76-80.png new file mode 100644 index 0000000..786773e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__81-85.png new file mode 100644 index 0000000..6ccd44a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__86-90.png new file mode 100644 index 0000000..4f54112 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__91-95.png new file mode 100644 index 0000000..003ff3b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__96-99.png new file mode 100644 index 0000000..6608a48 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__01-05.png new file mode 100644 index 0000000..5e1dee2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__06-10.png new file mode 100644 index 0000000..83448c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__100.png new file mode 100644 index 0000000..823cf1e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__11-15.png new file mode 100644 index 0000000..94775c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__16-20.png new file mode 100644 index 0000000..f9959d8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__21-35.png new file mode 100644 index 0000000..74d2a8f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__36-45.png new file mode 100644 index 0000000..7065924 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__46-50.png new file mode 100644 index 0000000..1c64571 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__51-55.png new file mode 100644 index 0000000..307c39d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__56-60.png new file mode 100644 index 0000000..237cb07 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__61-65.png new file mode 100644 index 0000000..b57bda6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__66.png new file mode 100644 index 0000000..062c07c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__67-70.png new file mode 100644 index 0000000..aeb74e2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__71-75.png new file mode 100644 index 0000000..72c6445 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__76-80.png new file mode 100644 index 0000000..598e28e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__81-85.png new file mode 100644 index 0000000..cc3301e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__86-90.png new file mode 100644 index 0000000..bf84ac1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__91-95.png new file mode 100644 index 0000000..d7e581a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__96-99.png new file mode 100644 index 0000000..9c9fc73 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__01-05.png new file mode 100644 index 0000000..91a49ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__06-10.png new file mode 100644 index 0000000..239a1a4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__100.png new file mode 100644 index 0000000..833a59c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__11-15.png new file mode 100644 index 0000000..744b2ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__16-20.png new file mode 100644 index 0000000..2c21340 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__21-35.png new file mode 100644 index 0000000..92df5b8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__36-45.png new file mode 100644 index 0000000..087b202 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__46-50.png new file mode 100644 index 0000000..6dc8d2f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__51-55.png new file mode 100644 index 0000000..291fad0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__56-60.png new file mode 100644 index 0000000..98e4533 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__61-65.png new file mode 100644 index 0000000..bc2446f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__66.png new file mode 100644 index 0000000..d503809 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__67-70.png new file mode 100644 index 0000000..b67fb6f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__71-75.png new file mode 100644 index 0000000..9c9578f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__76-80.png new file mode 100644 index 0000000..3e62e09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__81-85.png new file mode 100644 index 0000000..a2fbd9a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__86-90.png new file mode 100644 index 0000000..dd10bfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__91-95.png new file mode 100644 index 0000000..c9c2124 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__96-99.png new file mode 100644 index 0000000..4052677 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/subdual/fragments.json new file mode 100644 index 0000000..847e3c0 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/subdual/fragments.json @@ -0,0 +1,3772 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 47, + "Width": 22, + "Height": 13, + "Text": "102", + "Confidence": null, + "CenterX": 58 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 80, + "Width": 111, + "Height": 9, + "Text": "Your concern for damaging foe", + "Confidence": null, + "CenterX": 135.5 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 80, + "Width": 45, + "Height": 9, + "Text": "hinders you.", + "Confidence": null, + "CenterX": 102.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 211, + "Width": 108, + "Height": 9, + "Text": "Your attempt is poorly planned.", + "Confidence": null, + "CenterX": 265 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 357, + "Width": 133, + "Height": 9, + "Text": "Your concern for foe is heart warming.", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 504, + "Width": 134, + "Height": 9, + "Text": "Nothing graceful about this attack. Foe", + "Confidence": null, + "CenterX": 571 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 504, + "Width": 73, + "Height": 9, + "Text": "does not even flinch.", + "Confidence": null, + "CenterX": 540.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 649, + "Width": 140, + "Height": 9, + "Text": "Strike to neck pinches a nerve. What did", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 104, + "Left": 649, + "Width": 124, + "Height": 9, + "Text": "you do to him? Foe is unconscious.", + "Confidence": null, + "CenterX": 711 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 188, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 334, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 627, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 634 + }, + { + "PageNumber": 1, + "Top": 125, + "Left": 778, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 149, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 80, + "Width": 72, + "Height": 9, + "Text": "You pull your punch.", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 211, + "Width": 123, + "Height": 9, + "Text": "You\u0027re being too delicate. Bust him!", + "Confidence": null, + "CenterX": 272.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 357, + "Width": 99, + "Height": 9, + "Text": "You will need to make a fist.", + "Confidence": null, + "CenterX": 406.5 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 504, + "Width": 84, + "Height": 9, + "Text": "Pow! Right in the kisser.", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 142, + "Left": 649, + "Width": 104, + "Height": 9, + "Text": "You simply hit foe in the face.", + "Confidence": null, + "CenterX": 701 + }, + { + "PageNumber": 1, + "Top": 162, + "Left": 188, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 162, + "Left": 334, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 162, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 162, + "Left": 627, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 634 + }, + { + "PageNumber": 1, + "Top": 162, + "Left": 778, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 34, + "Width": 36, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 80, + "Width": 95, + "Height": 9, + "Text": "Mishandle strike. Try again.", + "Confidence": null, + "CenterX": 127.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 211, + "Width": 124, + "Height": 9, + "Text": "Your strike lands on foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 273 + }, + { + "PageNumber": 1, + "Top": 190, + "Left": 211, + "Width": 80, + "Height": 9, + "Text": "Attack is of little profit.", + "Confidence": null, + "CenterX": 251 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 357, + "Width": 143, + "Height": 9, + "Text": "Blow to foe\u0027s chest. If foe is 2 feet tall or", + "Confidence": null, + "CenterX": 428.5 + }, + { + "PageNumber": 1, + "Top": 190, + "Left": 357, + "Width": 93, + "Height": 9, + "Text": "shorter, he is unconscious.", + "Confidence": null, + "CenterX": 403.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 504, + "Width": 129, + "Height": 9, + "Text": "Blow to foe\u0027s chest. If foe is 3 feet tall", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 190, + "Left": 504, + "Width": 103, + "Height": 9, + "Text": "or shorter, he is unconscious.", + "Confidence": null, + "CenterX": 555.5 + }, + { + "PageNumber": 1, + "Top": 180, + "Left": 649, + "Width": 127, + "Height": 9, + "Text": "Boom! Crash! Pow! Crack! It looked", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 190, + "Left": 649, + "Width": 39, + "Height": 9, + "Text": "impressive.", + "Confidence": null, + "CenterX": 668.5 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 188, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 334, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 627, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 634 + }, + { + "PageNumber": 1, + "Top": 209, + "Left": 778, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 785 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "Foe\u0027s guard comes up and blocks", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 237, + "Left": 80, + "Width": 46, + "Height": 9, + "Text": "your assault.", + "Confidence": null, + "CenterX": 103 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 211, + "Width": 130, + "Height": 9, + "Text": "You attempt to kick foe in groin. You", + "Confidence": null, + "CenterX": 276 + }, + { + "PageNumber": 1, + "Top": 237, + "Left": 211, + "Width": 105, + "Height": 9, + "Text": "miss, but the threat is enough.", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 357, + "Width": 119, + "Height": 9, + "Text": "Side strike unbalances foe. He will", + "Confidence": null, + "CenterX": 416.5 + }, + { + "PageNumber": 1, + "Top": 237, + "Left": 357, + "Width": 54, + "Height": 9, + "Text": "recover quickly.", + "Confidence": null, + "CenterX": 384 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 504, + "Width": 128, + "Height": 9, + "Text": "Blow to foe\u0027s side sends him reeling.", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 237, + "Left": 504, + "Width": 120, + "Height": 9, + "Text": "He recovers and gets his guard up.", + "Confidence": null, + "CenterX": 564 + }, + { + "PageNumber": 1, + "Top": 226, + "Left": 649, + "Width": 144, + "Height": 9, + "Text": "Strike to foe\u0027s side. Cheap shot, executed", + "Confidence": null, + "CenterX": 721 + }, + { + "PageNumber": 1, + "Top": 237, + "Left": 649, + "Width": 38, + "Height": 9, + "Text": "with grace.", + "Confidence": null, + "CenterX": 668 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 172, + "Width": 29, + "Height": 9, + "Text": "\u002B1H \u2013 \u03C0", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 318, + "Width": 29, + "Height": 9, + "Text": "\u002B2H \u2013 \u03C0", + "Confidence": null, + "CenterX": 332.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 465, + "Width": 29, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 479.5 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 581, + "Width": 60, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 257, + "Left": 748, + "Width": 45, + "Height": 9, + "Text": "\u002B3H \u2013 4(-25)", + "Confidence": null, + "CenterX": 770.5 + }, + { + "PageNumber": 1, + "Top": 286, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 274, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "Awkward positioning spoils your", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 80, + "Width": 23, + "Height": 9, + "Text": "strike.", + "Confidence": null, + "CenterX": 91.5 + }, + { + "PageNumber": 1, + "Top": 274, + "Left": 211, + "Width": 120, + "Height": 9, + "Text": "You miss foe\u0027s head and strike his", + "Confidence": null, + "CenterX": 271 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 211, + "Width": 95, + "Height": 9, + "Text": "shoulder. He is unbalanced.", + "Confidence": null, + "CenterX": 258.5 + }, + { + "PageNumber": 1, + "Top": 274, + "Left": 357, + "Width": 126, + "Height": 9, + "Text": "Chest strike. He almost falls, but foe", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 357, + "Width": 104, + "Height": 9, + "Text": "grabs you for balance. Ooops!", + "Confidence": null, + "CenterX": 409 + }, + { + "PageNumber": 1, + "Top": 274, + "Left": 504, + "Width": 135, + "Height": 9, + "Text": "You trip foe and slam his shin. Simple,", + "Confidence": null, + "CenterX": 571.5 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 504, + "Width": 43, + "Height": 9, + "Text": "yet effective.", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 274, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "Foe leaves himself open. Your strike hits", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 284, + "Left": 649, + "Width": 104, + "Height": 9, + "Text": "his side and breaks some ribs.", + "Confidence": null, + "CenterX": 701 + }, + { + "PageNumber": 1, + "Top": 305, + "Left": 172, + "Width": 29, + "Height": 9, + "Text": "\u002B1H \u2013 \u03C0", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 305, + "Left": 304, + "Width": 45, + "Height": 9, + "Text": "\u002B2H \u2013 2(-20)", + "Confidence": null, + "CenterX": 326.5 + }, + { + "PageNumber": 1, + "Top": 305, + "Left": 463, + "Width": 31, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 478.5 + }, + { + "PageNumber": 1, + "Top": 305, + "Left": 606, + "Width": 36, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 305, + "Left": 735, + "Width": 58, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 764 + }, + { + "PageNumber": 1, + "Top": 332, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 80, + "Width": 97, + "Height": 9, + "Text": "Move in close. You gain the", + "Confidence": null, + "CenterX": 128.5 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 80, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 116 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 211, + "Width": 127, + "Height": 9, + "Text": "Blow lands on foe\u0027s shield hand.You", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 211, + "Width": 62, + "Height": 9, + "Text": "gain the initiative.", + "Confidence": null, + "CenterX": 242 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 357, + "Width": 133, + "Height": 9, + "Text": "You entangle foe\u0027s legs, but he breaks", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 357, + "Width": 86, + "Height": 9, + "Text": "free. You push him clear.", + "Confidence": null, + "CenterX": 400 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 504, + "Width": 133, + "Height": 9, + "Text": "Step on foe\u0027s foot and try to push him", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 504, + "Width": 134, + "Height": 9, + "Text": "over. You gain the initiative next round.", + "Confidence": null, + "CenterX": 571 + }, + { + "PageNumber": 1, + "Top": 321, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "You experiment with a knee strike to foe.", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 331, + "Left": 649, + "Width": 92, + "Height": 9, + "Text": "It fails to be very effective.", + "Confidence": null, + "CenterX": 695 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 188, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 312, + "Width": 36, + "Height": 9, + "Text": "\u002B3H \u2013 (-5)", + "Confidence": null, + "CenterX": 330 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 429, + "Width": 66, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 3(-10)", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 597, + "Width": 45, + "Height": 9, + "Text": "\u002B3H \u2013 2(-25)", + "Confidence": null, + "CenterX": 619.5 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 757, + "Width": 36, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 775 + }, + { + "PageNumber": 1, + "Top": 380, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "Strike to foe\u0027s chest. He is having", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 80, + "Width": 47, + "Height": 9, + "Text": "some trouble.", + "Confidence": null, + "CenterX": 103.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 211, + "Width": 120, + "Height": 9, + "Text": "Back strike. Your position is better.", + "Confidence": null, + "CenterX": 271 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 211, + "Width": 100, + "Height": 9, + "Text": "Foe seeks to keep you at bay.", + "Confidence": null, + "CenterX": 261 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 357, + "Width": 137, + "Height": 9, + "Text": "Lower back strike sends foe reeling. He", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 357, + "Width": 118, + "Height": 9, + "Text": "needs another shot to the kidneys.", + "Confidence": null, + "CenterX": 416 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 504, + "Width": 139, + "Height": 9, + "Text": "Back strike adds insult to the injury. Foe", + "Confidence": null, + "CenterX": 573.5 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 504, + "Width": 87, + "Height": 9, + "Text": "spins around to face you.", + "Confidence": null, + "CenterX": 547.5 + }, + { + "PageNumber": 1, + "Top": 369, + "Left": 649, + "Width": 128, + "Height": 9, + "Text": "Hard shot to foe\u0027s side causes a pain", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 379, + "Left": 649, + "Width": 123, + "Height": 9, + "Text": "generated panic. His guard is down.", + "Confidence": null, + "CenterX": 710.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 157, + "Width": 45, + "Height": 9, + "Text": "\u002B2H \u2013 3(-10)", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 296, + "Width": 51, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211 \u2013 2\u03C0", + "Confidence": null, + "CenterX": 321.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 456, + "Width": 41, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 476.5 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 603, + "Width": 38, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 399, + "Left": 754, + "Width": 38, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 773 + }, + { + "PageNumber": 1, + "Top": 428, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 417, + "Left": 80, + "Width": 123, + "Height": 9, + "Text": "Stike falls on foe\u0027s leg. He shakes it", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 80, + "Width": 11, + "Height": 9, + "Text": "off.", + "Confidence": null, + "CenterX": 85.5 + }, + { + "PageNumber": 1, + "Top": 417, + "Left": 211, + "Width": 136, + "Height": 9, + "Text": "Your strike was less than you hoped. It", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 211, + "Width": 83, + "Height": 9, + "Text": "still disorients your foe.", + "Confidence": null, + "CenterX": 252.5 + }, + { + "PageNumber": 1, + "Top": 417, + "Left": 357, + "Width": 140, + "Height": 9, + "Text": "Hammer foe\u0027s thigh. Pain is in his eyes.", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 357, + "Width": 55, + "Height": 9, + "Text": "Bruise muscles.", + "Confidence": null, + "CenterX": 384.5 + }, + { + "PageNumber": 1, + "Top": 417, + "Left": 504, + "Width": 127, + "Height": 9, + "Text": "Chest strike causes deep bruise. Foe", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 504, + "Width": 101, + "Height": 9, + "Text": "grabs at the pain in his chest.", + "Confidence": null, + "CenterX": 554.5 + }, + { + "PageNumber": 1, + "Top": 417, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "Chest wound knocks foe down. He lands", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 427, + "Left": 649, + "Width": 138, + "Height": 9, + "Text": "on his back.. He looks to be recovering.", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 446, + "Left": 170, + "Width": 31, + "Height": 9, + "Text": "\u002B2H \u2013 \u2211", + "Confidence": null, + "CenterX": 185.5 + }, + { + "PageNumber": 1, + "Top": 446, + "Left": 317, + "Width": 34, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 334 + }, + { + "PageNumber": 1, + "Top": 446, + "Left": 430, + "Width": 65, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 446, + "Left": 603, + "Width": 38, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 622 + }, + { + "PageNumber": 1, + "Top": 446, + "Left": 723, + "Width": 69, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211\u220F \u2013 3(-10)", + "Confidence": null, + "CenterX": 757.5 + }, + { + "PageNumber": 1, + "Top": 481, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 463, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "Blow lightly strikes foe\u0027s head. He", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 473, + "Left": 80, + "Width": 112, + "Height": 9, + "Text": "puts you at bay with a masterful", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 483, + "Left": 80, + "Width": 16, + "Height": 9, + "Text": "turn.", + "Confidence": null, + "CenterX": 88 + }, + { + "PageNumber": 1, + "Top": 463, + "Left": 211, + "Width": 129, + "Height": 9, + "Text": "Shoulder strike lands lightly. You put", + "Confidence": null, + "CenterX": 275.5 + }, + { + "PageNumber": 1, + "Top": 473, + "Left": 211, + "Width": 127, + "Height": 9, + "Text": "more shove into it than strike. Foe is", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 483, + "Left": 211, + "Width": 97, + "Height": 9, + "Text": "frantic to regain his balance.", + "Confidence": null, + "CenterX": 259.5 + }, + { + "PageNumber": 1, + "Top": 463, + "Left": 357, + "Width": 137, + "Height": 9, + "Text": "Good strike. Foe has trouble getting his", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 473, + "Left": 357, + "Width": 128, + "Height": 9, + "Text": "act together. He stumbles around for", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 483, + "Left": 357, + "Width": 122, + "Height": 9, + "Text": "some time trying to defend himself.", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 463, + "Left": 504, + "Width": 141, + "Height": 9, + "Text": "Hard blow to foe\u0027s thigh. Foe falls down,", + "Confidence": null, + "CenterX": 574.5 + }, + { + "PageNumber": 1, + "Top": 473, + "Left": 504, + "Width": 140, + "Height": 9, + "Text": "but rebounds to his feet. You had hoped", + "Confidence": null, + "CenterX": 574 + }, + { + "PageNumber": 1, + "Top": 483, + "Left": 504, + "Width": 73, + "Height": 9, + "Text": "he would stay down.", + "Confidence": null, + "CenterX": 540.5 + }, + { + "PageNumber": 1, + "Top": 463, + "Left": 649, + "Width": 128, + "Height": 9, + "Text": "Solid and strong, you bash foe in his", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 473, + "Left": 649, + "Width": 129, + "Height": 9, + "Text": "stomach. He recoils 10 feet from you.", + "Confidence": null, + "CenterX": 713.5 + }, + { + "PageNumber": 1, + "Top": 483, + "Left": 649, + "Width": 72, + "Height": 9, + "Text": "He keeps his footing.", + "Confidence": null, + "CenterX": 685 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 157, + "Width": 45, + "Height": 9, + "Text": "\u002B3H \u2013 6(-10)", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 288, + "Width": 60, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "Confidence": null, + "CenterX": 318 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 426, + "Width": 68, + "Height": 9, + "Text": "\u002B4H \u2013 4\u2211\u03C0 \u2013 (-10)", + "Confidence": null, + "CenterX": 460 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 606, + "Width": 36, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 741, + "Width": 51, + "Height": 9, + "Text": "\u002B8H \u2013 3\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 766.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 80, + "Width": 120, + "Height": 9, + "Text": "Backhand to foe\u0027s side. He steps 5", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 80, + "Width": 106, + "Height": 9, + "Text": "feet to the right, avoiding your", + "Confidence": null, + "CenterX": 133 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 80, + "Width": 21, + "Height": 9, + "Text": "reach.", + "Confidence": null, + "CenterX": 90.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 211, + "Width": 139, + "Height": 9, + "Text": "Hard blow to foe\u0027s side. He is weakened", + "Confidence": null, + "CenterX": 280.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 211, + "Width": 106, + "Height": 9, + "Text": "by the pain. He doubles over in", + "Confidence": null, + "CenterX": 264 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 211, + "Width": 82, + "Height": 9, + "Text": "response to the assault.", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 357, + "Width": 137, + "Height": 9, + "Text": "You grip foe\u0027s arm and shake it until he", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 357, + "Width": 126, + "Height": 9, + "Text": "drops his weapon. Foe kicks himself", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 357, + "Width": 109, + "Height": 9, + "Text": "free. At least you disarmed him.", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 504, + "Width": 132, + "Height": 9, + "Text": "Catch foe in the middle of a swing. He", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 504, + "Width": 128, + "Height": 9, + "Text": "drops his weapon and grips his arm.", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 504, + "Width": 105, + "Height": 9, + "Text": "His forearm has a huge bruise.", + "Confidence": null, + "CenterX": 556.5 + }, + { + "PageNumber": 1, + "Top": 521, + "Left": 649, + "Width": 137, + "Height": 9, + "Text": "Solid and effective, your blow lands on", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 531, + "Left": 649, + "Width": 137, + "Height": 9, + "Text": "foe\u0027s neck. A nerve is pinched. Foe falls", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 541, + "Left": 649, + "Width": 86, + "Height": 9, + "Text": "unconscious for 3 hours.", + "Confidence": null, + "CenterX": 692 + }, + { + "PageNumber": 1, + "Top": 562, + "Left": 170, + "Width": 31, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 185.5 + }, + { + "PageNumber": 1, + "Top": 562, + "Left": 286, + "Width": 62, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 4(-30)", + "Confidence": null, + "CenterX": 317 + }, + { + "PageNumber": 1, + "Top": 562, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 562, + "Left": 571, + "Width": 70, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211\u220F \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 562, + "Left": 719, + "Width": 73, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 755.5 + }, + { + "PageNumber": 1, + "Top": 595, + "Left": 44, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 80, + "Width": 93, + "Height": 9, + "Text": "Classic shot between foe\u0027s", + "Confidence": null, + "CenterX": 126.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 80, + "Width": 90, + "Height": 9, + "Text": "shoulder blades. He hurts.", + "Confidence": null, + "CenterX": 125 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 211, + "Width": 136, + "Height": 9, + "Text": "Grab foe\u0027s weapon arm and force it the", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 211, + "Width": 131, + "Height": 9, + "Text": "wrong way. Foe is disarmed. Elbow is", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 598, + "Left": 211, + "Width": 32, + "Height": 9, + "Text": "strained.", + "Confidence": null, + "CenterX": 227 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 357, + "Width": 131, + "Height": 9, + "Text": "Bring foe down to his knees and slam", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 357, + "Width": 103, + "Height": 9, + "Text": "his head down. He is virtually", + "Confidence": null, + "CenterX": 408.5 + }, + { + "PageNumber": 1, + "Top": 598, + "Left": 357, + "Width": 129, + "Height": 9, + "Text": "unconscious. He is yours. Finish him.", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 504, + "Width": 133, + "Height": 9, + "Text": "Solid strike to foe\u0027s head. The strike is", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 504, + "Width": 136, + "Height": 9, + "Text": "enough to knock foe out. He falls down", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 598, + "Left": 504, + "Width": 68, + "Height": 9, + "Text": "and out for 6 hours.", + "Confidence": null, + "CenterX": 538 + }, + { + "PageNumber": 1, + "Top": 578, + "Left": 649, + "Width": 130, + "Height": 9, + "Text": "Brutal, but effective shot to foe\u0027s face.", + "Confidence": null, + "CenterX": 714 + }, + { + "PageNumber": 1, + "Top": 588, + "Left": 649, + "Width": 126, + "Height": 9, + "Text": "His head snaps back and then flops", + "Confidence": null, + "CenterX": 712 + }, + { + "PageNumber": 1, + "Top": 598, + "Left": 649, + "Width": 104, + "Height": 9, + "Text": "forward. He falls unconscious.", + "Confidence": null, + "CenterX": 701 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 128, + "Width": 73, + "Height": 9, + "Text": "\u002B9H \u2013 2\u2211\u220F \u2013 4(-10)", + "Confidence": null, + "CenterX": 164.5 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 275, + "Width": 73, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 413, + "Width": 82, + "Height": 9, + "Text": "\u002B12H \u2013 10\u2211\u220F \u2013 6(-80)", + "Confidence": null, + "CenterX": 454 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 601, + "Width": 40, + "Height": 9, + "Text": "\u002B15H \u2013 6\u2211", + "Confidence": null, + "CenterX": 621 + }, + { + "PageNumber": 1, + "Top": 618, + "Left": 748, + "Width": 47, + "Height": 9, + "Text": "\u002B24H \u2013 (-20)", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "Chest strike is solid. Knock the", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 80, + "Width": 119, + "Height": 9, + "Text": "wind out of your foe. He struggles", + "Confidence": null, + "CenterX": 139.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 80, + "Width": 31, + "Height": 9, + "Text": "to evade.", + "Confidence": null, + "CenterX": 95.5 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 211, + "Width": 135, + "Height": 9, + "Text": "Strong forearm assault drives foe back", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 211, + "Width": 127, + "Height": 9, + "Text": "off his footing. He slips down to one", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 211, + "Width": 20, + "Height": 9, + "Text": "knee.", + "Confidence": null, + "CenterX": 221 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 357, + "Width": 135, + "Height": 9, + "Text": "Strong blow to foe\u0027s chest breaks ribs.", + "Confidence": null, + "CenterX": 424.5 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 357, + "Width": 139, + "Height": 9, + "Text": "Your attack has little grace. Foe looks to", + "Confidence": null, + "CenterX": 426.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 357, + "Width": 52, + "Height": 9, + "Text": "be devastated.", + "Confidence": null, + "CenterX": 383 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 504, + "Width": 136, + "Height": 9, + "Text": "Smash foe\u0027s shoulder, breaking it. Arm", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 504, + "Width": 133, + "Height": 9, + "Text": "is useless. Foe struggles to stand. The", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 504, + "Width": 87, + "Height": 9, + "Text": "pain is too much for him.", + "Confidence": null, + "CenterX": 547.5 + }, + { + "PageNumber": 1, + "Top": 636, + "Left": 649, + "Width": 136, + "Height": 9, + "Text": "You attack lands unexpectedly on foe\u0027s", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 646, + "Left": 649, + "Width": 135, + "Height": 9, + "Text": "shoulder. It is fractured. Foe drops his", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 656, + "Left": 649, + "Width": 103, + "Height": 9, + "Text": "guard in response to the pain.", + "Confidence": null, + "CenterX": 700.5 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 157, + "Width": 45, + "Height": 9, + "Text": "\u002B3H \u2013 3(-20)", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 270, + "Width": 78, + "Height": 9, + "Text": "\u002B5H \u2013 4\u2211\u220F \u2013 4(-40)", + "Confidence": null, + "CenterX": 309 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 433, + "Width": 62, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 464 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 572, + "Width": 69, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F \u2013 (-35)", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 676, + "Left": 723, + "Width": 69, + "Height": 9, + "Text": "\u002B9H \u2013 2\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 757.5 + }, + { + "PageNumber": 1, + "Top": 706, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 80, + "Width": 121, + "Height": 9, + "Text": "Side strike damages a muscle. Foe", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 80, + "Width": 96, + "Height": 9, + "Text": "is disabled for the moment.", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 211, + "Width": 122, + "Height": 9, + "Text": "You try to kick foe off his feet. The", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 211, + "Width": 135, + "Height": 9, + "Text": "strike lands on foe\u0027s calf. Deep bruise.", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 357, + "Width": 132, + "Height": 9, + "Text": "You assault foe\u0027s foot. He is unable to", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 357, + "Width": 41, + "Height": 9, + "Text": "stand on it.", + "Confidence": null, + "CenterX": 377.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 504, + "Width": 139, + "Height": 9, + "Text": "Leg strike causes foe to fall and fracture", + "Confidence": null, + "CenterX": 573.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 504, + "Width": 27, + "Height": 9, + "Text": "his leg.", + "Confidence": null, + "CenterX": 517.5 + }, + { + "PageNumber": 1, + "Top": 694, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "Strike to foe\u0027s thigh causes him to fall.", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 649, + "Width": 102, + "Height": 9, + "Text": "Blow creates a terrible bruise.", + "Confidence": null, + "CenterX": 700 + }, + { + "PageNumber": 1, + "Top": 723, + "Left": 166, + "Width": 36, + "Height": 9, + "Text": "\u002B4H \u2013 2\u2211", + "Confidence": null, + "CenterX": 184 + }, + { + "PageNumber": 1, + "Top": 723, + "Left": 291, + "Width": 58, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 320 + }, + { + "PageNumber": 1, + "Top": 723, + "Left": 430, + "Width": 65, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 723, + "Left": 572, + "Width": 69, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-55)", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 723, + "Left": 723, + "Width": 69, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211\u220F \u2013 (-40)", + "Confidence": null, + "CenterX": 757.5 + }, + { + "PageNumber": 1, + "Top": 762, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 80, + "Width": 121, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm. If foe has", + "Confidence": null, + "CenterX": 140.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 80, + "Width": 96, + "Height": 9, + "Text": "a shield, it should check for", + "Confidence": null, + "CenterX": 128 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 80, + "Width": 33, + "Height": 9, + "Text": "breakage.", + "Confidence": null, + "CenterX": 96.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 211, + "Width": 140, + "Height": 9, + "Text": "Heavy handed attack. It looks like you\u0027re", + "Confidence": null, + "CenterX": 281 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 211, + "Width": 131, + "Height": 9, + "Text": "going for a kill. Foe avoids the worst.", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 211, + "Width": 85, + "Height": 9, + "Text": "Blow to foe\u0027s shield arm.", + "Confidence": null, + "CenterX": 253.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 357, + "Width": 128, + "Height": 9, + "Text": "Strike to foe\u0027s arm causes him to fall", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 357, + "Width": 132, + "Height": 9, + "Text": "with a fracture. You punch at his head", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 357, + "Width": 56, + "Height": 9, + "Text": "for added effect.", + "Confidence": null, + "CenterX": 385 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 504, + "Width": 116, + "Height": 9, + "Text": "Strong blow to foe\u0027s weapon arm", + "Confidence": null, + "CenterX": 562 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 504, + "Width": 136, + "Height": 9, + "Text": "disarms him and causes him to fall. He", + "Confidence": null, + "CenterX": 572 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 504, + "Width": 95, + "Height": 9, + "Text": "lands hard and breaks a rib.", + "Confidence": null, + "CenterX": 551.5 + }, + { + "PageNumber": 1, + "Top": 740, + "Left": 649, + "Width": 143, + "Height": 9, + "Text": "Fierce blow to foe\u0027s weapon arm disarms", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 751, + "Left": 649, + "Width": 139, + "Height": 9, + "Text": "him and sends him sprawling. You have", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 761, + "Left": 649, + "Width": 41, + "Height": 9, + "Text": "his weapon.", + "Confidence": null, + "CenterX": 669.5 + }, + { + "PageNumber": 1, + "Top": 781, + "Left": 115, + "Width": 86, + "Height": 9, + "Text": "with shield: \u002B8H \u2013 2(-20)", + "Confidence": null, + "CenterX": 158 + }, + { + "PageNumber": 1, + "Top": 791, + "Left": 119, + "Width": 82, + "Height": 9, + "Text": "w/o shield: \u002B4H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 160 + }, + { + "PageNumber": 1, + "Top": 791, + "Left": 275, + "Width": 73, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F \u2013 7(-10)", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 791, + "Left": 429, + "Width": 66, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211 \u2013 6(-30)", + "Confidence": null, + "CenterX": 462 + }, + { + "PageNumber": 1, + "Top": 791, + "Left": 580, + "Width": 62, + "Height": 9, + "Text": "\u002B7H \u2013 3\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 791, + "Left": 745, + "Width": 47, + "Height": 9, + "Text": "\u002B10H \u2013 4\u2211\u220F", + "Confidence": null, + "CenterX": 768.5 + }, + { + "PageNumber": 1, + "Top": 830, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 809, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "Strong grip and a shot to the side", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 80, + "Width": 123, + "Height": 9, + "Text": "make for an effective combination.", + "Confidence": null, + "CenterX": 141.5 + }, + { + "PageNumber": 1, + "Top": 829, + "Left": 80, + "Width": 101, + "Height": 9, + "Text": "Foe is disabled for an instant.", + "Confidence": null, + "CenterX": 130.5 + }, + { + "PageNumber": 1, + "Top": 809, + "Left": 211, + "Width": 131, + "Height": 9, + "Text": "Side strike knocks foe down. He pulls", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 211, + "Width": 133, + "Height": 9, + "Text": "you over with him. You fail to pummel", + "Confidence": null, + "CenterX": 277.5 + }, + { + "PageNumber": 1, + "Top": 829, + "Left": 211, + "Width": 134, + "Height": 9, + "Text": "him into submission. You have a great", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 839, + "Left": 211, + "Width": 30, + "Height": 9, + "Text": "position.", + "Confidence": null, + "CenterX": 226 + }, + { + "PageNumber": 1, + "Top": 809, + "Left": 357, + "Width": 139, + "Height": 9, + "Text": "Strong blow to foe\u0027s side. Foe drops his", + "Confidence": null, + "CenterX": 426.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 357, + "Width": 134, + "Height": 9, + "Text": "weapon to react to the pain. You move", + "Confidence": null, + "CenterX": 424 + }, + { + "PageNumber": 1, + "Top": 829, + "Left": 357, + "Width": 122, + "Height": 9, + "Text": "to block him from its recovery. Foe", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 839, + "Left": 357, + "Width": 110, + "Height": 9, + "Text": "gives ground with little concern.", + "Confidence": null, + "CenterX": 412 + }, + { + "PageNumber": 1, + "Top": 809, + "Left": 504, + "Width": 126, + "Height": 9, + "Text": "Strike to foe\u0027s side sends him to the", + "Confidence": null, + "CenterX": 567 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 504, + "Width": 131, + "Height": 9, + "Text": "ground. While falling, he fractures his", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 829, + "Left": 504, + "Width": 132, + "Height": 9, + "Text": "ankle. Foe goes unconscious from the", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 839, + "Left": 504, + "Width": 19, + "Height": 9, + "Text": "pain.", + "Confidence": null, + "CenterX": 513.5 + }, + { + "PageNumber": 1, + "Top": 809, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "Side strike knocks foe down. You hit him", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 649, + "Width": 121, + "Height": 9, + "Text": "in the face as he falls. In the fall, he", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 829, + "Left": 649, + "Width": 52, + "Height": 9, + "Text": "breaks his leg.", + "Confidence": null, + "CenterX": 675 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 135, + "Width": 66, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 168 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 285, + "Width": 63, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 316.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 459, + "Width": 36, + "Height": 9, + "Text": "\u002B6H \u2013 6\u2211", + "Confidence": null, + "CenterX": 477 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 572, + "Width": 69, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 606.5 + }, + { + "PageNumber": 1, + "Top": 859, + "Left": 719, + "Width": 73, + "Height": 9, + "Text": "\u002B10H \u2013 6\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 755.5 + }, + { + "PageNumber": 1, + "Top": 897, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 80, + "Width": 107, + "Height": 9, + "Text": "Your attack is part grapple and", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 80, + "Width": 113, + "Height": 9, + "Text": "sweep. You push foe off balance.", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 211, + "Width": 126, + "Height": 9, + "Text": "Hard strike to the back of foe\u0027s neck", + "Confidence": null, + "CenterX": 274 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 211, + "Width": 127, + "Height": 9, + "Text": "terminates foe\u0027s conscious thoughts.", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 211, + "Width": 117, + "Height": 9, + "Text": "He drops. Foe\u0027s shoulder blade is", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 211, + "Width": 28, + "Height": 9, + "Text": "bruised.", + "Confidence": null, + "CenterX": 225 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 357, + "Width": 132, + "Height": 9, + "Text": "Strong blow to foe\u0027s back knocks him", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 357, + "Width": 118, + "Height": 9, + "Text": "off his feet. Foe lands hard and is", + "Confidence": null, + "CenterX": 416 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 357, + "Width": 129, + "Height": 9, + "Text": "knocked out by the impact. You have", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 357, + "Width": 32, + "Height": 9, + "Text": "him now.", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 504, + "Width": 128, + "Height": 9, + "Text": "Blow to foe\u0027s back knocks him to the", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 504, + "Width": 131, + "Height": 9, + "Text": "ground. His weapon slides across the", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 504, + "Width": 114, + "Height": 9, + "Text": "floor. He hit very hard. Foe goes", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 504, + "Width": 90, + "Height": 9, + "Text": "unconscious for 5 rounds.", + "Confidence": null, + "CenterX": 549 + }, + { + "PageNumber": 1, + "Top": 875, + "Left": 649, + "Width": 118, + "Height": 9, + "Text": "Nasty blow to face. Foe is knocked", + "Confidence": null, + "CenterX": 708 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 649, + "Width": 146, + "Height": 9, + "Text": "down. Foe\u0027s lips curl up in a ball and froth", + "Confidence": null, + "CenterX": 722 + }, + { + "PageNumber": 1, + "Top": 896, + "Left": 649, + "Width": 115, + "Height": 9, + "Text": "comes out of his mouth. You are", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 649, + "Width": 118, + "Height": 9, + "Text": "frightened. Foe goes unconscious.", + "Confidence": null, + "CenterX": 708 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 159, + "Width": 43, + "Height": 9, + "Text": "\u002B6H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 180.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 308, + "Width": 40, + "Height": 9, + "Text": "\u002B8H \u2013 (-30)", + "Confidence": null, + "CenterX": 328 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 427, + "Width": 68, + "Height": 9, + "Text": "\u002B10H \u2013 6\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 597, + "Width": 45, + "Height": 9, + "Text": "\u002B12H \u2013 (-10)", + "Confidence": null, + "CenterX": 619.5 + }, + { + "PageNumber": 1, + "Top": 926, + "Left": 735, + "Width": 58, + "Height": 9, + "Text": "\u002B15H \u2013 \u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 764 + }, + { + "PageNumber": 1, + "Top": 965, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 80, + "Width": 120, + "Height": 9, + "Text": "Strike lands solid upon foe\u0027s neck.", + "Confidence": null, + "CenterX": 140 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 80, + "Width": 122, + "Height": 9, + "Text": "His neck is sprained. He falls down", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 80, + "Width": 97, + "Height": 9, + "Text": "and has difficulty getting up.", + "Confidence": null, + "CenterX": 128.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 211, + "Width": 125, + "Height": 9, + "Text": "Your knuckles go into foe\u0027s temples", + "Confidence": null, + "CenterX": 273.5 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 211, + "Width": 128, + "Height": 9, + "Text": "and cause a painful overload to foe\u0027s", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 211, + "Width": 129, + "Height": 9, + "Text": "brain. He falls gripping his head for 2", + "Confidence": null, + "CenterX": 275.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 211, + "Width": 82, + "Height": 9, + "Text": "rounds and passes out.", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 357, + "Width": 133, + "Height": 9, + "Text": "Overwhelming blow knocks foe down.", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 357, + "Width": 129, + "Height": 9, + "Text": "He fumbles his weapon and hits hard", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 357, + "Width": 100, + "Height": 9, + "Text": "trying to recover it. Foe goes", + "Confidence": null, + "CenterX": 407 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 357, + "Width": 82, + "Height": 9, + "Text": "unconscious on impact.", + "Confidence": null, + "CenterX": 398 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 504, + "Width": 140, + "Height": 9, + "Text": "Grip foe\u0027s arm and hold it, while striking", + "Confidence": null, + "CenterX": 574 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 504, + "Width": 99, + "Height": 9, + "Text": "him in the face until he goes", + "Confidence": null, + "CenterX": 553.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 504, + "Width": 139, + "Height": 9, + "Text": "unconscious. Foe is unconscious for 15", + "Confidence": null, + "CenterX": 573.5 + }, + { + "PageNumber": 1, + "Top": 974, + "Left": 504, + "Width": 26, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 517 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 649, + "Width": 145, + "Height": 9, + "Text": "Strike to shoulder breaks the collar bone.", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 954, + "Left": 649, + "Width": 139, + "Height": 9, + "Text": "Foe knocks himself out with a graceless", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 964, + "Left": 649, + "Width": 131, + "Height": 9, + "Text": "fall. You strike his head to make sure.", + "Confidence": null, + "CenterX": 714.5 + }, + { + "PageNumber": 1, + "Top": 994, + "Left": 132, + "Width": 69, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 994, + "Left": 282, + "Width": 66, + "Height": 9, + "Text": "\u002B10H \u2013 6\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 315 + }, + { + "PageNumber": 1, + "Top": 994, + "Left": 597, + "Width": 45, + "Height": 9, + "Text": "\u002B15H \u2013 (-20)", + "Confidence": null, + "CenterX": 619.5 + }, + { + "PageNumber": 1, + "Top": 994, + "Left": 774, + "Width": 18, + "Height": 9, + "Text": "\u002B17H", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 1034, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 80, + "Width": 119, + "Height": 9, + "Text": "Solid strike turns foe\u0027s head and it", + "Confidence": null, + "CenterX": 139.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 80, + "Width": 111, + "Height": 9, + "Text": "pinches a nerve in his neck. Foe", + "Confidence": null, + "CenterX": 135.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 80, + "Width": 112, + "Height": 9, + "Text": "falls over and goes unconscious.", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 211, + "Width": 135, + "Height": 9, + "Text": "Fracture foe\u0027s skull with a lucky strike.", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 211, + "Width": 137, + "Height": 9, + "Text": "Foe falls unconscious. The swelling will", + "Confidence": null, + "CenterX": 279.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 211, + "Width": 66, + "Height": 9, + "Text": "kill him in 2 hours.", + "Confidence": null, + "CenterX": 244 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 357, + "Width": 136, + "Height": 9, + "Text": "Blow lands on foe\u0027s forehead. His head", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 357, + "Width": 137, + "Height": 9, + "Text": "snaps back and he loses consciousnes.", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 357, + "Width": 134, + "Height": 9, + "Text": "He then drops hard on the ground and", + "Confidence": null, + "CenterX": 424 + }, + { + "PageNumber": 1, + "Top": 1042, + "Left": 357, + "Width": 48, + "Height": 9, + "Text": "hits his head.", + "Confidence": null, + "CenterX": 381 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 504, + "Width": 139, + "Height": 9, + "Text": "Strong blow to the abdomen causes foe", + "Confidence": null, + "CenterX": 573.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 504, + "Width": 131, + "Height": 9, + "Text": "to fall to the ground. He hits his head.", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 504, + "Width": 120, + "Height": 9, + "Text": "Foe goes into a coma for 1 month.", + "Confidence": null, + "CenterX": 564 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 649, + "Width": 135, + "Height": 9, + "Text": "Your haste to get the advantage makes", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 649, + "Width": 140, + "Height": 9, + "Text": "your attack deadly. You snap foe\u0027s neck.", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 1032, + "Left": 649, + "Width": 109, + "Height": 9, + "Text": "Foe falls and dies in 15 rounds.", + "Confidence": null, + "CenterX": 703.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 161, + "Width": 40, + "Height": 9, + "Text": "\u002B8H \u2013 (-30)", + "Confidence": null, + "CenterX": 181 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 275, + "Width": 73, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 311.5 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 433, + "Width": 62, + "Height": 9, + "Text": "\u002B10H \u2013 5\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 464 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 623, + "Width": 18, + "Height": 9, + "Text": "\u002B17H", + "Confidence": null, + "CenterX": 632 + }, + { + "PageNumber": 1, + "Top": 1061, + "Left": 774, + "Width": 18, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 783 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 40, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 1079, + "Left": 80, + "Width": 113, + "Height": 9, + "Text": "You pop foe on his head in what", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 80, + "Width": 100, + "Height": 9, + "Text": "looks like a playful strike. He", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "pauses 1 round, then passes out.", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 1079, + "Left": 211, + "Width": 132, + "Height": 9, + "Text": "Strong blow to foe\u0027s back knocks him", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 211, + "Width": 137, + "Height": 9, + "Text": "down and paralyzes him. Serious nerve", + "Confidence": null, + "CenterX": 279.5 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 211, + "Width": 99, + "Height": 9, + "Text": "damage. Foe is unconscious.", + "Confidence": null, + "CenterX": 260.5 + }, + { + "PageNumber": 1, + "Top": 1079, + "Left": 357, + "Width": 133, + "Height": 9, + "Text": "Severe chest strike. Foe falls, breaking", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 357, + "Width": 130, + "Height": 9, + "Text": "his arm and hitting his head. He goes", + "Confidence": null, + "CenterX": 422 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 357, + "Width": 84, + "Height": 9, + "Text": "into a coma for 2 weeks.", + "Confidence": null, + "CenterX": 399 + }, + { + "PageNumber": 1, + "Top": 1079, + "Left": 504, + "Width": 100, + "Height": 9, + "Text": "Pummel foe\u0027s head. He falls", + "Confidence": null, + "CenterX": 554 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 504, + "Width": 119, + "Height": 9, + "Text": "unconscious in a nice spot on the", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 504, + "Width": 27, + "Height": 9, + "Text": "ground.", + "Confidence": null, + "CenterX": 517.5 + }, + { + "PageNumber": 1, + "Top": 1079, + "Left": 649, + "Width": 138, + "Height": 9, + "Text": "Textbook subdual. You strike foe on his", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 1089, + "Left": 649, + "Width": 140, + "Height": 9, + "Text": "head. He settles to the ground in a silent", + "Confidence": null, + "CenterX": 719 + }, + { + "PageNumber": 1, + "Top": 1099, + "Left": 649, + "Width": 133, + "Height": 9, + "Text": "move. He is unconscious for 10 hours.", + "Confidence": null, + "CenterX": 715.5 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 188, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 195 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 304, + "Width": 45, + "Height": 9, + "Text": "\u002B15H \u2013 (-60)", + "Confidence": null, + "CenterX": 326.5 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 477, + "Width": 18, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 623, + "Width": 18, + "Height": 9, + "Text": "\u002B25H", + "Confidence": null, + "CenterX": 632 + }, + { + "PageNumber": 1, + "Top": 1119, + "Left": 774, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 221, + "Width": 383, + "Height": 13, + "Text": "4.9 subdual critical strike table", + "Confidence": null, + "CenterX": 412.5 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 135, + "Width": 12, + "Height": 12, + "Text": "A", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 271, + "Width": 12, + "Height": 12, + "Text": "b", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 418, + "Width": 14, + "Height": 12, + "Text": "c", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 563, + "Width": 16, + "Height": 12, + "Text": "d", + "Confidence": null, + "CenterX": 571 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 718, + "Width": 11, + "Height": 12, + "Text": "e", + "Confidence": null, + "CenterX": 723.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/subdual/pages/page-001.png new file mode 100644 index 0000000..37d6221 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/subdual/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/subdual/parsed-cells.json new file mode 100644 index 0000000..e28ab4e --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/subdual/parsed-cells.json @@ -0,0 +1,7280 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Your concern for damaging foe", + "hinders you.", + "\u002B0H" + ], + "BaseLines": [ + "Your concern for damaging foe", + "hinders you.", + "\u002B0H" + ], + "RawCellText": "Your concern for damaging foe\nhinders you.\n\u002B0H", + "DescriptionText": "Your concern for damaging foe hinders you.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 94, + "Width": 122, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 376, + "BoundsWidth": 488, + "BoundsHeight": 160, + "CropLeft": 272, + "CropTop": 344, + "CropWidth": 584, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "Your attempt is poorly planned.", + "\u002B0H" + ], + "BaseLines": [ + "Your attempt is poorly planned.", + "\u002B0H" + ], + "RawCellText": "Your attempt is poorly planned.\n\u002B0H", + "DescriptionText": "Your attempt is poorly planned.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 94, + "Width": 137, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 376, + "BoundsWidth": 548, + "BoundsHeight": 160, + "CropLeft": 796, + "CropTop": 344, + "CropWidth": 644, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Your concern for foe is heart warming.", + "\u002B0H" + ], + "BaseLines": [ + "Your concern for foe is heart warming.", + "\u002B0H" + ], + "RawCellText": "Your concern for foe is heart warming.\n\u002B0H", + "DescriptionText": "Your concern for foe is heart warming.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 94, + "Width": 138, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 376, + "BoundsWidth": 552, + "BoundsHeight": 160, + "CropLeft": 1380, + "CropTop": 344, + "CropWidth": 648, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Nothing graceful about this attack. Foe", + "does not even flinch.", + "\u002B1H" + ], + "BaseLines": [ + "Nothing graceful about this attack. Foe", + "does not even flinch.", + "\u002B1H" + ], + "RawCellText": "Nothing graceful about this attack. Foe\ndoes not even flinch.\n\u002B1H", + "DescriptionText": "Nothing graceful about this attack. Foe does not even flinch.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 94, + "Width": 137, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 376, + "BoundsWidth": 548, + "BoundsHeight": 160, + "CropLeft": 1968, + "CropTop": 344, + "CropWidth": 644, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "Strike to neck pinches a nerve. What did", + "you do to him? Foe is unconscious.", + "\u002B3H" + ], + "BaseLines": [ + "Strike to neck pinches a nerve. What did", + "you do to him? Foe is unconscious.", + "\u002B3H" + ], + "RawCellText": "Strike to neck pinches a nerve. What did\nyou do to him? Foe is unconscious.\n\u002B3H", + "DescriptionText": "Strike to neck pinches a nerve. What did you do to him? Foe is unconscious.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 94, + "Width": 143, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 376, + "BoundsWidth": 572, + "BoundsHeight": 160, + "CropLeft": 2548, + "CropTop": 344, + "CropWidth": 668, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "You pull your punch.", + "\u002B0H" + ], + "BaseLines": [ + "You pull your punch.", + "\u002B0H" + ], + "RawCellText": "You pull your punch.\n\u002B0H", + "DescriptionText": "You pull your punch.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 142, + "Width": 122, + "Height": 29 + }, + "SourceImagePath": "subdual/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 568, + "BoundsWidth": 488, + "BoundsHeight": 116, + "CropLeft": 272, + "CropTop": 536, + "CropWidth": 584, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "You\u0027re being too delicate. Bust him!", + "\u002B1H" + ], + "BaseLines": [ + "You\u0027re being too delicate. Bust him!", + "\u002B1H" + ], + "RawCellText": "You\u0027re being too delicate. Bust him!\n\u002B1H", + "DescriptionText": "You\u0027re being too delicate. Bust him!", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 142, + "Width": 137, + "Height": 29 + }, + "SourceImagePath": "subdual/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 568, + "BoundsWidth": 548, + "BoundsHeight": 116, + "CropLeft": 796, + "CropTop": 536, + "CropWidth": 644, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "You will need to make a fist.", + "\u002B1H" + ], + "BaseLines": [ + "You will need to make a fist.", + "\u002B1H" + ], + "RawCellText": "You will need to make a fist.\n\u002B1H", + "DescriptionText": "You will need to make a fist.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 142, + "Width": 138, + "Height": 29 + }, + "SourceImagePath": "subdual/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 568, + "BoundsWidth": 552, + "BoundsHeight": 116, + "CropLeft": 1380, + "CropTop": 536, + "CropWidth": 648, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Pow! Right in the kisser.", + "\u002B2H" + ], + "BaseLines": [ + "Pow! Right in the kisser.", + "\u002B2H" + ], + "RawCellText": "Pow! Right in the kisser.\n\u002B2H", + "DescriptionText": "Pow! Right in the kisser.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 142, + "Width": 137, + "Height": 29 + }, + "SourceImagePath": "subdual/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 568, + "BoundsWidth": 548, + "BoundsHeight": 116, + "CropLeft": 1968, + "CropTop": 536, + "CropWidth": 644, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "You simply hit foe in the face.", + "\u002B3H" + ], + "BaseLines": [ + "You simply hit foe in the face.", + "\u002B3H" + ], + "RawCellText": "You simply hit foe in the face.\n\u002B3H", + "DescriptionText": "You simply hit foe in the face.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 142, + "Width": 143, + "Height": 29 + }, + "SourceImagePath": "subdual/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 568, + "BoundsWidth": 572, + "BoundsHeight": 116, + "CropLeft": 2548, + "CropTop": 536, + "CropWidth": 668, + "CropHeight": 180, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Mishandle strike. Try again.", + "\u002B1H" + ], + "BaseLines": [ + "Mishandle strike. Try again.", + "\u002B1H" + ], + "RawCellText": "Mishandle strike. Try again.\n\u002B1H", + "DescriptionText": "Mishandle strike. Try again.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 180, + "Width": 122, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 720, + "BoundsWidth": 488, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 688, + "CropWidth": 584, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Your strike lands on foe\u0027s shoulder.", + "Attack is of little profit.", + "\u002B1H" + ], + "BaseLines": [ + "Your strike lands on foe\u0027s shoulder.", + "Attack is of little profit.", + "\u002B1H" + ], + "RawCellText": "Your strike lands on foe\u0027s shoulder.\nAttack is of little profit.\n\u002B1H", + "DescriptionText": "Your strike lands on foe\u0027s shoulder. Attack is of little profit.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 180, + "Width": 137, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 720, + "BoundsWidth": 548, + "BoundsHeight": 152, + "CropLeft": 796, + "CropTop": 688, + "CropWidth": 644, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Blow to foe\u0027s chest. If foe is 2 feet tall or", + "shorter, he is unconscious.", + "\u002B2H" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. If foe is 2 feet tall or", + "shorter, he is unconscious.", + "\u002B2H" + ], + "RawCellText": "Blow to foe\u0027s chest. If foe is 2 feet tall or\nshorter, he is unconscious.\n\u002B2H", + "DescriptionText": "Blow to foe\u0027s chest. If foe is 2 feet tall or shorter, he is unconscious.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 180, + "Width": 143, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 720, + "BoundsWidth": 572, + "BoundsHeight": 152, + "CropLeft": 1380, + "CropTop": 688, + "CropWidth": 668, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s chest. If foe is 3 feet tall", + "or shorter, he is unconscious.", + "\u002B3H" + ], + "BaseLines": [ + "Blow to foe\u0027s chest. If foe is 3 feet tall", + "or shorter, he is unconscious.", + "\u002B3H" + ], + "RawCellText": "Blow to foe\u0027s chest. If foe is 3 feet tall\nor shorter, he is unconscious.\n\u002B3H", + "DescriptionText": "Blow to foe\u0027s chest. If foe is 3 feet tall or shorter, he is unconscious.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 180, + "Width": 137, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 720, + "BoundsWidth": 548, + "BoundsHeight": 152, + "CropLeft": 1968, + "CropTop": 688, + "CropWidth": 644, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Boom! Crash! Pow! Crack! It looked", + "impressive.", + "\u002B3H" + ], + "BaseLines": [ + "Boom! Crash! Pow! Crack! It looked", + "impressive.", + "\u002B3H" + ], + "RawCellText": "Boom! Crash! Pow! Crack! It looked\nimpressive.\n\u002B3H", + "DescriptionText": "Boom! Crash! Pow! Crack! It looked impressive.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 180, + "Width": 143, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 720, + "BoundsWidth": 572, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 688, + "CropWidth": 668, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s guard comes up and blocks", + "your assault.", + "\u002B1H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe\u0027s guard comes up and blocks", + "your assault.", + "\u002B1H \u2013 \u03C0" + ], + "RawCellText": "Foe\u0027s guard comes up and blocks\nyour assault.\n\u002B1H \u2013 \u03C0", + "DescriptionText": "Foe\u0027s guard comes up and blocks your assault.", + "RawAffixText": "\u002B1H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 226, + "Width": 121, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 904, + "BoundsWidth": 484, + "BoundsHeight": 160, + "CropLeft": 272, + "CropTop": 872, + "CropWidth": 580, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "You attempt to kick foe in groin. You", + "miss, but the threat is enough.", + "\u002B2H \u2013 \u03C0" + ], + "BaseLines": [ + "You attempt to kick foe in groin. You", + "miss, but the threat is enough.", + "\u002B2H \u2013 \u03C0" + ], + "RawCellText": "You attempt to kick foe in groin. You\nmiss, but the threat is enough.\n\u002B2H \u2013 \u03C0", + "DescriptionText": "You attempt to kick foe in groin. You miss, but the threat is enough.", + "RawAffixText": "\u002B2H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 226, + "Width": 136, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 904, + "BoundsWidth": 544, + "BoundsHeight": 160, + "CropLeft": 796, + "CropTop": 872, + "CropWidth": 640, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Side strike unbalances foe. He will", + "recover quickly.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Side strike unbalances foe. He will", + "recover quickly.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Side strike unbalances foe. He will\nrecover quickly.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Side strike unbalances foe. He will recover quickly.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 226, + "Width": 137, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 904, + "BoundsWidth": 548, + "BoundsHeight": 160, + "CropLeft": 1380, + "CropTop": 872, + "CropWidth": 644, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s side sends him reeling.", + "He recovers and gets his guard up.", + "\u002B3H \u2013 \u03C0 \u2013 4(-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s side sends him reeling.", + "He recovers and gets his guard up.", + "\u002B3H \u2013 \u03C0 \u2013 4(-10)" + ], + "RawCellText": "Blow to foe\u0027s side sends him reeling.\nHe recovers and gets his guard up.\n\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "DescriptionText": "Blow to foe\u0027s side sends him reeling. He recovers and gets his guard up.", + "RawAffixText": "\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 226, + "Width": 137, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 904, + "BoundsWidth": 548, + "BoundsHeight": 160, + "CropLeft": 1968, + "CropTop": 872, + "CropWidth": 644, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s side. Cheap shot, executed", + "with grace.", + "\u002B3H \u2013 4(-25)" + ], + "BaseLines": [ + "Strike to foe\u0027s side. Cheap shot, executed", + "with grace.", + "\u002B3H \u2013 4(-25)" + ], + "RawCellText": "Strike to foe\u0027s side. Cheap shot, executed\nwith grace.\n\u002B3H \u2013 4(-25)", + "DescriptionText": "Strike to foe\u0027s side. Cheap shot, executed with grace.", + "RawAffixText": "\u002B3H \u2013 4(-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 226, + "Width": 144, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 904, + "BoundsWidth": 576, + "BoundsHeight": 160, + "CropLeft": 2548, + "CropTop": 872, + "CropWidth": 672, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Awkward positioning spoils your", + "strike.", + "\u002B1H \u2013 \u03C0" + ], + "BaseLines": [ + "Awkward positioning spoils your", + "strike.", + "\u002B1H \u2013 \u03C0" + ], + "RawCellText": "Awkward positioning spoils your\nstrike.\n\u002B1H \u2013 \u03C0", + "DescriptionText": "Awkward positioning spoils your strike.", + "RawAffixText": "\u002B1H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 274, + "Width": 121, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1096, + "BoundsWidth": 484, + "BoundsHeight": 160, + "CropLeft": 272, + "CropTop": 1064, + "CropWidth": 580, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "You miss foe\u0027s head and strike his", + "shoulder. He is unbalanced.", + "\u002B2H \u2013 2(-20)" + ], + "BaseLines": [ + "You miss foe\u0027s head and strike his", + "shoulder. He is unbalanced.", + "\u002B2H \u2013 2(-20)" + ], + "RawCellText": "You miss foe\u0027s head and strike his\nshoulder. He is unbalanced.\n\u002B2H \u2013 2(-20)", + "DescriptionText": "You miss foe\u0027s head and strike his shoulder. He is unbalanced.", + "RawAffixText": "\u002B2H \u2013 2(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 274, + "Width": 138, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 1096, + "BoundsWidth": 552, + "BoundsHeight": 160, + "CropLeft": 796, + "CropTop": 1064, + "CropWidth": 648, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Chest strike. He almost falls, but foe", + "grabs you for balance. Ooops!", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Chest strike. He almost falls, but foe", + "grabs you for balance. Ooops!", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Chest strike. He almost falls, but foe\ngrabs you for balance. Ooops!\n\u002B3H \u2013 \u2211", + "DescriptionText": "Chest strike. He almost falls, but foe grabs you for balance. Ooops!", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 274, + "Width": 137, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 1096, + "BoundsWidth": 548, + "BoundsHeight": 160, + "CropLeft": 1380, + "CropTop": 1064, + "CropWidth": 644, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "You trip foe and slam his shin. Simple,", + "yet effective.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "You trip foe and slam his shin. Simple,", + "yet effective.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "You trip foe and slam his shin. Simple,\nyet effective.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "You trip foe and slam his shin. Simple, yet effective.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 274, + "Width": 138, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 1096, + "BoundsWidth": 552, + "BoundsHeight": 160, + "CropLeft": 1968, + "CropTop": 1064, + "CropWidth": 648, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Foe leaves himself open. Your strike hits", + "his side and breaks some ribs.", + "\u002B3H \u2013 \u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Foe leaves himself open. Your strike hits", + "his side and breaks some ribs.", + "\u002B3H \u2013 \u2211 \u2013 (-10)" + ], + "RawCellText": "Foe leaves himself open. Your strike hits\nhis side and breaks some ribs.\n\u002B3H \u2013 \u2211 \u2013 (-10)", + "DescriptionText": "Foe leaves himself open. Your strike hits his side and breaks some ribs.", + "RawAffixText": "\u002B3H \u2013 \u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 274, + "Width": 144, + "Height": 40 + }, + "SourceImagePath": "subdual/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1096, + "BoundsWidth": 576, + "BoundsHeight": 160, + "CropLeft": 2548, + "CropTop": 1064, + "CropWidth": 672, + "CropHeight": 224, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Move in close. You gain the", + "initiative next round.", + "\u002B2H" + ], + "BaseLines": [ + "Move in close. You gain the", + "initiative next round.", + "\u002B2H" + ], + "RawCellText": "Move in close. You gain the\ninitiative next round.\n\u002B2H", + "DescriptionText": "Move in close. You gain the initiative next round.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 321, + "Width": 122, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1284, + "BoundsWidth": 488, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 1252, + "CropWidth": 584, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Blow lands on foe\u0027s shield hand.You", + "gain the initiative.", + "\u002B3H \u2013 (-5)" + ], + "BaseLines": [ + "Blow lands on foe\u0027s shield hand.You", + "gain the initiative.", + "\u002B3H \u2013 (-5)" + ], + "RawCellText": "Blow lands on foe\u0027s shield hand.You\ngain the initiative.\n\u002B3H \u2013 (-5)", + "DescriptionText": "Blow lands on foe\u0027s shield hand.You gain the initiative.", + "RawAffixText": "\u002B3H \u2013 (-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 321, + "Width": 137, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 1284, + "BoundsWidth": 548, + "BoundsHeight": 156, + "CropLeft": 796, + "CropTop": 1252, + "CropWidth": 644, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "You entangle foe\u0027s legs, but he breaks", + "free. You push him clear.", + "\u002B5H \u2013 3\u2211 \u2013 3(-10)" + ], + "BaseLines": [ + "You entangle foe\u0027s legs, but he breaks", + "free. You push him clear.", + "\u002B5H \u2013 3\u2211 \u2013 3(-10)" + ], + "RawCellText": "You entangle foe\u0027s legs, but he breaks\nfree. You push him clear.\n\u002B5H \u2013 3\u2211 \u2013 3(-10)", + "DescriptionText": "You entangle foe\u0027s legs, but he breaks free. You push him clear.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 3(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 321, + "Width": 138, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 1284, + "BoundsWidth": 552, + "BoundsHeight": 156, + "CropLeft": 1380, + "CropTop": 1252, + "CropWidth": 648, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Step on foe\u0027s foot and try to push him", + "over. You gain the initiative next round.", + "\u002B3H \u2013 2(-25)" + ], + "BaseLines": [ + "Step on foe\u0027s foot and try to push him", + "over. You gain the initiative next round.", + "\u002B3H \u2013 2(-25)" + ], + "RawCellText": "Step on foe\u0027s foot and try to push him\nover. You gain the initiative next round.\n\u002B3H \u2013 2(-25)", + "DescriptionText": "Step on foe\u0027s foot and try to push him over. You gain the initiative next round.", + "RawAffixText": "\u002B3H \u2013 2(-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 321, + "Width": 138, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 1284, + "BoundsWidth": 552, + "BoundsHeight": 156, + "CropLeft": 1968, + "CropTop": 1252, + "CropWidth": 648, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "You experiment with a knee strike to foe.", + "It fails to be very effective.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "You experiment with a knee strike to foe.", + "It fails to be very effective.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "You experiment with a knee strike to foe.\nIt fails to be very effective.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "You experiment with a knee strike to foe. It fails to be very effective.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 321, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1284, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2548, + "CropTop": 1252, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s chest. He is having", + "some trouble.", + "\u002B2H \u2013 3(-10)" + ], + "BaseLines": [ + "Strike to foe\u0027s chest. He is having", + "some trouble.", + "\u002B2H \u2013 3(-10)" + ], + "RawCellText": "Strike to foe\u0027s chest. He is having\nsome trouble.\n\u002B2H \u2013 3(-10)", + "DescriptionText": "Strike to foe\u0027s chest. He is having some trouble.", + "RawAffixText": "\u002B2H \u2013 3(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 369, + "Width": 122, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1476, + "BoundsWidth": 488, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 1444, + "CropWidth": 584, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Back strike. Your position is better.", + "Foe seeks to keep you at bay.", + "\u002B3H \u2013 \u2211 \u2013 2\u03C0" + ], + "BaseLines": [ + "Back strike. Your position is better.", + "Foe seeks to keep you at bay.", + "\u002B3H \u2013 \u2211 \u2013 2\u03C0" + ], + "RawCellText": "Back strike. Your position is better.\nFoe seeks to keep you at bay.\n\u002B3H \u2013 \u2211 \u2013 2\u03C0", + "DescriptionText": "Back strike. Your position is better. Foe seeks to keep you at bay.", + "RawAffixText": "\u002B3H \u2013 \u2211 \u2013 2\u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 369, + "Width": 136, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 1476, + "BoundsWidth": 544, + "BoundsHeight": 156, + "CropLeft": 796, + "CropTop": 1444, + "CropWidth": 640, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Lower back strike sends foe reeling. He", + "needs another shot to the kidneys.", + "\u002B5H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Lower back strike sends foe reeling. He", + "needs another shot to the kidneys.", + "\u002B5H \u2013 \u2211\u220F" + ], + "RawCellText": "Lower back strike sends foe reeling. He\nneeds another shot to the kidneys.\n\u002B5H \u2013 \u2211\u220F", + "DescriptionText": "Lower back strike sends foe reeling. He needs another shot to the kidneys.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 369, + "Width": 140, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 1476, + "BoundsWidth": 560, + "BoundsHeight": 156, + "CropLeft": 1380, + "CropTop": 1444, + "CropWidth": 656, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Back strike adds insult to the injury. Foe", + "spins around to face you.", + "\u002B3H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Back strike adds insult to the injury. Foe", + "spins around to face you.", + "\u002B3H \u2013 \u2211\u220F" + ], + "RawCellText": "Back strike adds insult to the injury. Foe\nspins around to face you.\n\u002B3H \u2013 \u2211\u220F", + "DescriptionText": "Back strike adds insult to the injury. Foe spins around to face you.", + "RawAffixText": "\u002B3H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 369, + "Width": 139, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 1476, + "BoundsWidth": 556, + "BoundsHeight": 156, + "CropLeft": 1968, + "CropTop": 1444, + "CropWidth": 652, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Hard shot to foe\u0027s side causes a pain", + "generated panic. His guard is down.", + "\u002B7H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Hard shot to foe\u0027s side causes a pain", + "generated panic. His guard is down.", + "\u002B7H \u2013 \u2211\u220F" + ], + "RawCellText": "Hard shot to foe\u0027s side causes a pain\ngenerated panic. His guard is down.\n\u002B7H \u2013 \u2211\u220F", + "DescriptionText": "Hard shot to foe\u0027s side causes a pain generated panic. His guard is down.", + "RawAffixText": "\u002B7H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 369, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1476, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2548, + "CropTop": 1444, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Stike falls on foe\u0027s leg. He shakes it", + "off.", + "\u002B2H \u2013 \u2211" + ], + "BaseLines": [ + "Stike falls on foe\u0027s leg. He shakes it", + "off.", + "\u002B2H \u2013 \u2211" + ], + "RawCellText": "Stike falls on foe\u0027s leg. He shakes it\noff.\n\u002B2H \u2013 \u2211", + "DescriptionText": "Stike falls on foe\u0027s leg. He shakes it off.", + "RawAffixText": "\u002B2H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 417, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1668, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 1636, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Your strike was less than you hoped. It", + "still disorients your foe.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Your strike was less than you hoped. It", + "still disorients your foe.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Your strike was less than you hoped. It\nstill disorients your foe.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Your strike was less than you hoped. It still disorients your foe.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 417, + "Width": 140, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 1668, + "BoundsWidth": 560, + "BoundsHeight": 152, + "CropLeft": 796, + "CropTop": 1636, + "CropWidth": 656, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Hammer foe\u0027s thigh. Pain is in his eyes.", + "Bruise muscles.", + "\u002B4H \u2013 \u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Hammer foe\u0027s thigh. Pain is in his eyes.", + "Bruise muscles.", + "\u002B4H \u2013 \u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Hammer foe\u0027s thigh. Pain is in his eyes.\nBruise muscles.\n\u002B4H \u2013 \u2211\u220F \u2013 (-10)", + "DescriptionText": "Hammer foe\u0027s thigh. Pain is in his eyes. Bruise muscles.", + "RawAffixText": "\u002B4H \u2013 \u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 417, + "Width": 140, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 1668, + "BoundsWidth": 560, + "BoundsHeight": 152, + "CropLeft": 1380, + "CropTop": 1636, + "CropWidth": 656, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Chest strike causes deep bruise. Foe", + "grabs at the pain in his chest.", + "\u002B5H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Chest strike causes deep bruise. Foe", + "grabs at the pain in his chest.", + "\u002B5H \u2013 \u2211\u220F" + ], + "RawCellText": "Chest strike causes deep bruise. Foe\ngrabs at the pain in his chest.\n\u002B5H \u2013 \u2211\u220F", + "DescriptionText": "Chest strike causes deep bruise. Foe grabs at the pain in his chest.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 417, + "Width": 137, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 1668, + "BoundsWidth": 548, + "BoundsHeight": 152, + "CropLeft": 1968, + "CropTop": 1636, + "CropWidth": 644, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Chest wound knocks foe down. He lands", + "on his back.. He looks to be recovering.", + "\u002B8H \u2013 \u2211\u220F \u2013 3(-10)" + ], + "BaseLines": [ + "Chest wound knocks foe down. He lands", + "on his back.. He looks to be recovering.", + "\u002B8H \u2013 \u2211\u220F \u2013 3(-10)" + ], + "RawCellText": "Chest wound knocks foe down. He lands\non his back.. He looks to be recovering.\n\u002B8H \u2013 \u2211\u220F \u2013 3(-10)", + "DescriptionText": "Chest wound knocks foe down. He lands on his back.. He looks to be recovering.", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F \u2013 3(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 417, + "Width": 143, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1668, + "BoundsWidth": 572, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 1636, + "CropWidth": 668, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Blow lightly strikes foe\u0027s head. He", + "puts you at bay with a masterful", + "turn.", + "\u002B3H \u2013 6(-10)" + ], + "BaseLines": [ + "Blow lightly strikes foe\u0027s head. He", + "puts you at bay with a masterful", + "turn.", + "\u002B3H \u2013 6(-10)" + ], + "RawCellText": "Blow lightly strikes foe\u0027s head. He\nputs you at bay with a masterful\nturn.\n\u002B3H \u2013 6(-10)", + "DescriptionText": "Blow lightly strikes foe\u0027s head. He puts you at bay with a masterful turn.", + "RawAffixText": "\u002B3H \u2013 6(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 463, + "Width": 122, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1852, + "BoundsWidth": 488, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 1820, + "CropWidth": 584, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Shoulder strike lands lightly. You put", + "more shove into it than strike. Foe is", + "frantic to regain his balance.", + "\u002B3H \u2013 \u03C0 \u2013 4(-10)" + ], + "BaseLines": [ + "Shoulder strike lands lightly. You put", + "more shove into it than strike. Foe is", + "frantic to regain his balance.", + "\u002B3H \u2013 \u03C0 \u2013 4(-10)" + ], + "RawCellText": "Shoulder strike lands lightly. You put\nmore shove into it than strike. Foe is\nfrantic to regain his balance.\n\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "DescriptionText": "Shoulder strike lands lightly. You put more shove into it than strike. Foe is frantic to regain his balance.", + "RawAffixText": "\u002B3H \u2013 \u03C0 \u2013 4(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 463, + "Width": 137, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 1852, + "BoundsWidth": 548, + "BoundsHeight": 200, + "CropLeft": 796, + "CropTop": 1820, + "CropWidth": 644, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Good strike. Foe has trouble getting his", + "act together. He stumbles around for", + "some time trying to defend himself.", + "\u002B4H \u2013 4\u2211\u03C0 \u2013 (-10)" + ], + "BaseLines": [ + "Good strike. Foe has trouble getting his", + "act together. He stumbles around for", + "some time trying to defend himself.", + "\u002B4H \u2013 4\u2211\u03C0 \u2013 (-10)" + ], + "RawCellText": "Good strike. Foe has trouble getting his\nact together. He stumbles around for\nsome time trying to defend himself.\n\u002B4H \u2013 4\u2211\u03C0 \u2013 (-10)", + "DescriptionText": "Good strike. Foe has trouble getting his act together. He stumbles around for some time trying to defend himself.", + "RawAffixText": "\u002B4H \u2013 4\u2211\u03C0 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u03C0" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 463, + "Width": 137, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 1852, + "BoundsWidth": 548, + "BoundsHeight": 200, + "CropLeft": 1380, + "CropTop": 1820, + "CropWidth": 644, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Hard blow to foe\u0027s thigh. Foe falls down,", + "but rebounds to his feet. You had hoped", + "he would stay down.", + "\u002B5H \u2013 2\u2211" + ], + "BaseLines": [ + "Hard blow to foe\u0027s thigh. Foe falls down,", + "but rebounds to his feet. You had hoped", + "he would stay down.", + "\u002B5H \u2013 2\u2211" + ], + "RawCellText": "Hard blow to foe\u0027s thigh. Foe falls down,\nbut rebounds to his feet. You had hoped\nhe would stay down.\n\u002B5H \u2013 2\u2211", + "DescriptionText": "Hard blow to foe\u0027s thigh. Foe falls down, but rebounds to his feet. You had hoped he would stay down.", + "RawAffixText": "\u002B5H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 463, + "Width": 141, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 1852, + "BoundsWidth": 564, + "BoundsHeight": 200, + "CropLeft": 1968, + "CropTop": 1820, + "CropWidth": 660, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Solid and strong, you bash foe in his", + "stomach. He recoils 10 feet from you.", + "He keeps his footing.", + "\u002B8H \u2013 3\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Solid and strong, you bash foe in his", + "stomach. He recoils 10 feet from you.", + "He keeps his footing.", + "\u002B8H \u2013 3\u2211 \u2013 \u220F" + ], + "RawCellText": "Solid and strong, you bash foe in his\nstomach. He recoils 10 feet from you.\nHe keeps his footing.\n\u002B8H \u2013 3\u2211 \u2013 \u220F", + "DescriptionText": "Solid and strong, you bash foe in his stomach. He recoils 10 feet from you. He keeps his footing.", + "RawAffixText": "\u002B8H \u2013 3\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 463, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1852, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2548, + "CropTop": 1820, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Backhand to foe\u0027s side. He steps 5", + "feet to the right, avoiding your", + "reach.", + "\u002B3H \u2013 \u2211" + ], + "BaseLines": [ + "Backhand to foe\u0027s side. He steps 5", + "feet to the right, avoiding your", + "reach.", + "\u002B3H \u2013 \u2211" + ], + "RawCellText": "Backhand to foe\u0027s side. He steps 5\nfeet to the right, avoiding your\nreach.\n\u002B3H \u2013 \u2211", + "DescriptionText": "Backhand to foe\u0027s side. He steps 5 feet to the right, avoiding your reach.", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 521, + "Width": 121, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2084, + "BoundsWidth": 484, + "BoundsHeight": 200, + "CropLeft": 272, + "CropTop": 2052, + "CropWidth": 580, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Hard blow to foe\u0027s side. He is weakened", + "by the pain. He doubles over in", + "response to the assault.", + "\u002B6H \u2013 \u2211 \u2013 4(-30)" + ], + "BaseLines": [ + "Hard blow to foe\u0027s side. He is weakened", + "by the pain. He doubles over in", + "response to the assault.", + "\u002B6H \u2013 \u2211 \u2013 4(-30)" + ], + "RawCellText": "Hard blow to foe\u0027s side. He is weakened\nby the pain. He doubles over in\nresponse to the assault.\n\u002B6H \u2013 \u2211 \u2013 4(-30)", + "DescriptionText": "Hard blow to foe\u0027s side. He is weakened by the pain. He doubles over in response to the assault.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 4(-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 521, + "Width": 139, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 2084, + "BoundsWidth": 556, + "BoundsHeight": 200, + "CropLeft": 796, + "CropTop": 2052, + "CropWidth": 652, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "You grip foe\u0027s arm and shake it until he", + "drops his weapon. Foe kicks himself", + "free. At least you disarmed him.", + "\u002B1H" + ], + "BaseLines": [ + "You grip foe\u0027s arm and shake it until he", + "drops his weapon. Foe kicks himself", + "free. At least you disarmed him.", + "\u002B1H" + ], + "RawCellText": "You grip foe\u0027s arm and shake it until he\ndrops his weapon. Foe kicks himself\nfree. At least you disarmed him.\n\u002B1H", + "DescriptionText": "You grip foe\u0027s arm and shake it until he drops his weapon. Foe kicks himself free. At least you disarmed him.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 521, + "Width": 138, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 2084, + "BoundsWidth": 552, + "BoundsHeight": 200, + "CropLeft": 1380, + "CropTop": 2052, + "CropWidth": 648, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Catch foe in the middle of a swing. He", + "drops his weapon and grips his arm.", + "His forearm has a huge bruise.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (\u002B20)" + ], + "BaseLines": [ + "Catch foe in the middle of a swing. He", + "drops his weapon and grips his arm.", + "His forearm has a huge bruise.", + "\u002B5H \u2013 2\u2211\u220F \u2013 (\u002B20)" + ], + "RawCellText": "Catch foe in the middle of a swing. He\ndrops his weapon and grips his arm.\nHis forearm has a huge bruise.\n\u002B5H \u2013 2\u2211\u220F \u2013 (\u002B20)", + "DescriptionText": "Catch foe in the middle of a swing. He drops his weapon and grips his arm. His forearm has a huge bruise.", + "RawAffixText": "\u002B5H \u2013 2\u2211\u220F \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 521, + "Width": 137, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 2084, + "BoundsWidth": 548, + "BoundsHeight": 200, + "CropLeft": 1968, + "CropTop": 2052, + "CropWidth": 644, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Solid and effective, your blow lands on", + "foe\u0027s neck. A nerve is pinched. Foe falls", + "unconscious for 3 hours.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Solid and effective, your blow lands on", + "foe\u0027s neck. A nerve is pinched. Foe falls", + "unconscious for 3 hours.", + "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Solid and effective, your blow lands on\nfoe\u0027s neck. A nerve is pinched. Foe falls\nunconscious for 3 hours.\n\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Solid and effective, your blow lands on foe\u0027s neck. A nerve is pinched. Foe falls unconscious for 3 hours.", + "RawAffixText": "\u002B10H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 521, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "subdual/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2084, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2548, + "CropTop": 2052, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Classic shot between foe\u0027s", + "shoulder blades. He hurts.", + "\u002B9H \u2013 2\u2211\u220F \u2013 4(-10)" + ], + "BaseLines": [ + "Classic shot between foe\u0027s", + "shoulder blades. He hurts.", + "\u002B9H \u2013 2\u2211\u220F \u2013 4(-10)" + ], + "RawCellText": "Classic shot between foe\u0027s\nshoulder blades. He hurts.\n\u002B9H \u2013 2\u2211\u220F \u2013 4(-10)", + "DescriptionText": "Classic shot between foe\u0027s shoulder blades. He hurts.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F \u2013 4(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 578, + "Width": 121, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2312, + "BoundsWidth": 484, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 2280, + "CropWidth": 580, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Grab foe\u0027s weapon arm and force it the", + "wrong way. Foe is disarmed. Elbow is", + "strained.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Grab foe\u0027s weapon arm and force it the", + "wrong way. Foe is disarmed. Elbow is", + "strained.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Grab foe\u0027s weapon arm and force it the\nwrong way. Foe is disarmed. Elbow is\nstrained.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Grab foe\u0027s weapon arm and force it the wrong way. Foe is disarmed. Elbow is strained.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 578, + "Width": 137, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 2312, + "BoundsWidth": 548, + "BoundsHeight": 196, + "CropLeft": 796, + "CropTop": 2280, + "CropWidth": 644, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Bring foe down to his knees and slam", + "his head down. He is virtually", + "unconscious. He is yours. Finish him.", + "\u002B12H \u2013 10\u2211\u220F \u2013 6(-80)" + ], + "BaseLines": [ + "Bring foe down to his knees and slam", + "his head down. He is virtually", + "unconscious. He is yours. Finish him.", + "\u002B12H \u2013 10\u2211\u220F \u2013 6(-80)" + ], + "RawCellText": "Bring foe down to his knees and slam\nhis head down. He is virtually\nunconscious. He is yours. Finish him.\n\u002B12H \u2013 10\u2211\u220F \u2013 6(-80)", + "DescriptionText": "Bring foe down to his knees and slam his head down. He is virtually unconscious. He is yours. Finish him.", + "RawAffixText": "\u002B12H \u2013 10\u2211\u220F \u2013 6(-80)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 10, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -80, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-80)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 578, + "Width": 138, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 2312, + "BoundsWidth": 552, + "BoundsHeight": 196, + "CropLeft": 1380, + "CropTop": 2280, + "CropWidth": 648, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Solid strike to foe\u0027s head. The strike is", + "enough to knock foe out. He falls down", + "and out for 6 hours.", + "\u002B15H \u2013 6\u2211" + ], + "BaseLines": [ + "Solid strike to foe\u0027s head. The strike is", + "enough to knock foe out. He falls down", + "and out for 6 hours.", + "\u002B15H \u2013 6\u2211" + ], + "RawCellText": "Solid strike to foe\u0027s head. The strike is\nenough to knock foe out. He falls down\nand out for 6 hours.\n\u002B15H \u2013 6\u2211", + "DescriptionText": "Solid strike to foe\u0027s head. The strike is enough to knock foe out. He falls down and out for 6 hours.", + "RawAffixText": "\u002B15H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 578, + "Width": 137, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 2312, + "BoundsWidth": 548, + "BoundsHeight": 196, + "CropLeft": 1968, + "CropTop": 2280, + "CropWidth": 644, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Brutal, but effective shot to foe\u0027s face.", + "His head snaps back and then flops", + "forward. He falls unconscious.", + "\u002B24H \u2013 (-20)" + ], + "BaseLines": [ + "Brutal, but effective shot to foe\u0027s face.", + "His head snaps back and then flops", + "forward. He falls unconscious.", + "\u002B24H \u2013 (-20)" + ], + "RawCellText": "Brutal, but effective shot to foe\u0027s face.\nHis head snaps back and then flops\nforward. He falls unconscious.\n\u002B24H \u2013 (-20)", + "DescriptionText": "Brutal, but effective shot to foe\u0027s face. His head snaps back and then flops forward. He falls unconscious.", + "RawAffixText": "\u002B24H \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 578, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2312, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 2548, + "CropTop": 2280, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Chest strike is solid. Knock the", + "wind out of your foe. He struggles", + "to evade.", + "\u002B3H \u2013 3(-20)" + ], + "BaseLines": [ + "Chest strike is solid. Knock the", + "wind out of your foe. He struggles", + "to evade.", + "\u002B3H \u2013 3(-20)" + ], + "RawCellText": "Chest strike is solid. Knock the\nwind out of your foe. He struggles\nto evade.\n\u002B3H \u2013 3(-20)", + "DescriptionText": "Chest strike is solid. Knock the wind out of your foe. He struggles to evade.", + "RawAffixText": "\u002B3H \u2013 3(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 636, + "Width": 122, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2544, + "BoundsWidth": 488, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 2512, + "CropWidth": 584, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Strong forearm assault drives foe back", + "off his footing. He slips down to one", + "knee.", + "\u002B5H \u2013 4\u2211\u220F \u2013 4(-40)" + ], + "BaseLines": [ + "Strong forearm assault drives foe back", + "off his footing. He slips down to one", + "knee.", + "\u002B5H \u2013 4\u2211\u220F \u2013 4(-40)" + ], + "RawCellText": "Strong forearm assault drives foe back\noff his footing. He slips down to one\nknee.\n\u002B5H \u2013 4\u2211\u220F \u2013 4(-40)", + "DescriptionText": "Strong forearm assault drives foe back off his footing. He slips down to one knee.", + "RawAffixText": "\u002B5H \u2013 4\u2211\u220F \u2013 4(-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 636, + "Width": 137, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 2544, + "BoundsWidth": 548, + "BoundsHeight": 196, + "CropLeft": 796, + "CropTop": 2512, + "CropWidth": 644, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strong blow to foe\u0027s chest breaks ribs.", + "Your attack has little grace. Foe looks to", + "be devastated.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s chest breaks ribs.", + "Your attack has little grace. Foe looks to", + "be devastated.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "Strong blow to foe\u0027s chest breaks ribs.\nYour attack has little grace. Foe looks to\nbe devastated.\n\u002B5H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "Strong blow to foe\u0027s chest breaks ribs. Your attack has little grace. Foe looks to be devastated.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 636, + "Width": 139, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 2544, + "BoundsWidth": 556, + "BoundsHeight": 196, + "CropLeft": 1380, + "CropTop": 2512, + "CropWidth": 652, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Smash foe\u0027s shoulder, breaking it. Arm", + "is useless. Foe struggles to stand. The", + "pain is too much for him.", + "\u002B6H \u2013 2\u2211\u220F \u2013 (-35)" + ], + "BaseLines": [ + "Smash foe\u0027s shoulder, breaking it. Arm", + "is useless. Foe struggles to stand. The", + "pain is too much for him.", + "\u002B6H \u2013 2\u2211\u220F \u2013 (-35)" + ], + "RawCellText": "Smash foe\u0027s shoulder, breaking it. Arm\nis useless. Foe struggles to stand. The\npain is too much for him.\n\u002B6H \u2013 2\u2211\u220F \u2013 (-35)", + "DescriptionText": "Smash foe\u0027s shoulder, breaking it. Arm is useless. Foe struggles to stand. The pain is too much for him.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F \u2013 (-35)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -35, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-35)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 636, + "Width": 137, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 2544, + "BoundsWidth": 548, + "BoundsHeight": 196, + "CropLeft": 1968, + "CropTop": 2512, + "CropWidth": 644, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "You attack lands unexpectedly on foe\u0027s", + "shoulder. It is fractured. Foe drops his", + "guard in response to the pain.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "You attack lands unexpectedly on foe\u0027s", + "shoulder. It is fractured. Foe drops his", + "guard in response to the pain.", + "\u002B9H \u2013 2\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "You attack lands unexpectedly on foe\u0027s\nshoulder. It is fractured. Foe drops his\nguard in response to the pain.\n\u002B9H \u2013 2\u2211\u220F \u2013 (-30)", + "DescriptionText": "You attack lands unexpectedly on foe\u0027s shoulder. It is fractured. Foe drops his guard in response to the pain.", + "RawAffixText": "\u002B9H \u2013 2\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 636, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2544, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2548, + "CropTop": 2512, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Side strike damages a muscle. Foe", + "is disabled for the moment.", + "\u002B4H \u2013 2\u2211" + ], + "BaseLines": [ + "Side strike damages a muscle. Foe", + "is disabled for the moment.", + "\u002B4H \u2013 2\u2211" + ], + "RawCellText": "Side strike damages a muscle. Foe\nis disabled for the moment.\n\u002B4H \u2013 2\u2211", + "DescriptionText": "Side strike damages a muscle. Foe is disabled for the moment.", + "RawAffixText": "\u002B4H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 694, + "Width": 122, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2776, + "BoundsWidth": 488, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 2744, + "CropWidth": 584, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "You try to kick foe off his feet. The", + "strike lands on foe\u0027s calf. Deep bruise.", + "\u002B5H \u2013 \u2211 \u2013 (-30)" + ], + "BaseLines": [ + "You try to kick foe off his feet. The", + "strike lands on foe\u0027s calf. Deep bruise.", + "\u002B5H \u2013 \u2211 \u2013 (-30)" + ], + "RawCellText": "You try to kick foe off his feet. The\nstrike lands on foe\u0027s calf. Deep bruise.\n\u002B5H \u2013 \u2211 \u2013 (-30)", + "DescriptionText": "You try to kick foe off his feet. The strike lands on foe\u0027s calf. Deep bruise.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 694, + "Width": 138, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 2776, + "BoundsWidth": 552, + "BoundsHeight": 152, + "CropLeft": 796, + "CropTop": 2744, + "CropWidth": 648, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "You assault foe\u0027s foot. He is unable to", + "stand on it.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "You assault foe\u0027s foot. He is unable to", + "stand on it.", + "\u002B5H \u2013 \u2211\u220F \u2013 (-20)" + ], + "RawCellText": "You assault foe\u0027s foot. He is unable to\nstand on it.\n\u002B5H \u2013 \u2211\u220F \u2013 (-20)", + "DescriptionText": "You assault foe\u0027s foot. He is unable to stand on it.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 694, + "Width": 138, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 2776, + "BoundsWidth": 552, + "BoundsHeight": 152, + "CropLeft": 1380, + "CropTop": 2744, + "CropWidth": 648, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Leg strike causes foe to fall and fracture", + "his leg.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-55)" + ], + "BaseLines": [ + "Leg strike causes foe to fall and fracture", + "his leg.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-55)" + ], + "RawCellText": "Leg strike causes foe to fall and fracture\nhis leg.\n\u002B10H \u2013 \u2211\u220F \u2013 (-55)", + "DescriptionText": "Leg strike causes foe to fall and fracture his leg.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-55)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -55, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-55)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 694, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 2776, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1968, + "CropTop": 2744, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s thigh causes him to fall.", + "Blow creates a terrible bruise.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-40)" + ], + "BaseLines": [ + "Strike to foe\u0027s thigh causes him to fall.", + "Blow creates a terrible bruise.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-40)" + ], + "RawCellText": "Strike to foe\u0027s thigh causes him to fall.\nBlow creates a terrible bruise.\n\u002B9H \u2013 3\u2211\u220F \u2013 (-40)", + "DescriptionText": "Strike to foe\u0027s thigh causes him to fall. Blow creates a terrible bruise.", + "RawAffixText": "\u002B9H \u2013 3\u2211\u220F \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 694, + "Width": 143, + "Height": 38 + }, + "SourceImagePath": "subdual/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2776, + "BoundsWidth": 572, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 2744, + "CropWidth": 668, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s shield arm. If foe has", + "a shield, it should check for", + "breakage.", + "with shield: \u002B8H \u2013 2(-20)", + "w/o shield: \u002B4H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Blow to foe\u0027s shield arm. If foe has", + "a shield, it should check for", + "breakage." + ], + "RawCellText": "Blow to foe\u0027s shield arm. If foe has\na shield, it should check for\nbreakage.", + "DescriptionText": "Blow to foe\u0027s shield arm. If foe has a shield, it should check for breakage.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_shield", + "ConditionText": "with shield", + "RawText": "with shield: \u002B8H \u2013 2(-20)", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_shield", + "ConditionText": "w/o shield", + "RawText": "w/o shield: \u002B4H \u2013 2\u2211\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B4H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 740, + "Width": 121, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2960, + "BoundsWidth": 484, + "BoundsHeight": 240, + "CropLeft": 272, + "CropTop": 2928, + "CropWidth": 580, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Heavy handed attack. It looks like you\u0027re", + "going for a kill. Foe avoids the worst.", + "Blow to foe\u0027s shield arm.", + "\u002B6H \u2013 2\u2211\u220F \u2013 7(-10)" + ], + "BaseLines": [ + "Heavy handed attack. It looks like you\u0027re", + "going for a kill. Foe avoids the worst.", + "Blow to foe\u0027s shield arm.", + "\u002B6H \u2013 2\u2211\u220F \u2013 7(-10)" + ], + "RawCellText": "Heavy handed attack. It looks like you\u0027re\ngoing for a kill. Foe avoids the worst.\nBlow to foe\u0027s shield arm.\n\u002B6H \u2013 2\u2211\u220F \u2013 7(-10)", + "DescriptionText": "Heavy handed attack. It looks like you\u0027re going for a kill. Foe avoids the worst. Blow to foe\u0027s shield arm.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F \u2013 7(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 740, + "Width": 140, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 2960, + "BoundsWidth": 560, + "BoundsHeight": 240, + "CropLeft": 796, + "CropTop": 2928, + "CropWidth": 656, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s arm causes him to fall", + "with a fracture. You punch at his head", + "for added effect.", + "\u002B6H \u2013 3\u2211 \u2013 6(-30)" + ], + "BaseLines": [ + "Strike to foe\u0027s arm causes him to fall", + "with a fracture. You punch at his head", + "for added effect.", + "\u002B6H \u2013 3\u2211 \u2013 6(-30)" + ], + "RawCellText": "Strike to foe\u0027s arm causes him to fall\nwith a fracture. You punch at his head\nfor added effect.\n\u002B6H \u2013 3\u2211 \u2013 6(-30)", + "DescriptionText": "Strike to foe\u0027s arm causes him to fall with a fracture. You punch at his head for added effect.", + "RawAffixText": "\u002B6H \u2013 3\u2211 \u2013 6(-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 740, + "Width": 138, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 2960, + "BoundsWidth": 552, + "BoundsHeight": 240, + "CropLeft": 1380, + "CropTop": 2928, + "CropWidth": 648, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Strong blow to foe\u0027s weapon arm", + "disarms him and causes him to fall. He", + "lands hard and breaks a rib.", + "\u002B7H \u2013 3\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s weapon arm", + "disarms him and causes him to fall. He", + "lands hard and breaks a rib.", + "\u002B7H \u2013 3\u2211 \u2013 (-25)" + ], + "RawCellText": "Strong blow to foe\u0027s weapon arm\ndisarms him and causes him to fall. He\nlands hard and breaks a rib.\n\u002B7H \u2013 3\u2211 \u2013 (-25)", + "DescriptionText": "Strong blow to foe\u0027s weapon arm disarms him and causes him to fall. He lands hard and breaks a rib.", + "RawAffixText": "\u002B7H \u2013 3\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 740, + "Width": 138, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 2960, + "BoundsWidth": 552, + "BoundsHeight": 240, + "CropLeft": 1968, + "CropTop": 2928, + "CropWidth": 648, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Fierce blow to foe\u0027s weapon arm disarms", + "him and sends him sprawling. You have", + "his weapon.", + "\u002B10H \u2013 4\u2211\u220F" + ], + "BaseLines": [ + "Fierce blow to foe\u0027s weapon arm disarms", + "him and sends him sprawling. You have", + "his weapon.", + "\u002B10H \u2013 4\u2211\u220F" + ], + "RawCellText": "Fierce blow to foe\u0027s weapon arm disarms\nhim and sends him sprawling. You have\nhis weapon.\n\u002B10H \u2013 4\u2211\u220F", + "DescriptionText": "Fierce blow to foe\u0027s weapon arm disarms him and sends him sprawling. You have his weapon.", + "RawAffixText": "\u002B10H \u2013 4\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 740, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2960, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 2548, + "CropTop": 2928, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Strong grip and a shot to the side", + "make for an effective combination.", + "Foe is disabled for an instant.", + "\u002B5H \u2013 \u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Strong grip and a shot to the side", + "make for an effective combination.", + "Foe is disabled for an instant.", + "\u002B5H \u2013 \u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Strong grip and a shot to the side\nmake for an effective combination.\nFoe is disabled for an instant.\n\u002B5H \u2013 \u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Strong grip and a shot to the side make for an effective combination. Foe is disabled for an instant.", + "RawAffixText": "\u002B5H \u2013 \u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 809, + "Width": 123, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3236, + "BoundsWidth": 492, + "BoundsHeight": 236, + "CropLeft": 272, + "CropTop": 3204, + "CropWidth": 588, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Side strike knocks foe down. He pulls", + "you over with him. You fail to pummel", + "him into submission. You have a great", + "position.", + "\u002B6H \u2013 3\u2211 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Side strike knocks foe down. He pulls", + "you over with him. You fail to pummel", + "him into submission. You have a great", + "position.", + "\u002B6H \u2013 3\u2211 \u2013 (\u002B10)" + ], + "RawCellText": "Side strike knocks foe down. He pulls\nyou over with him. You fail to pummel\nhim into submission. You have a great\nposition.\n\u002B6H \u2013 3\u2211 \u2013 (\u002B10)", + "DescriptionText": "Side strike knocks foe down. He pulls you over with him. You fail to pummel him into submission. You have a great position.", + "RawAffixText": "\u002B6H \u2013 3\u2211 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 809, + "Width": 137, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 3236, + "BoundsWidth": 548, + "BoundsHeight": 236, + "CropLeft": 796, + "CropTop": 3204, + "CropWidth": 644, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Strong blow to foe\u0027s side. Foe drops his", + "weapon to react to the pain. You move", + "to block him from its recovery. Foe", + "gives ground with little concern.", + "\u002B6H \u2013 6\u2211" + ], + "BaseLines": [ + "Strong blow to foe\u0027s side. Foe drops his", + "weapon to react to the pain. You move", + "to block him from its recovery. Foe", + "gives ground with little concern.", + "\u002B6H \u2013 6\u2211" + ], + "RawCellText": "Strong blow to foe\u0027s side. Foe drops his\nweapon to react to the pain. You move\nto block him from its recovery. Foe\ngives ground with little concern.\n\u002B6H \u2013 6\u2211", + "DescriptionText": "Strong blow to foe\u0027s side. Foe drops his weapon to react to the pain. You move to block him from its recovery. Foe gives ground with little concern.", + "RawAffixText": "\u002B6H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 809, + "Width": 139, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 3236, + "BoundsWidth": 556, + "BoundsHeight": 236, + "CropLeft": 1380, + "CropTop": 3204, + "CropWidth": 652, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s side sends him to the", + "ground. While falling, he fractures his", + "ankle. Foe goes unconscious from the", + "pain.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Strike to foe\u0027s side sends him to the", + "ground. While falling, he fractures his", + "ankle. Foe goes unconscious from the", + "pain.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Strike to foe\u0027s side sends him to the\nground. While falling, he fractures his\nankle. Foe goes unconscious from the\npain.\n\u002B7H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Strike to foe\u0027s side sends him to the ground. While falling, he fractures his ankle. Foe goes unconscious from the pain.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 809, + "Width": 137, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 3236, + "BoundsWidth": 548, + "BoundsHeight": 236, + "CropLeft": 1968, + "CropTop": 3204, + "CropWidth": 644, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Side strike knocks foe down. You hit him", + "in the face as he falls. In the fall, he", + "breaks his leg.", + "\u002B10H \u2013 6\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Side strike knocks foe down. You hit him", + "in the face as he falls. In the fall, he", + "breaks his leg.", + "\u002B10H \u2013 6\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Side strike knocks foe down. You hit him\nin the face as he falls. In the fall, he\nbreaks his leg.\n\u002B10H \u2013 6\u2211\u220F \u2013 (-50)", + "DescriptionText": "Side strike knocks foe down. You hit him in the face as he falls. In the fall, he breaks his leg.", + "RawAffixText": "\u002B10H \u2013 6\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 809, + "Width": 143, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3236, + "BoundsWidth": 572, + "BoundsHeight": 236, + "CropLeft": 2548, + "CropTop": 3204, + "CropWidth": 668, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Your attack is part grapple and", + "sweep. You push foe off balance.", + "\u002B6H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Your attack is part grapple and", + "sweep. You push foe off balance.", + "\u002B6H \u2013 3\u2211\u220F" + ], + "RawCellText": "Your attack is part grapple and\nsweep. You push foe off balance.\n\u002B6H \u2013 3\u2211\u220F", + "DescriptionText": "Your attack is part grapple and sweep. You push foe off balance.", + "RawAffixText": "\u002B6H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 875, + "Width": 122, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3500, + "BoundsWidth": 488, + "BoundsHeight": 240, + "CropLeft": 272, + "CropTop": 3468, + "CropWidth": 584, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Hard strike to the back of foe\u0027s neck", + "terminates foe\u0027s conscious thoughts.", + "He drops. Foe\u0027s shoulder blade is", + "bruised.", + "\u002B8H \u2013 (-30)" + ], + "BaseLines": [ + "Hard strike to the back of foe\u0027s neck", + "terminates foe\u0027s conscious thoughts.", + "He drops. Foe\u0027s shoulder blade is", + "bruised.", + "\u002B8H \u2013 (-30)" + ], + "RawCellText": "Hard strike to the back of foe\u0027s neck\nterminates foe\u0027s conscious thoughts.\nHe drops. Foe\u0027s shoulder blade is\nbruised.\n\u002B8H \u2013 (-30)", + "DescriptionText": "Hard strike to the back of foe\u0027s neck terminates foe\u0027s conscious thoughts. He drops. Foe\u0027s shoulder blade is bruised.", + "RawAffixText": "\u002B8H \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 875, + "Width": 137, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 3500, + "BoundsWidth": 548, + "BoundsHeight": 240, + "CropLeft": 796, + "CropTop": 3468, + "CropWidth": 644, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Strong blow to foe\u0027s back knocks him", + "off his feet. Foe lands hard and is", + "knocked out by the impact. You have", + "him now.", + "\u002B10H \u2013 6\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s back knocks him", + "off his feet. Foe lands hard and is", + "knocked out by the impact. You have", + "him now.", + "\u002B10H \u2013 6\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "Strong blow to foe\u0027s back knocks him\noff his feet. Foe lands hard and is\nknocked out by the impact. You have\nhim now.\n\u002B10H \u2013 6\u2211 \u2013 (\u002B20)", + "DescriptionText": "Strong blow to foe\u0027s back knocks him off his feet. Foe lands hard and is knocked out by the impact. You have him now.", + "RawAffixText": "\u002B10H \u2013 6\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 875, + "Width": 138, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 3500, + "BoundsWidth": 552, + "BoundsHeight": 240, + "CropLeft": 1380, + "CropTop": 3468, + "CropWidth": 648, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s back knocks him to the", + "ground. His weapon slides across the", + "floor. He hit very hard. Foe goes", + "unconscious for 5 rounds.", + "\u002B12H \u2013 (-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s back knocks him to the", + "ground. His weapon slides across the", + "floor. He hit very hard. Foe goes", + "unconscious for 5 rounds.", + "\u002B12H \u2013 (-10)" + ], + "RawCellText": "Blow to foe\u0027s back knocks him to the\nground. His weapon slides across the\nfloor. He hit very hard. Foe goes\nunconscious for 5 rounds.\n\u002B12H \u2013 (-10)", + "DescriptionText": "Blow to foe\u0027s back knocks him to the ground. His weapon slides across the floor. He hit very hard. Foe goes unconscious for 5 rounds.", + "RawAffixText": "\u002B12H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 875, + "Width": 138, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 3500, + "BoundsWidth": 552, + "BoundsHeight": 240, + "CropLeft": 1968, + "CropTop": 3468, + "CropWidth": 648, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Nasty blow to face. Foe is knocked", + "down. Foe\u0027s lips curl up in a ball and froth", + "comes out of his mouth. You are", + "frightened. Foe goes unconscious.", + "\u002B15H \u2013 \u222B \u2013 (-30)" + ], + "BaseLines": [ + "Nasty blow to face. Foe is knocked", + "down. Foe\u0027s lips curl up in a ball and froth", + "comes out of his mouth. You are", + "frightened. Foe goes unconscious.", + "\u002B15H \u2013 \u222B \u2013 (-30)" + ], + "RawCellText": "Nasty blow to face. Foe is knocked\ndown. Foe\u0027s lips curl up in a ball and froth\ncomes out of his mouth. You are\nfrightened. Foe goes unconscious.\n\u002B15H \u2013 \u222B \u2013 (-30)", + "DescriptionText": "Nasty blow to face. Foe is knocked down. Foe\u0027s lips curl up in a ball and froth comes out of his mouth. You are frightened. Foe goes unconscious.", + "RawAffixText": "\u002B15H \u2013 \u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 875, + "Width": 146, + "Height": 60 + }, + "SourceImagePath": "subdual/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3500, + "BoundsWidth": 584, + "BoundsHeight": 240, + "CropLeft": 2548, + "CropTop": 3468, + "CropWidth": 680, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Strike lands solid upon foe\u0027s neck.", + "His neck is sprained. He falls down", + "and has difficulty getting up.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Strike lands solid upon foe\u0027s neck.", + "His neck is sprained. He falls down", + "and has difficulty getting up.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Strike lands solid upon foe\u0027s neck.\nHis neck is sprained. He falls down\nand has difficulty getting up.\n\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Strike lands solid upon foe\u0027s neck. His neck is sprained. He falls down and has difficulty getting up.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 944, + "Width": 122, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3776, + "BoundsWidth": 488, + "BoundsHeight": 236, + "CropLeft": 272, + "CropTop": 3744, + "CropWidth": 584, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Your knuckles go into foe\u0027s temples", + "and cause a painful overload to foe\u0027s", + "brain. He falls gripping his head for 2", + "rounds and passes out.", + "\u002B10H \u2013 6\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Your knuckles go into foe\u0027s temples", + "and cause a painful overload to foe\u0027s", + "brain. He falls gripping his head for 2", + "rounds and passes out.", + "\u002B10H \u2013 6\u2211 \u2013 (-30)" + ], + "RawCellText": "Your knuckles go into foe\u0027s temples\nand cause a painful overload to foe\u0027s\nbrain. He falls gripping his head for 2\nrounds and passes out.\n\u002B10H \u2013 6\u2211 \u2013 (-30)", + "DescriptionText": "Your knuckles go into foe\u0027s temples and cause a painful overload to foe\u0027s brain. He falls gripping his head for 2 rounds and passes out.", + "RawAffixText": "\u002B10H \u2013 6\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 944, + "Width": 137, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 3776, + "BoundsWidth": 548, + "BoundsHeight": 236, + "CropLeft": 796, + "CropTop": 3744, + "CropWidth": 644, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Overwhelming blow knocks foe down.", + "He fumbles his weapon and hits hard", + "trying to recover it. Foe goes", + "unconscious on impact." + ], + "BaseLines": [ + "Overwhelming blow knocks foe down.", + "He fumbles his weapon and hits hard", + "trying to recover it. Foe goes", + "unconscious on impact." + ], + "RawCellText": "Overwhelming blow knocks foe down.\nHe fumbles his weapon and hits hard\ntrying to recover it. Foe goes\nunconscious on impact.", + "DescriptionText": "Overwhelming blow knocks foe down. He fumbles his weapon and hits hard trying to recover it. Foe goes unconscious on impact.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 944, + "Width": 133, + "Height": 39 + }, + "SourceImagePath": "subdual/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 3776, + "BoundsWidth": 532, + "BoundsHeight": 156, + "CropLeft": 1380, + "CropTop": 3744, + "CropWidth": 628, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Grip foe\u0027s arm and hold it, while striking", + "him in the face until he goes", + "unconscious. Foe is unconscious for 15", + "rounds.", + "\u002B15H \u2013 (-20)" + ], + "BaseLines": [ + "Grip foe\u0027s arm and hold it, while striking", + "him in the face until he goes", + "unconscious. Foe is unconscious for 15", + "rounds.", + "\u002B15H \u2013 (-20)" + ], + "RawCellText": "Grip foe\u0027s arm and hold it, while striking\nhim in the face until he goes\nunconscious. Foe is unconscious for 15\nrounds.\n\u002B15H \u2013 (-20)", + "DescriptionText": "Grip foe\u0027s arm and hold it, while striking him in the face until he goes unconscious. Foe is unconscious for 15 rounds.", + "RawAffixText": "\u002B15H \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 944, + "Width": 140, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 3776, + "BoundsWidth": 560, + "BoundsHeight": 236, + "CropLeft": 1968, + "CropTop": 3744, + "CropWidth": 656, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Strike to shoulder breaks the collar bone.", + "Foe knocks himself out with a graceless", + "fall. You strike his head to make sure.", + "\u002B17H" + ], + "BaseLines": [ + "Strike to shoulder breaks the collar bone.", + "Foe knocks himself out with a graceless", + "fall. You strike his head to make sure.", + "\u002B17H" + ], + "RawCellText": "Strike to shoulder breaks the collar bone.\nFoe knocks himself out with a graceless\nfall. You strike his head to make sure.\n\u002B17H", + "DescriptionText": "Strike to shoulder breaks the collar bone. Foe knocks himself out with a graceless fall. You strike his head to make sure.", + "RawAffixText": "\u002B17H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 17, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B17H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 944, + "Width": 145, + "Height": 59 + }, + "SourceImagePath": "subdual/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3776, + "BoundsWidth": 580, + "BoundsHeight": 236, + "CropLeft": 2548, + "CropTop": 3744, + "CropWidth": 676, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Solid strike turns foe\u0027s head and it", + "pinches a nerve in his neck. Foe", + "falls over and goes unconscious.", + "\u002B8H \u2013 (-30)" + ], + "BaseLines": [ + "Solid strike turns foe\u0027s head and it", + "pinches a nerve in his neck. Foe", + "falls over and goes unconscious.", + "\u002B8H \u2013 (-30)" + ], + "RawCellText": "Solid strike turns foe\u0027s head and it\npinches a nerve in his neck. Foe\nfalls over and goes unconscious.\n\u002B8H \u2013 (-30)", + "DescriptionText": "Solid strike turns foe\u0027s head and it pinches a nerve in his neck. Foe falls over and goes unconscious.", + "RawAffixText": "\u002B8H \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 1012, + "Width": 121, + "Height": 58 + }, + "SourceImagePath": "subdual/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 4048, + "BoundsWidth": 484, + "BoundsHeight": 232, + "CropLeft": 272, + "CropTop": 4016, + "CropWidth": 580, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Fracture foe\u0027s skull with a lucky strike.", + "Foe falls unconscious. The swelling will", + "kill him in 2 hours.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Fracture foe\u0027s skull with a lucky strike.", + "Foe falls unconscious. The swelling will", + "kill him in 2 hours.", + "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Fracture foe\u0027s skull with a lucky strike.\nFoe falls unconscious. The swelling will\nkill him in 2 hours.\n\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Fracture foe\u0027s skull with a lucky strike. Foe falls unconscious. The swelling will kill him in 2 hours.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 1012, + "Width": 137, + "Height": 58 + }, + "SourceImagePath": "subdual/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 4048, + "BoundsWidth": 548, + "BoundsHeight": 232, + "CropLeft": 796, + "CropTop": 4016, + "CropWidth": 644, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Blow lands on foe\u0027s forehead. His head", + "snaps back and he loses consciousnes.", + "He then drops hard on the ground and", + "hits his head.", + "\u002B10H \u2013 5\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Blow lands on foe\u0027s forehead. His head", + "snaps back and he loses consciousnes.", + "He then drops hard on the ground and", + "hits his head.", + "\u002B10H \u2013 5\u222B \u2013 (-40)" + ], + "RawCellText": "Blow lands on foe\u0027s forehead. His head\nsnaps back and he loses consciousnes.\nHe then drops hard on the ground and\nhits his head.\n\u002B10H \u2013 5\u222B \u2013 (-40)", + "DescriptionText": "Blow lands on foe\u0027s forehead. His head snaps back and he loses consciousnes. He then drops hard on the ground and hits his head.", + "RawAffixText": "\u002B10H \u2013 5\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 1012, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "subdual/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 4048, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 1380, + "CropTop": 4016, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Strong blow to the abdomen causes foe", + "to fall to the ground. He hits his head.", + "Foe goes into a coma for 1 month.", + "\u002B17H" + ], + "BaseLines": [ + "Strong blow to the abdomen causes foe", + "to fall to the ground. He hits his head.", + "Foe goes into a coma for 1 month.", + "\u002B17H" + ], + "RawCellText": "Strong blow to the abdomen causes foe\nto fall to the ground. He hits his head.\nFoe goes into a coma for 1 month.\n\u002B17H", + "DescriptionText": "Strong blow to the abdomen causes foe to fall to the ground. He hits his head. Foe goes into a coma for 1 month.", + "RawAffixText": "\u002B17H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 17, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B17H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 1012, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "subdual/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 4048, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1968, + "CropTop": 4016, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Your haste to get the advantage makes", + "your attack deadly. You snap foe\u0027s neck.", + "Foe falls and dies in 15 rounds.", + "\u002B25H" + ], + "BaseLines": [ + "Your haste to get the advantage makes", + "your attack deadly. You snap foe\u0027s neck.", + "Foe falls and dies in 15 rounds.", + "\u002B25H" + ], + "RawCellText": "Your haste to get the advantage makes\nyour attack deadly. You snap foe\u0027s neck.\nFoe falls and dies in 15 rounds.\n\u002B25H", + "DescriptionText": "Your haste to get the advantage makes your attack deadly. You snap foe\u0027s neck. Foe falls and dies in 15 rounds.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 1012, + "Width": 143, + "Height": 58 + }, + "SourceImagePath": "subdual/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 4048, + "BoundsWidth": 572, + "BoundsHeight": 232, + "CropLeft": 2548, + "CropTop": 4016, + "CropWidth": 668, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "You pop foe on his head in what", + "looks like a playful strike. He", + "pauses 1 round, then passes out.", + "\u002B5H" + ], + "BaseLines": [ + "You pop foe on his head in what", + "looks like a playful strike. He", + "pauses 1 round, then passes out.", + "\u002B5H" + ], + "RawCellText": "You pop foe on his head in what\nlooks like a playful strike. He\npauses 1 round, then passes out.\n\u002B5H", + "DescriptionText": "You pop foe on his head in what looks like a playful strike. He pauses 1 round, then passes out.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 1079, + "Width": 122, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 4316, + "BoundsWidth": 488, + "BoundsHeight": 196, + "CropLeft": 272, + "CropTop": 4284, + "CropWidth": 584, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Strong blow to foe\u0027s back knocks him", + "down and paralyzes him. Serious nerve", + "damage. Foe is unconscious.", + "\u002B15H \u2013 (-60)" + ], + "BaseLines": [ + "Strong blow to foe\u0027s back knocks him", + "down and paralyzes him. Serious nerve", + "damage. Foe is unconscious.", + "\u002B15H \u2013 (-60)" + ], + "RawCellText": "Strong blow to foe\u0027s back knocks him\ndown and paralyzes him. Serious nerve\ndamage. Foe is unconscious.\n\u002B15H \u2013 (-60)", + "DescriptionText": "Strong blow to foe\u0027s back knocks him down and paralyzes him. Serious nerve damage. Foe is unconscious.", + "RawAffixText": "\u002B15H \u2013 (-60)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -60, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-60)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 211, + "Top": 1079, + "Width": 138, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 844, + "BoundsTop": 4316, + "BoundsWidth": 552, + "BoundsHeight": 196, + "CropLeft": 796, + "CropTop": 4284, + "CropWidth": 648, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Severe chest strike. Foe falls, breaking", + "his arm and hitting his head. He goes", + "into a coma for 2 weeks.", + "\u002B20H" + ], + "BaseLines": [ + "Severe chest strike. Foe falls, breaking", + "his arm and hitting his head. He goes", + "into a coma for 2 weeks.", + "\u002B20H" + ], + "RawCellText": "Severe chest strike. Foe falls, breaking\nhis arm and hitting his head. He goes\ninto a coma for 2 weeks.\n\u002B20H", + "DescriptionText": "Severe chest strike. Foe falls, breaking his arm and hitting his head. He goes into a coma for 2 weeks.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 357, + "Top": 1079, + "Width": 138, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1428, + "BoundsTop": 4316, + "BoundsWidth": 552, + "BoundsHeight": 196, + "CropLeft": 1380, + "CropTop": 4284, + "CropWidth": 648, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Pummel foe\u0027s head. He falls", + "unconscious in a nice spot on the", + "ground.", + "\u002B25H" + ], + "BaseLines": [ + "Pummel foe\u0027s head. He falls", + "unconscious in a nice spot on the", + "ground.", + "\u002B25H" + ], + "RawCellText": "Pummel foe\u0027s head. He falls\nunconscious in a nice spot on the\nground.\n\u002B25H", + "DescriptionText": "Pummel foe\u0027s head. He falls unconscious in a nice spot on the ground.", + "RawAffixText": "\u002B25H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 504, + "Top": 1079, + "Width": 137, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2016, + "BoundsTop": 4316, + "BoundsWidth": 548, + "BoundsHeight": 196, + "CropLeft": 1968, + "CropTop": 4284, + "CropWidth": 644, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Textbook subdual. You strike foe on his", + "head. He settles to the ground in a silent", + "move. He is unconscious for 10 hours.", + "(\u002B20)" + ], + "BaseLines": [ + "Textbook subdual. You strike foe on his", + "head. He settles to the ground in a silent", + "move. He is unconscious for 10 hours.", + "(\u002B20)" + ], + "RawCellText": "Textbook subdual. You strike foe on his\nhead. He settles to the ground in a silent\nmove. He is unconscious for 10 hours.\n(\u002B20)", + "DescriptionText": "Textbook subdual. You strike foe on his head. He settles to the ground in a silent move. He is unconscious for 10 hours.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 1079, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "subdual/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 4316, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2548, + "CropTop": 4284, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/source.xml b/src/RolemasterDb.App/import-artifacts/critical/subdual/source.xml new file mode 100644 index 0000000..c7c39b3 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/subdual/source.xml @@ -0,0 +1,392 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +102 +01-05 +Your concern for damaging foe +hinders you. +Your attempt is poorly planned. +Your concern for foe is heart warming. +Nothing graceful about this attack. Foe +does not even flinch. +Strike to neck pinches a nerve. What did +you do to him? Foe is unconscious. ++0H ++0H ++0H ++1H ++3H +06-10 +You pull your punch. +You're being too delicate. Bust him! +You will need to make a fist. +Pow! Right in the kisser. +You simply hit foe in the face. ++0H ++1H ++1H ++2H ++3H +11-15 +Mishandle strike. Try again. +Your strike lands on foe's shoulder. +Attack is of little profit. +Blow to foe's chest. If foe is 2 feet tall or +shorter, he is unconscious. +Blow to foe's chest. If foe is 3 feet tall +or shorter, he is unconscious. +Boom! Crash! Pow! Crack! It looked +impressive. ++1H ++1H ++2H ++3H ++3H +16-20 +Foe's guard comes up and blocks +your assault. +You attempt to kick foe in groin. You +miss, but the threat is enough. +Side strike unbalances foe. He will +recover quickly. +Blow to foe's side sends him reeling. +He recovers and gets his guard up. +Strike to foe's side. Cheap shot, executed +with grace. ++1H – π ++2H – π ++4H – π ++3H – π – 4(-10) ++3H – 4(-25) +21-35 +Awkward positioning spoils your +strike. +You miss foe's head and strike his +shoulder. He is unbalanced. +Chest strike. He almost falls, but foe +grabs you for balance. Ooops! +You trip foe and slam his shin. Simple, +yet effective. +Foe leaves himself open. Your strike hits +his side and breaks some ribs. ++1H – π ++2H – 2(-20) ++3H – ∑ ++6H – 2∑ ++3H – ∑ – (-10) +36-45 +Move in close. You gain the +initiative next round. +Blow lands on foe's shield hand.You +gain the initiative. +You entangle foe's legs, but he breaks +free. You push him clear. +Step on foe's foot and try to push him +over. You gain the initiative next round. +You experiment with a knee strike to foe. +It fails to be very effective. ++2H ++3H – (-5) ++5H – 3∑ – 3(-10) ++3H – 2(-25) ++6H – 2∑ +46-50 +Strike to foe's chest. He is having +some trouble. +Back strike. Your position is better. +Foe seeks to keep you at bay. +Lower back strike sends foe reeling. He +needs another shot to the kidneys. +Back strike adds insult to the injury. Foe +spins around to face you. +Hard shot to foe's side causes a pain +generated panic. His guard is down. ++2H – 3(-10) ++3H – ∑ – 2π ++5H – ∑∏ ++3H – ∑∏ ++7H – ∑∏ +51-55 +Stike falls on foe's leg. He shakes it +off. +Your strike was less than you hoped. It +still disorients your foe. +Hammer foe's thigh. Pain is in his eyes. +Bruise muscles. +Chest strike causes deep bruise. Foe +grabs at the pain in his chest. +Chest wound knocks foe down. He lands +on his back.. He looks to be recovering. ++2H – ∑ ++3H – ∑ ++4H – ∑∏ – (-10) ++5H – ∑∏ ++8H – ∑∏ – 3(-10) +56-60 +Blow lightly strikes foe's head. He +puts you at bay with a masterful +turn. +Shoulder strike lands lightly. You put +more shove into it than strike. Foe is +frantic to regain his balance. +Good strike. Foe has trouble getting his +act together. He stumbles around for +some time trying to defend himself. +Hard blow to foe's thigh. Foe falls down, +but rebounds to his feet. You had hoped +he would stay down. +Solid and strong, you bash foe in his +stomach. He recoils 10 feet from you. +He keeps his footing. ++3H – 6(-10) ++3H – π – 4(-10) ++4H – 4∑π – (-10) ++5H – 2∑ ++8H – 3∑ – ∏ +61-65 +Backhand to foe's side. He steps 5 +feet to the right, avoiding your +reach. +Hard blow to foe's side. He is weakened +by the pain. He doubles over in +response to the assault. +You grip foe's arm and shake it until he +drops his weapon. Foe kicks himself +free. At least you disarmed him. +Catch foe in the middle of a swing. He +drops his weapon and grips his arm. +His forearm has a huge bruise. +Solid and effective, your blow lands on +foe's neck. A nerve is pinched. Foe falls +unconscious for 3 hours. ++3H – ∑ ++6H – ∑ – 4(-30) ++1H ++5H – 2∑∏ – (+20) ++10H – 2∑∏ – (-20) +66 +Classic shot between foe's +shoulder blades. He hurts. +Grab foe's weapon arm and force it the +wrong way. Foe is disarmed. Elbow is +strained. +Bring foe down to his knees and slam +his head down. He is virtually +unconscious. He is yours. Finish him. +Solid strike to foe's head. The strike is +enough to knock foe out. He falls down +and out for 6 hours. +Brutal, but effective shot to foe's face. +His head snaps back and then flops +forward. He falls unconscious. ++9H – 2∑∏ – 4(-10) ++12H – 2∑∏ – (-20) ++12H – 10∑∏ – 6(-80) ++15H – 6∑ ++24H – (-20) +67-70 +Chest strike is solid. Knock the +wind out of your foe. He struggles +to evade. +Strong forearm assault drives foe back +off his footing. He slips down to one +knee. +Strong blow to foe's chest breaks ribs. +Your attack has little grace. Foe looks to +be devastated. +Smash foe's shoulder, breaking it. Arm +is useless. Foe struggles to stand. The +pain is too much for him. +You attack lands unexpectedly on foe's +shoulder. It is fractured. Foe drops his +guard in response to the pain. ++3H – 3(-20) ++5H – 4∑∏ – 4(-40) ++5H – 2∑ – (-20) ++6H – 2∑∏ – (-35) ++9H – 2∑∏ – (-30) +71-75 +Side strike damages a muscle. Foe +is disabled for the moment. +You try to kick foe off his feet. The +strike lands on foe's calf. Deep bruise. +You assault foe's foot. He is unable to +stand on it. +Leg strike causes foe to fall and fracture +his leg. +Strike to foe's thigh causes him to fall. +Blow creates a terrible bruise. ++4H – 2∑ ++5H – ∑ – (-30) ++5H – ∑∏ – (-20) ++10H – ∑∏ – (-55) ++9H – 3∑∏ – (-40) +76-80 +Blow to foe's shield arm. If foe has +a shield, it should check for +breakage. +Heavy handed attack. It looks like you're +going for a kill. Foe avoids the worst. +Blow to foe's shield arm. +Strike to foe's arm causes him to fall +with a fracture. You punch at his head +for added effect. +Strong blow to foe's weapon arm +disarms him and causes him to fall. He +lands hard and breaks a rib. +Fierce blow to foe's weapon arm disarms +him and sends him sprawling. You have +his weapon. +with shield: +8H – 2(-20) +w/o shield: +4H – 2∑∏ ++6H – 2∑∏ – 7(-10) ++6H – 3∑ – 6(-30) ++7H – 3∑ – (-25) ++10H – 4∑∏ +81-85 +Strong grip and a shot to the side +make for an effective combination. +Foe is disabled for an instant. +Side strike knocks foe down. He pulls +you over with him. You fail to pummel +him into submission. You have a great +position. +Strong blow to foe's side. Foe drops his +weapon to react to the pain. You move +to block him from its recovery. Foe +gives ground with little concern. +Strike to foe's side sends him to the +ground. While falling, he fractures his +ankle. Foe goes unconscious from the +pain. +Side strike knocks foe down. You hit him +in the face as he falls. In the fall, he +breaks his leg. ++5H – ∑∏ – (+10) ++6H – 3∑ – (+10) ++6H – 6∑ ++7H – 2∑∏ – (-50) ++10H – 6∑∏ – (-50) +86-90 +Your attack is part grapple and +sweep. You push foe off balance. +Hard strike to the back of foe's neck +terminates foe's conscious thoughts. +He drops. Foe's shoulder blade is +bruised. +Strong blow to foe's back knocks him +off his feet. Foe lands hard and is +knocked out by the impact. You have +him now. +Blow to foe's back knocks him to the +ground. His weapon slides across the +floor. He hit very hard. Foe goes +unconscious for 5 rounds. +Nasty blow to face. Foe is knocked +down. Foe's lips curl up in a ball and froth +comes out of his mouth. You are +frightened. Foe goes unconscious. ++6H – 3∑∏ ++8H – (-30) ++10H – 6∑ – (+20) ++12H – (-10) ++15H – ∫ – (-30) +91-95 +Strike lands solid upon foe's neck. +His neck is sprained. He falls down +and has difficulty getting up. +Your knuckles go into foe's temples +and cause a painful overload to foe's +brain. He falls gripping his head for 2 +rounds and passes out. +Overwhelming blow knocks foe down. +He fumbles his weapon and hits hard +trying to recover it. Foe goes +unconscious on impact. +Grip foe's arm and hold it, while striking +him in the face until he goes +unconscious. Foe is unconscious for 15 +rounds. +Strike to shoulder breaks the collar bone. +Foe knocks himself out with a graceless +fall. You strike his head to make sure. ++7H – 2∑∏ – (-20) ++10H – 6∑ – (-30) ++15H – (-20) ++17H +96-99 +Solid strike turns foe's head and it +pinches a nerve in his neck. Foe +falls over and goes unconscious. +Fracture foe's skull with a lucky strike. +Foe falls unconscious. The swelling will +kill him in 2 hours. +Blow lands on foe's forehead. His head +snaps back and he loses consciousnes. +He then drops hard on the ground and +hits his head. +Strong blow to the abdomen causes foe +to fall to the ground. He hits his head. +Foe goes into a coma for 1 month. +Your haste to get the advantage makes +your attack deadly. You snap foe's neck. +Foe falls and dies in 15 rounds. ++8H – (-30) ++12H – 2∑∏ – (-50) ++10H – 5∫ – (-40) ++17H ++25H +100 +You pop foe on his head in what +looks like a playful strike. He +pauses 1 round, then passes out. +Strong blow to foe's back knocks him +down and paralyzes him. Serious nerve +damage. Foe is unconscious. +Severe chest strike. Foe falls, breaking +his arm and hitting his head. He goes +into a coma for 2 weeks. +Pummel foe's head. He falls +unconscious in a nice spot on the +ground. +Textbook subdual. You strike foe on his +head. He settles to the ground in a silent +move. He is unconscious for 10 hours. ++5H ++15H – (-60) ++20H ++25H +(+20) +4.9 subdual critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/subdual/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/subdual/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/subdual/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__01-05.png new file mode 100644 index 0000000..961e2da Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__06-10.png new file mode 100644 index 0000000..46ba82f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__101-150.png new file mode 100644 index 0000000..61ced2a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__11-20.png new file mode 100644 index 0000000..45d2c88 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__151-175.png new file mode 100644 index 0000000..bf3b370 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__176-200.png new file mode 100644 index 0000000..26ccbfb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__201-250.png new file mode 100644 index 0000000..61954f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__21-30.png new file mode 100644 index 0000000..53ea83a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__251plus.png new file mode 100644 index 0000000..a5725c1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__31-40.png new file mode 100644 index 0000000..21c2d27 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__41-50.png new file mode 100644 index 0000000..1e65a5f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__51-65.png new file mode 100644 index 0000000..d3afac2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__66.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__66.png new file mode 100644 index 0000000..4331216 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__67-70.png new file mode 100644 index 0000000..25b4896 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__71-80.png new file mode 100644 index 0000000..0afbcd0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__81-90.png new file mode 100644 index 0000000..0630062 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__91-95.png new file mode 100644 index 0000000..c016e2a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__96-98.png new file mode 100644 index 0000000..d02ad9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__99-100.png new file mode 100644 index 0000000..83eb3ed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__holy_arms__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__01-05.png new file mode 100644 index 0000000..1996c59 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__06-10.png new file mode 100644 index 0000000..ffc92b1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__101-150.png new file mode 100644 index 0000000..48ffd21 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__11-20.png new file mode 100644 index 0000000..083bb6c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__151-175.png new file mode 100644 index 0000000..562bbd7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__176-200.png new file mode 100644 index 0000000..29ab8f9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__201-250.png new file mode 100644 index 0000000..d277321 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__21-30.png new file mode 100644 index 0000000..b90148d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__251plus.png new file mode 100644 index 0000000..65b5392 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__31-40.png new file mode 100644 index 0000000..7a6560f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__41-50.png new file mode 100644 index 0000000..d0a5d1d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__51-65.png new file mode 100644 index 0000000..096bbd2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__66.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__66.png new file mode 100644 index 0000000..4dfd428 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__67-70.png new file mode 100644 index 0000000..410e47e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__71-80.png new file mode 100644 index 0000000..f6e64d2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__81-90.png new file mode 100644 index 0000000..7cc8ee0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__91-95.png new file mode 100644 index 0000000..78d7218 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__96-98.png new file mode 100644 index 0000000..1514e61 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__99-100.png new file mode 100644 index 0000000..fc3d9cd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__magic__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__01-05.png new file mode 100644 index 0000000..003024e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__06-10.png new file mode 100644 index 0000000..5eac76e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__101-150.png new file mode 100644 index 0000000..60f982e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__11-20.png new file mode 100644 index 0000000..b8e9847 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__151-175.png new file mode 100644 index 0000000..6840fbe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__176-200.png new file mode 100644 index 0000000..57f06e5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__201-250.png new file mode 100644 index 0000000..e375635 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__21-30.png new file mode 100644 index 0000000..14d91cb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__251plus.png new file mode 100644 index 0000000..0876757 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__31-40.png new file mode 100644 index 0000000..743ab1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__41-50.png new file mode 100644 index 0000000..3f54251 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__51-65.png new file mode 100644 index 0000000..cd9534d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__66.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__66.png new file mode 100644 index 0000000..ae36533 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__67-70.png new file mode 100644 index 0000000..292317e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__71-80.png new file mode 100644 index 0000000..0fb166b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__81-90.png new file mode 100644 index 0000000..6b9bee7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__91-95.png new file mode 100644 index 0000000..07abd36 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__96-98.png new file mode 100644 index 0000000..2053ce0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__99-100.png new file mode 100644 index 0000000..fb45052 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__mithril__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__01-05.png new file mode 100644 index 0000000..7a1f6a1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__06-10.png new file mode 100644 index 0000000..16cd376 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__101-150.png new file mode 100644 index 0000000..8af7e0a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__11-20.png new file mode 100644 index 0000000..1d88f6b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__151-175.png new file mode 100644 index 0000000..8f84dd0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__176-200.png new file mode 100644 index 0000000..ae56832 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__201-250.png new file mode 100644 index 0000000..18d6f0e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__21-30.png new file mode 100644 index 0000000..ab50edb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__251plus.png new file mode 100644 index 0000000..976461f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__31-40.png new file mode 100644 index 0000000..9add89f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__41-50.png new file mode 100644 index 0000000..4037d64 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__51-65.png new file mode 100644 index 0000000..ace014e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__66.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__66.png new file mode 100644 index 0000000..554d0b7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__67-70.png new file mode 100644 index 0000000..c262094 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__71-80.png new file mode 100644 index 0000000..4dbfa04 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__81-90.png new file mode 100644 index 0000000..ca2ab8e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__91-95.png new file mode 100644 index 0000000..c946f1f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__96-98.png new file mode 100644 index 0000000..b0b55ea Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__99-100.png new file mode 100644 index 0000000..3714f4a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__normal__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__01-05.png new file mode 100644 index 0000000..e23bd40 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__06-10.png new file mode 100644 index 0000000..912e0eb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__101-150.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__101-150.png new file mode 100644 index 0000000..45f91ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__101-150.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__11-20.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__11-20.png new file mode 100644 index 0000000..c054625 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__11-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__151-175.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__151-175.png new file mode 100644 index 0000000..3cc6de4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__151-175.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__176-200.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__176-200.png new file mode 100644 index 0000000..d3c5723 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__176-200.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__201-250.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__201-250.png new file mode 100644 index 0000000..dde9fb0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__201-250.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__21-30.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__21-30.png new file mode 100644 index 0000000..9c1f558 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__21-30.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__251plus.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__251plus.png new file mode 100644 index 0000000..82e8865 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__251plus.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__31-40.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__31-40.png new file mode 100644 index 0000000..f4582dd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__31-40.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__41-50.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__41-50.png new file mode 100644 index 0000000..9d00321 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__41-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__51-65.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__51-65.png new file mode 100644 index 0000000..093c6c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__51-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__66.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__66.png new file mode 100644 index 0000000..c341690 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__67-70.png new file mode 100644 index 0000000..9499969 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__71-80.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__71-80.png new file mode 100644 index 0000000..68f1ea1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__71-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__81-90.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__81-90.png new file mode 100644 index 0000000..3722a5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__81-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__91-95.png new file mode 100644 index 0000000..550c47a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__96-98.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__96-98.png new file mode 100644 index 0000000..a7478bb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__96-98.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__99-100.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__99-100.png new file mode 100644 index 0000000..2e179bc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/cells/none__slaying__99-100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/fragments.json new file mode 100644 index 0000000..49b5fad --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/fragments.json @@ -0,0 +1,3952 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 848, + "Width": 22, + "Height": 13, + "Text": "103", + "Confidence": null, + "CenterX": 859 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 110, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 152, + "Width": 120, + "Height": 9, + "Text": "You strike the terrible beast hard.", + "Confidence": null, + "CenterX": 212 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 152, + "Width": 99, + "Height": 9, + "Text": "Your weapon breaks in half.", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 285, + "Width": 127, + "Height": 9, + "Text": "Your weapon is knocked from your", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 285, + "Width": 134, + "Height": 9, + "Text": "hand. It will take 2 rounds to recover.", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 434, + "Width": 141, + "Height": 9, + "Text": "Your strike is powerful. You fumble the", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 434, + "Width": 62, + "Height": 9, + "Text": "rest of the round.", + "Confidence": null, + "CenterX": 465 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 586, + "Width": 133, + "Height": 9, + "Text": "Your strike is powerful, but your grip", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 586, + "Width": 140, + "Height": 9, + "Text": "was terrible. Roll a fumble for yourself.", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 96, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "The numbing recoil of your strike to foe\u0027s", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 106, + "Left": 737, + "Width": 118, + "Height": 9, + "Text": "chest sends you stumbling back.", + "Confidence": null, + "CenterX": 796 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 260, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 409, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 559, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 130, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 152, + "Width": 127, + "Height": 9, + "Text": "A decoration pops off your weapon", + "Confidence": null, + "CenterX": 215.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 152, + "Width": 94, + "Height": 9, + "Text": "with impact to foe\u0027s side.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 285, + "Width": 143, + "Height": 9, + "Text": "Your weapon hits at a bad angle. Take a", + "Confidence": null, + "CenterX": 356.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 285, + "Width": 122, + "Height": 9, + "Text": "weapon strength check. Bum luck.", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 434, + "Width": 143, + "Height": 9, + "Text": "Your weapon lands uneven across foe\u0027s", + "Confidence": null, + "CenterX": 505.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 434, + "Width": 122, + "Height": 9, + "Text": "shoulder. Make a breakage check.", + "Confidence": null, + "CenterX": 495 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 586, + "Width": 126, + "Height": 9, + "Text": "Blow foe\u0027s arm. Ready for a better", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 586, + "Width": 145, + "Height": 9, + "Text": "strike. You gain the initiative next round.", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 145, + "Left": 737, + "Width": 151, + "Height": 9, + "Text": "Strike lands at a bad angle. You check for", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 156, + "Left": 737, + "Width": 66, + "Height": 9, + "Text": "weapon breakage.", + "Confidence": null, + "CenterX": 770 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 715, + "Width": 15, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 175, + "Left": 871, + "Width": 15, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 203, + "Left": 104, + "Width": 34, + "Height": 13, + "Text": "11-20", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 152, + "Width": 112, + "Height": 9, + "Text": "You are daunted by the beast\u0027s", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 152, + "Width": 83, + "Height": 9, + "Text": "gaze and swing weakly.", + "Confidence": null, + "CenterX": 193.5 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 285, + "Width": 138, + "Height": 9, + "Text": "Your blow was deflected, but you gain", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 285, + "Width": 85, + "Height": 9, + "Text": "the initiative next round.", + "Confidence": null, + "CenterX": 327.5 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "Acceptable strike to foe\u0027s leg.You gain", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 434, + "Width": 85, + "Height": 9, + "Text": "the initiative next round.", + "Confidence": null, + "CenterX": 476.5 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 586, + "Width": 139, + "Height": 9, + "Text": "Back strike. Weapon seems to damage", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 586, + "Width": 50, + "Height": 9, + "Text": "by touch only.", + "Confidence": null, + "CenterX": 611 + }, + { + "PageNumber": 1, + "Top": 192, + "Left": 737, + "Width": 146, + "Height": 9, + "Text": "Blow to back. You gain the initiative next", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 737, + "Width": 23, + "Height": 9, + "Text": "round.", + "Confidence": null, + "CenterX": 748.5 + }, + { + "PageNumber": 1, + "Top": 222, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 222, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 222, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 222, + "Left": 715, + "Width": 15, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 222, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 250, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "21-30", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 152, + "Width": 129, + "Height": 9, + "Text": "This terrible creature\u0027s hide deflects", + "Confidence": null, + "CenterX": 216.5 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 152, + "Width": 72, + "Height": 9, + "Text": "the strongest blows.", + "Confidence": null, + "CenterX": 188 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 285, + "Width": 128, + "Height": 9, + "Text": "Glancing side blow. A spark of light", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 285, + "Width": 132, + "Height": 9, + "Text": "reminds you your weapon is magical.", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 434, + "Width": 141, + "Height": 9, + "Text": "Glancing blow smears mithril like chalk", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 434, + "Width": 70, + "Height": 9, + "Text": "across beast\u0027s hide.", + "Confidence": null, + "CenterX": 469 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 586, + "Width": 134, + "Height": 9, + "Text": "Your strike is solid and flat, but foe is", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 586, + "Width": 60, + "Height": 9, + "Text": "not slowed at all.", + "Confidence": null, + "CenterX": 616 + }, + { + "PageNumber": 1, + "Top": 238, + "Left": 737, + "Width": 122, + "Height": 9, + "Text": "Sparks fly from your weapon as it", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 249, + "Left": 737, + "Width": 70, + "Height": 9, + "Text": "embraces your foe.", + "Confidence": null, + "CenterX": 772 + }, + { + "PageNumber": 1, + "Top": 268, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 268, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 268, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 268, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 268, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "31-40", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 152, + "Width": 125, + "Height": 9, + "Text": "Solid strike to foe\u0027s side with your", + "Confidence": null, + "CenterX": 214.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 152, + "Width": 125, + "Height": 9, + "Text": "common weapon fails to penetrate.", + "Confidence": null, + "CenterX": 214.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 285, + "Width": 115, + "Height": 9, + "Text": "Foe is unbalanced. You gain the", + "Confidence": null, + "CenterX": 342.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 285, + "Width": 72, + "Height": 9, + "Text": "initiative next round.", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 434, + "Width": 130, + "Height": 9, + "Text": "Solid, but nowhere near a vital spot.", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 434, + "Width": 87, + "Height": 9, + "Text": "Bruise foe\u0027s calf muscle.", + "Confidence": null, + "CenterX": 477.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 586, + "Width": 139, + "Height": 9, + "Text": "You strike the fell titan in the chest. He", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 586, + "Width": 61, + "Height": 9, + "Text": "yells back at you.", + "Confidence": null, + "CenterX": 616.5 + }, + { + "PageNumber": 1, + "Top": 283, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "Boom! Solid without question. Try a vital", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 294, + "Left": 737, + "Width": 53, + "Height": 9, + "Text": "spot next time.", + "Confidence": null, + "CenterX": 763.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B12H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 313, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 342, + "Left": 102, + "Width": 38, + "Height": 13, + "Text": "41- 50", + "Confidence": null, + "CenterX": 121 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 152, + "Width": 108, + "Height": 9, + "Text": "Your strike was more of a last", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 152, + "Width": 119, + "Height": 9, + "Text": "minute parry to avoid the beast\u0027s.", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 285, + "Width": 122, + "Height": 9, + "Text": "You deal out a sharp and hard leg", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 285, + "Width": 142, + "Height": 9, + "Text": "strike. Foe steps back to look at his leg.", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 434, + "Width": 144, + "Height": 9, + "Text": "Strike lands on foe\u0027s horn. The vibration", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 434, + "Width": 58, + "Height": 9, + "Text": "has some effect.", + "Confidence": null, + "CenterX": 463 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 586, + "Width": 133, + "Height": 9, + "Text": "You step under his assault and strike", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 586, + "Width": 94, + "Height": 9, + "Text": "him hard in the abdomen.", + "Confidence": null, + "CenterX": 633 + }, + { + "PageNumber": 1, + "Top": 330, + "Left": 737, + "Width": 135, + "Height": 9, + "Text": "Rip sinew, hair, horn and scale with a", + "Confidence": null, + "CenterX": 804.5 + }, + { + "PageNumber": 1, + "Top": 340, + "Left": 737, + "Width": 78, + "Height": 9, + "Text": "glancing blow to side.", + "Confidence": null, + "CenterX": 776 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 360, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 387, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "51-65", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 152, + "Width": 122, + "Height": 9, + "Text": "Two light and quick shots to foe\u0027s", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 152, + "Width": 122, + "Height": 9, + "Text": "forearm, provides a modest result.", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 285, + "Width": 139, + "Height": 9, + "Text": "Blow to foe\u0027s back. Foe\u0027s hide is tough", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 285, + "Width": 111, + "Height": 9, + "Text": "there. You need more strength.", + "Confidence": null, + "CenterX": 340.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 434, + "Width": 127, + "Height": 9, + "Text": "Your strike thumps foe on his nose.", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 434, + "Width": 136, + "Height": 9, + "Text": "He is insulted, but not wounded badly.", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 586, + "Width": 147, + "Height": 9, + "Text": "The vile beast leans foward. You strike at", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 586, + "Width": 105, + "Height": 9, + "Text": "his snout in frantic response.", + "Confidence": null, + "CenterX": 638.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "Unexpected weak spot found with your", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 386, + "Left": 737, + "Width": 67, + "Height": 9, + "Text": "strike to foe\u0027s side.", + "Confidence": null, + "CenterX": 770.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B18H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 405, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 439, + "Left": 113, + "Width": 15, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 152, + "Width": 114, + "Height": 9, + "Text": "Strike foe\u0027s neck with the flat of", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 152, + "Width": 121, + "Height": 9, + "Text": "your weapon during a moment of", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 152, + "Width": 65, + "Height": 9, + "Text": "opportunity. \u002B20H", + "Confidence": null, + "CenterX": 184.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 285, + "Width": 141, + "Height": 9, + "Text": "You step under foe\u0027s lunge and use the", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 285, + "Width": 142, + "Height": 9, + "Text": "force against him. Strike to under belly.", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 285, + "Width": 93, + "Height": 9, + "Text": "He feels the pain instantly.", + "Confidence": null, + "CenterX": 331.5 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 434, + "Width": 140, + "Height": 9, + "Text": "Shin strike. Skin is torn open and bone", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 434, + "Width": 130, + "Height": 9, + "Text": "is bruised. This one hurts. You have", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 434, + "Width": 34, + "Height": 9, + "Text": "initiative.", + "Confidence": null, + "CenterX": 451 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 586, + "Width": 140, + "Height": 9, + "Text": "Your blow lands against foe\u0027s shoulder.", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 586, + "Width": 136, + "Height": 9, + "Text": "You are pleased with the effect. Blood", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 586, + "Width": 82, + "Height": 9, + "Text": "pours from the wound.", + "Confidence": null, + "CenterX": 627 + }, + { + "PageNumber": 1, + "Top": 422, + "Left": 737, + "Width": 132, + "Height": 9, + "Text": "Your weapon seems to dig into foe\u0027s", + "Confidence": null, + "CenterX": 803 + }, + { + "PageNumber": 1, + "Top": 432, + "Left": 737, + "Width": 130, + "Height": 9, + "Text": "chest and devour his heart. Foe dies", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 443, + "Left": 737, + "Width": 134, + "Height": 9, + "Text": "instantly. You are covered with blood.", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 260, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 363, + "Width": 64, + "Height": 9, + "Text": "\u002B12H \u2013 3\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 395 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 514, + "Width": 64, + "Height": 9, + "Text": "\u002B15H \u2013 5\u222B \u2013 (-10)", + "Confidence": null, + "CenterX": 546 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 661, + "Width": 68, + "Height": 9, + "Text": "\u2211\u220F \u2013 10 \u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 695 + }, + { + "PageNumber": 1, + "Top": 462, + "Left": 838, + "Width": 48, + "Height": 9, + "Text": "\u002B50H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 479, + "Left": 152, + "Width": 126, + "Height": 9, + "Text": "Solid strike on foe\u0027s leg. You move", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 152, + "Width": 91, + "Height": 9, + "Text": "quickly away to avoid the", + "Confidence": null, + "CenterX": 197.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 152, + "Width": 40, + "Height": 9, + "Text": "retaliation.", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 479, + "Left": 285, + "Width": 141, + "Height": 9, + "Text": "Blow to thigh leaves a bad bruise. Your", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 285, + "Width": 139, + "Height": 9, + "Text": "weapon cracks and bends. It will break", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 285, + "Width": 76, + "Height": 9, + "Text": "after one more strike.", + "Confidence": null, + "CenterX": 323 + }, + { + "PageNumber": 1, + "Top": 479, + "Left": 434, + "Width": 138, + "Height": 9, + "Text": "Hammering foe\u0027s thigh gets you some", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 434, + "Width": 110, + "Height": 9, + "Text": "respect. You have the initiative.", + "Confidence": null, + "CenterX": 489 + }, + { + "PageNumber": 1, + "Top": 479, + "Left": 586, + "Width": 139, + "Height": 9, + "Text": "Hard blow to foe\u0027s thigh. He stumbles,", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 586, + "Width": 142, + "Height": 9, + "Text": "but does not fall. You have the initiative", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 586, + "Width": 43, + "Height": 9, + "Text": "next round.", + "Confidence": null, + "CenterX": 607.5 + }, + { + "PageNumber": 1, + "Top": 479, + "Left": 737, + "Width": 134, + "Height": 9, + "Text": "Flat strike to foe\u0027s upper body. Heavy", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 489, + "Left": 737, + "Width": 145, + "Height": 9, + "Text": "blow breaks some bones. Foe\u0027s guard is", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 500, + "Left": 737, + "Width": 22, + "Height": 9, + "Text": "down.", + "Confidence": null, + "CenterX": 748 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 264, + "Width": 17, + "Height": 9, + "Text": "\u002B8H", + "Confidence": null, + "CenterX": 272.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 413, + "Width": 15, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 420.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 559, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 519, + "Left": 836, + "Width": 49, + "Height": 9, + "Text": "\u002B30H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 552, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "71-80", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 152, + "Width": 105, + "Height": 9, + "Text": "Solid strike to foe\u0027s head just", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 152, + "Width": 44, + "Height": 9, + "Text": "bounces off.", + "Confidence": null, + "CenterX": 174 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 285, + "Width": 136, + "Height": 9, + "Text": "Minor forearm wound.The beast used", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 285, + "Width": 134, + "Height": 9, + "Text": "its forearm for defense. Foe soaks up", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 555, + "Left": 285, + "Width": 46, + "Height": 9, + "Text": "the damage.", + "Confidence": null, + "CenterX": 308 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 434, + "Width": 144, + "Height": 9, + "Text": "Blow to foe\u0027s upper arm. This strike had", + "Confidence": null, + "CenterX": 506 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 434, + "Width": 118, + "Height": 9, + "Text": "few vices, but it was weak. Get it", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 555, + "Left": 434, + "Width": 32, + "Height": 9, + "Text": "together.", + "Confidence": null, + "CenterX": 450 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 586, + "Width": 142, + "Height": 9, + "Text": "Catch foe in his exposed leg. You come", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 586, + "Width": 135, + "Height": 9, + "Text": "down hard on it. He will have a bruise.", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 555, + "Left": 586, + "Width": 128, + "Height": 9, + "Text": "It slows him. You have the initiative.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 534, + "Left": 737, + "Width": 122, + "Height": 9, + "Text": "Hard glancing strike crosses foe\u0027s", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 545, + "Left": 737, + "Width": 144, + "Height": 9, + "Text": "shoulder and chest. Shoulder is slashed", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 555, + "Left": 737, + "Width": 76, + "Height": 9, + "Text": "and chest is bruised.", + "Confidence": null, + "CenterX": 775 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 264, + "Width": 15, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 271.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 409, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 559, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 637, + "Width": 93, + "Height": 9, + "Text": "\u002B13H \u2013 5\u222B \u2013 (-10) \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 683.5 + }, + { + "PageNumber": 1, + "Top": 575, + "Left": 791, + "Width": 94, + "Height": 9, + "Text": "\u002B24H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 838 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "81-90", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 152, + "Width": 124, + "Height": 9, + "Text": "Violent strike to foe\u0027s forearm. Foe", + "Confidence": null, + "CenterX": 214 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 152, + "Width": 130, + "Height": 9, + "Text": "is bruised. Your weapon must make", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 612, + "Left": 152, + "Width": 63, + "Height": 9, + "Text": "a breakage check.", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 285, + "Width": 146, + "Height": 9, + "Text": "Blow to foe\u0027s arm joint lands poorly. Foe", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 285, + "Width": 133, + "Height": 9, + "Text": "will have a bruise. You think that you", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 612, + "Left": 285, + "Width": 85, + "Height": 9, + "Text": "know what went wrong.", + "Confidence": null, + "CenterX": 327.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 434, + "Width": 130, + "Height": 9, + "Text": "Your strike hit no vitals, but you can", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 434, + "Width": 136, + "Height": 9, + "Text": "hear the ribs in foe\u0027s side crackle. Foe", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 612, + "Left": 434, + "Width": 81, + "Height": 9, + "Text": "fights on in some pain.", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 586, + "Width": 120, + "Height": 9, + "Text": "To make this strike land well, you", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 586, + "Width": 135, + "Height": 9, + "Text": "almost climb onto foe. You deal out a", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 612, + "Left": 586, + "Width": 133, + "Height": 9, + "Text": "brutal srike to his neck and leap back.", + "Confidence": null, + "CenterX": 652.5 + }, + { + "PageNumber": 1, + "Top": 591, + "Left": 737, + "Width": 150, + "Height": 9, + "Text": "Just when your swing looked to be failing", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 602, + "Left": 737, + "Width": 138, + "Height": 9, + "Text": "your weapon took control and crashed", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 612, + "Left": 737, + "Width": 56, + "Height": 9, + "Text": "into foe\u0027s thigh.", + "Confidence": null, + "CenterX": 765 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 260, + "Width": 19, + "Height": 9, + "Text": "\u002B10H", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 409, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 559, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 647, + "Width": 82, + "Height": 9, + "Text": "\u002B12H \u2013 \u03C0 \u2013 4\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 688 + }, + { + "PageNumber": 1, + "Top": 632, + "Left": 787, + "Width": 99, + "Height": 9, + "Text": "\u002B25H \u2013 3\u2211\u220F \u2013 20\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 836.5 + }, + { + "PageNumber": 1, + "Top": 665, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 152, + "Width": 115, + "Height": 9, + "Text": "Well placed and hard. Try a vital", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 657, + "Left": 152, + "Width": 53, + "Height": 9, + "Text": "spot next time.", + "Confidence": null, + "CenterX": 178.5 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 285, + "Width": 128, + "Height": 9, + "Text": "Blow is placed solidly against foe\u0027s", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 657, + "Left": 285, + "Width": 145, + "Height": 9, + "Text": "side. The thick hide there protects him", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 668, + "Left": 285, + "Width": 16, + "Height": 9, + "Text": "well.", + "Confidence": null, + "CenterX": 293 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 434, + "Width": 129, + "Height": 9, + "Text": "Slash at foe\u0027s neck fails to land very", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 657, + "Left": 434, + "Width": 119, + "Height": 9, + "Text": "hard. You have the initiative for 2", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 668, + "Left": 434, + "Width": 30, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 449 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 586, + "Width": 138, + "Height": 9, + "Text": "You have a uncomfortable opportunity", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 657, + "Left": 586, + "Width": 135, + "Height": 9, + "Text": "to strike foe in his mouth. If foe has a", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 668, + "Left": 586, + "Width": 120, + "Height": 9, + "Text": "breath weapon, he may not use it.", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 647, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "Your master strike lands against foe\u0027s", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 657, + "Left": 737, + "Width": 91, + "Height": 9, + "Text": "neck. Doom is in his face.", + "Confidence": null, + "CenterX": 782.5 + }, + { + "PageNumber": 1, + "Top": 668, + "Left": 737, + "Width": 109, + "Height": 9, + "Text": "He drops and dies in 3 rounds.", + "Confidence": null, + "CenterX": 791.5 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 260, + "Width": 19, + "Height": 9, + "Text": "\u002B15H", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 409, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 512, + "Width": 66, + "Height": 9, + "Text": "\u002B12H \u2013 4\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 545 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 662, + "Width": 67, + "Height": 9, + "Text": "\u002B25H \u2013 2\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 695.5 + }, + { + "PageNumber": 1, + "Top": 687, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B35H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 726, + "Left": 104, + "Width": 35, + "Height": 13, + "Text": "96-98", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 152, + "Width": 128, + "Height": 9, + "Text": "Blow severs vein and artery in foe\u0027s", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 152, + "Width": 102, + "Height": 9, + "Text": "upper leg. He drops and dies", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 152, + "Width": 126, + "Height": 9, + "Text": "after 12 inactive rounds. Awesome!", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 285, + "Width": 133, + "Height": 9, + "Text": "You are a mighty warrior. Your strike", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 285, + "Width": 141, + "Height": 9, + "Text": "hits foe\u0027s neck and breaks it. Bones are", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 285, + "Width": 133, + "Height": 9, + "Text": "crushed and the spine in broken. Foe", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 285, + "Width": 94, + "Height": 9, + "Text": "drops in 1 round and dies.", + "Confidence": null, + "CenterX": 332 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 434, + "Width": 120, + "Height": 9, + "Text": "Blow to lower skull area. Foe dies", + "Confidence": null, + "CenterX": 494 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "instantly. He stumbles on for 1 round,", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 434, + "Width": 75, + "Height": 9, + "Text": "until he realizes this.", + "Confidence": null, + "CenterX": 471.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 586, + "Width": 134, + "Height": 9, + "Text": "Weapon bites into foe\u0027s skull. He just", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 586, + "Width": 141, + "Height": 9, + "Text": "comes apart. He dies in 6 rounds. Your", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 586, + "Width": 148, + "Height": 9, + "Text": "weapon is stuck. Foe rolls over and takes", + "Confidence": null, + "CenterX": 660 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 586, + "Width": 93, + "Height": 9, + "Text": "your weapon out of reach.", + "Confidence": null, + "CenterX": 632.5 + }, + { + "PageNumber": 1, + "Top": 704, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "Your weapon plunges into foe\u0027s chest", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 714, + "Left": 737, + "Width": 140, + "Height": 9, + "Text": "making the nature of its forging certain.", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 725, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "He dies a terrible and swift death. Take", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 736, + "Left": 737, + "Width": 124, + "Height": 9, + "Text": "12 rounds to reclaim your weapon.", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 269, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 273.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 409, + "Width": 20, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 559, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 665, + "Width": 63, + "Height": 9, + "Text": "all allies get (\u002B10)", + "Confidence": null, + "CenterX": 696.5 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B40H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 110, + "Width": 20, + "Height": 13, + "Text": "99-", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 795, + "Left": 110, + "Width": 23, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 152, + "Width": 126, + "Height": 9, + "Text": "You step into the right spot and rip", + "Confidence": null, + "CenterX": 215 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 152, + "Width": 130, + "Height": 9, + "Text": "open foe\u0027s side. Your blow shatters", + "Confidence": null, + "CenterX": 217 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 152, + "Width": 40, + "Height": 9, + "Text": "some ribs.", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 285, + "Width": 140, + "Height": 9, + "Text": "A little bird shows you the flaw in foe\u0027s", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 285, + "Width": 128, + "Height": 9, + "Text": "armor. Your strike plunges into this", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 285, + "Width": 125, + "Height": 9, + "Text": "vulnerable spot killing foe instantly.", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 434, + "Width": 131, + "Height": 9, + "Text": "Crush the bones in foe\u0027s neck with a", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 434, + "Width": 133, + "Height": 9, + "Text": "mighty blow. Foe drops and dies in 1", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 434, + "Width": 23, + "Height": 9, + "Text": "round.", + "Confidence": null, + "CenterX": 445.5 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 586, + "Width": 125, + "Height": 9, + "Text": "Strike through foe\u0027s heart kills him", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 586, + "Width": 145, + "Height": 9, + "Text": "instantly. You are too close. He pins you", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 586, + "Width": 76, + "Height": 9, + "Text": "under him as he dies.", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 772, + "Left": 737, + "Width": 139, + "Height": 9, + "Text": "Foe\u0027s eye is in reach and you ram your", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "weapon home. Foe dies after 3 rounds of", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 737, + "Width": 136, + "Height": 9, + "Text": "inactivity. You have half the round left.", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 210, + "Width": 69, + "Height": 9, + "Text": "\u002B30H \u2013 10\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 244.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 418, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 563, + "Width": 15, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B20H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 812, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "(\u002B25)", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 837, + "Left": 105, + "Width": 31, + "Height": 13, + "Text": "101-", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 851, + "Left": 110, + "Width": 23, + "Height": 13, + "Text": "150", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 152, + "Width": 121, + "Height": 9, + "Text": "Glancing strike to foe\u0027s abdomen", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 152, + "Width": 123, + "Height": 9, + "Text": "loses much of the impact on foe\u0027s", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 152, + "Width": 17, + "Height": 9, + "Text": "hide.", + "Confidence": null, + "CenterX": 160.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 285, + "Width": 120, + "Height": 9, + "Text": "Wound foe along his side with an", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 285, + "Width": 132, + "Height": 9, + "Text": "excellent strike. Foe leaps back away", + "Confidence": null, + "CenterX": 351 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 285, + "Width": 67, + "Height": 9, + "Text": "from your weapon.", + "Confidence": null, + "CenterX": 318.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 434, + "Width": 127, + "Height": 9, + "Text": "Graceful assault knocks down foe\u0027s", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 434, + "Width": 138, + "Height": 9, + "Text": "defenses. He just cannot get his guard", + "Confidence": null, + "CenterX": 503 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 434, + "Width": 14, + "Height": 9, + "Text": "up.", + "Confidence": null, + "CenterX": 441 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 586, + "Width": 137, + "Height": 9, + "Text": "Brutal strike to foe\u0027s forearm. He reels", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 586, + "Width": 135, + "Height": 9, + "Text": "from your presence. You are his bane.", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 827, + "Left": 737, + "Width": 147, + "Height": 9, + "Text": "Strike to foe\u0027s leg severs a vein and tears", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 838, + "Left": 737, + "Width": 141, + "Height": 9, + "Text": "muscles. Foe flails around for 6 rounds", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 848, + "Left": 737, + "Width": 52, + "Height": 9, + "Text": "before he dies.", + "Confidence": null, + "CenterX": 763 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 213, + "Width": 66, + "Height": 9, + "Text": "\u002B12H \u2013 1\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 246 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 362, + "Width": 66, + "Height": 9, + "Text": "\u002B13H \u2013 2\u222B \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 395 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 500, + "Width": 77, + "Height": 9, + "Text": "\u002B30H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 680, + "Width": 49, + "Height": 9, + "Text": "\u002B30H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 868, + "Left": 836, + "Width": 49, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 894, + "Left": 105, + "Width": 31, + "Height": 13, + "Text": "151-", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 908, + "Left": 110, + "Width": 23, + "Height": 13, + "Text": "175", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 152, + "Width": 114, + "Height": 9, + "Text": "Your weapon wounds deep and", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 152, + "Width": 118, + "Height": 9, + "Text": "cuts muscles and tendons. Foe\u0027s", + "Confidence": null, + "CenterX": 211 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 152, + "Width": 78, + "Height": 9, + "Text": "wound bleeds heavily.", + "Confidence": null, + "CenterX": 191 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 285, + "Width": 128, + "Height": 9, + "Text": "You pop foe on his head with some", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 285, + "Width": 125, + "Height": 9, + "Text": "useful results. Foe is confused just", + "Confidence": null, + "CenterX": 347.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 285, + "Width": 84, + "Height": 9, + "Text": "long enough for a blow.", + "Confidence": null, + "CenterX": 327 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "Incredible strike across foe\u0027s calf trips", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 434, + "Width": 126, + "Height": 9, + "Text": "him to the ground. The bigger they", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 434, + "Width": 22, + "Height": 9, + "Text": "are\u2026.", + "Confidence": null, + "CenterX": 445 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 586, + "Width": 136, + "Height": 9, + "Text": "Vicious blow to forehead sends foe to", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 586, + "Width": 147, + "Height": 9, + "Text": "the ground. If he falls on stone, he is in a", + "Confidence": null, + "CenterX": 659.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 586, + "Width": 22, + "Height": 9, + "Text": "coma.", + "Confidence": null, + "CenterX": 597 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 737, + "Width": 138, + "Height": 9, + "Text": "Awesome blow to foe\u0027s neck. His neck", + "Confidence": null, + "CenterX": 806 + }, + { + "PageNumber": 1, + "Top": 895, + "Left": 737, + "Width": 131, + "Height": 9, + "Text": "and back are broken. Foe drops and", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 905, + "Left": 737, + "Width": 88, + "Height": 9, + "Text": "suffocates in 12 rounds.", + "Confidence": null, + "CenterX": 781 + }, + { + "PageNumber": 1, + "Top": 925, + "Left": 215, + "Width": 64, + "Height": 9, + "Text": "\u002B20H \u2013 5\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 247 + }, + { + "PageNumber": 1, + "Top": 925, + "Left": 356, + "Width": 71, + "Height": 9, + "Text": "\u002B25H \u2013 \u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 391.5 + }, + { + "PageNumber": 1, + "Top": 925, + "Left": 500, + "Width": 77, + "Height": 9, + "Text": "\u002B25H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 538.5 + }, + { + "PageNumber": 1, + "Top": 925, + "Left": 680, + "Width": 49, + "Height": 9, + "Text": "\u002B40H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 704.5 + }, + { + "PageNumber": 1, + "Top": 925, + "Left": 838, + "Width": 48, + "Height": 9, + "Text": "\u002B25H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 862 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 105, + "Width": 31, + "Height": 13, + "Text": "176-", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 110, + "Width": 23, + "Height": 13, + "Text": "200", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 152, + "Width": 122, + "Height": 9, + "Text": "Foe presents a weak spot and you", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 152, + "Width": 128, + "Height": 9, + "Text": "strike. Blow lands at the base of the", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 152, + "Width": 102, + "Height": 9, + "Text": "neck. Tendons are damaged.", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 285, + "Width": 137, + "Height": 9, + "Text": "Solid shot to foe\u0027s chest. Foe is down.", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 285, + "Width": 129, + "Height": 9, + "Text": "You take an \u0027A\u0027 Unbalancing Critical", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 285, + "Width": 116, + "Height": 9, + "Text": "result, because you are so close.", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 434, + "Width": 137, + "Height": 9, + "Text": "Brutal strike to foe\u0027s side. You rip him", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 434, + "Width": 146, + "Height": 9, + "Text": "open and he is hating life. His blood gets", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 434, + "Width": 45, + "Height": 9, + "Text": "all over you.", + "Confidence": null, + "CenterX": 456.5 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 586, + "Width": 132, + "Height": 9, + "Text": "Strike to foe\u0027s abdomen. Foe has the", + "Confidence": null, + "CenterX": 652 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 586, + "Width": 122, + "Height": 9, + "Text": "biggest bruise you have ever seen.", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 940, + "Left": 737, + "Width": 142, + "Height": 9, + "Text": "Clean strike to foe\u0027s eye kills him in one", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 950, + "Left": 737, + "Width": 149, + "Height": 9, + "Text": "round. He fights on for 1 round before he", + "Confidence": null, + "CenterX": 811.5 + }, + { + "PageNumber": 1, + "Top": 961, + "Left": 737, + "Width": 67, + "Height": 9, + "Text": "realizes he is dead.", + "Confidence": null, + "CenterX": 770.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 204, + "Width": 75, + "Height": 9, + "Text": "\u002B15H \u2013 (-25) \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 241.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 359, + "Width": 68, + "Height": 9, + "Text": "\u002B20H \u2013 2\u220F \u2013 (\u002B25)", + "Confidence": null, + "CenterX": 393 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 479, + "Width": 99, + "Height": 9, + "Text": "\u002B28H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 528.5 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 653, + "Width": 76, + "Height": 9, + "Text": "\u002B25H \u2013 9\u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 691 + }, + { + "PageNumber": 1, + "Top": 980, + "Left": 839, + "Width": 48, + "Height": 9, + "Text": "\u002B24H \u2013 (-20)", + "Confidence": null, + "CenterX": 863 + }, + { + "PageNumber": 1, + "Top": 1013, + "Left": 105, + "Width": 31, + "Height": 13, + "Text": "201-", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 1027, + "Left": 110, + "Width": 23, + "Height": 13, + "Text": "250", + "Confidence": null, + "CenterX": 121.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 152, + "Width": 117, + "Height": 9, + "Text": "When your strike lands on foe\u0027s", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 1007, + "Left": 152, + "Width": 105, + "Height": 9, + "Text": "back, bones crackle and pop.", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 152, + "Width": 94, + "Height": 9, + "Text": "Internal damage is certain.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 285, + "Width": 140, + "Height": 9, + "Text": "Rip open foe\u0027s abdomen. Blood covers", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 1007, + "Left": 285, + "Width": 120, + "Height": 9, + "Text": "you. This cruel wound will not be", + "Confidence": null, + "CenterX": 345 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 285, + "Width": 47, + "Height": 9, + "Text": "healed easily.", + "Confidence": null, + "CenterX": 308.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 434, + "Width": 140, + "Height": 9, + "Text": "Vicious blow to foe\u0027s leg. You can hear", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 1007, + "Left": 434, + "Width": 133, + "Height": 9, + "Text": "the mithril in your weapon talking, as", + "Confidence": null, + "CenterX": 500.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 434, + "Width": 60, + "Height": 9, + "Text": "you rip foe open.", + "Confidence": null, + "CenterX": 464 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 586, + "Width": 135, + "Height": 9, + "Text": "You duck around foe\u0027s side and catch", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 1007, + "Left": 586, + "Width": 127, + "Height": 9, + "Text": "him in the ear. Blow collapses skull.", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 586, + "Width": 138, + "Height": 9, + "Text": "Foe dies of massive brain damage in 3", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 586, + "Width": 27, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 599.5 + }, + { + "PageNumber": 1, + "Top": 997, + "Left": 737, + "Width": 146, + "Height": 9, + "Text": "Foe steps right into your swing. You tear", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 1007, + "Left": 737, + "Width": 145, + "Height": 9, + "Text": "open foe\u0027s abdomenal and drop him in a", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 1018, + "Left": 737, + "Width": 139, + "Height": 9, + "Text": "heap. You are entangled in his fall. Foe", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 1028, + "Left": 737, + "Width": 102, + "Height": 9, + "Text": "dies in 4 rounds from shock.", + "Confidence": null, + "CenterX": 788 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 188, + "Width": 91, + "Height": 9, + "Text": "\u002B35H \u2013 2\u2211 \u2013 10\u222B \u2013 (-30)", + "Confidence": null, + "CenterX": 233.5 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 329, + "Width": 99, + "Height": 9, + "Text": "\u002B35H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 378.5 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 479, + "Width": 99, + "Height": 9, + "Text": "\u002B30H \u2013 6\u2211\u220F \u2013 12\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 528.5 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 682, + "Width": 48, + "Height": 9, + "Text": "\u002B15H \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 706 + }, + { + "PageNumber": 1, + "Top": 1048, + "Left": 866, + "Width": 19, + "Height": 9, + "Text": "\u002B35H", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 1087, + "Left": 105, + "Width": 30, + "Height": 13, + "Text": "251\u002B", + "Confidence": null, + "CenterX": 120 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 152, + "Width": 113, + "Height": 9, + "Text": "Foe lowers his eyes within your", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 152, + "Width": 128, + "Height": 9, + "Text": "reach and you strike with great skill", + "Confidence": null, + "CenterX": 216 + }, + { + "PageNumber": 1, + "Top": 1085, + "Left": 152, + "Width": 82, + "Height": 9, + "Text": "and fury. He is blinded.", + "Confidence": null, + "CenterX": 193 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 285, + "Width": 142, + "Height": 9, + "Text": "You leap up and slam foe in the eye. He", + "Confidence": null, + "CenterX": 356 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 285, + "Width": 129, + "Height": 9, + "Text": "does not realize he is dead yet. Next", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 1085, + "Left": 285, + "Width": 141, + "Height": 9, + "Text": "round he will. Your weapon is stuck for", + "Confidence": null, + "CenterX": 355.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 285, + "Width": 30, + "Height": 9, + "Text": "a round.", + "Confidence": null, + "CenterX": 300 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 434, + "Width": 116, + "Height": 9, + "Text": "Awe inspiring strike drives bone", + "Confidence": null, + "CenterX": 492 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 434, + "Width": 129, + "Height": 9, + "Text": "through both lungs. Foe realizes his", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 1085, + "Left": 434, + "Width": 146, + "Height": 9, + "Text": "doom before falling into a coma. He dies", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 434, + "Width": 47, + "Height": 9, + "Text": "in 18 rounds.", + "Confidence": null, + "CenterX": 457.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 586, + "Width": 141, + "Height": 9, + "Text": "Your mighty blow is the stuff epics are", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 586, + "Width": 141, + "Height": 9, + "Text": "made of. Foe\u0027s spine is broken. He dies", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 1085, + "Left": 586, + "Width": 43, + "Height": 9, + "Text": "in 2 rounds.", + "Confidence": null, + "CenterX": 607.5 + }, + { + "PageNumber": 1, + "Top": 1064, + "Left": 737, + "Width": 124, + "Height": 9, + "Text": "Strike to side kills foe after a chain", + "Confidence": null, + "CenterX": 799 + }, + { + "PageNumber": 1, + "Top": 1075, + "Left": 737, + "Width": 122, + "Height": 9, + "Text": "reaction of bones shatter. You are", + "Confidence": null, + "CenterX": 798 + }, + { + "PageNumber": 1, + "Top": 1085, + "Left": 737, + "Width": 70, + "Height": 9, + "Text": "covered with blood.", + "Confidence": null, + "CenterX": 772 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 197, + "Width": 82, + "Height": 9, + "Text": "\u002B20H \u2013 6\u2211\u220F \u2013 (\u2013100)", + "Confidence": null, + "CenterX": 238 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 406, + "Width": 22, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 417 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 568, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 710, + "Width": 19, + "Height": 9, + "Text": "\u002B50H", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 1116, + "Left": 862, + "Width": 24, + "Height": 9, + "Text": "\u002B100H", + "Confidence": null, + "CenterX": 874 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 209, + "Width": 568, + "Height": 14, + "Text": "4.10 super large creature critical strike table", + "Confidence": null, + "CenterX": 493 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 169, + "Width": 89, + "Height": 13, + "Text": "normal", + "Confidence": null, + "CenterX": 213.5 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 323, + "Width": 70, + "Height": 13, + "Text": "magic", + "Confidence": null, + "CenterX": 358 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 462, + "Width": 90, + "Height": 13, + "Text": "mithril", + "Confidence": null, + "CenterX": 507 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 600, + "Width": 115, + "Height": 13, + "Text": "holy arms", + "Confidence": null, + "CenterX": 657.5 + }, + { + "PageNumber": 1, + "Top": 72, + "Left": 769, + "Width": 86, + "Height": 13, + "Text": "slaying", + "Confidence": null, + "CenterX": 812 + }, + { + "PageNumber": 1, + "Top": 146, + "Left": 285, + "Width": 140, + "Height": 9, + "Text": "Your weapon hits at a bad angle. Check", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 157, + "Left": 285, + "Width": 117, + "Height": 9, + "Text": "for weapon breakage. Bum Luck.", + "Confidence": null, + "CenterX": 343.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/pages/page-001.png new file mode 100644 index 0000000..b1d53ad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/parsed-cells.json new file mode 100644 index 0000000..a16015f --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/parsed-cells.json @@ -0,0 +1,6512 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "NORMAL", + "Lines": [ + "You strike the terrible beast hard.", + "Your weapon breaks in half.", + "\u002B10H" + ], + "BaseLines": [ + "You strike the terrible beast hard.", + "Your weapon breaks in half.", + "\u002B10H" + ], + "RawCellText": "You strike the terrible beast hard.\nYour weapon breaks in half.\n\u002B10H", + "DescriptionText": "You strike the terrible beast hard. Your weapon breaks in half.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 96, + "Width": 127, + "Height": 43 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 384, + "BoundsWidth": 508, + "BoundsHeight": 172, + "CropLeft": 560, + "CropTop": 352, + "CropWidth": 604, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "MAGIC", + "Lines": [ + "Your weapon is knocked from your", + "hand. It will take 2 rounds to recover.", + "\u002B10H" + ], + "BaseLines": [ + "Your weapon is knocked from your", + "hand. It will take 2 rounds to recover.", + "\u002B10H" + ], + "RawCellText": "Your weapon is knocked from your\nhand. It will take 2 rounds to recover.\n\u002B10H", + "DescriptionText": "Your weapon is knocked from your hand. It will take 2 rounds to recover.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 96, + "Width": 143, + "Height": 43 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 384, + "BoundsWidth": 572, + "BoundsHeight": 172, + "CropLeft": 1092, + "CropTop": 352, + "CropWidth": 668, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your strike is powerful. You fumble the", + "rest of the round.", + "\u002B10H" + ], + "BaseLines": [ + "Your strike is powerful. You fumble the", + "rest of the round.", + "\u002B10H" + ], + "RawCellText": "Your strike is powerful. You fumble the\nrest of the round.\n\u002B10H", + "DescriptionText": "Your strike is powerful. You fumble the rest of the round.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 96, + "Width": 144, + "Height": 43 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 384, + "BoundsWidth": 576, + "BoundsHeight": 172, + "CropLeft": 1688, + "CropTop": 352, + "CropWidth": 672, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your strike is powerful, but your grip", + "was terrible. Roll a fumble for yourself.", + "\u002B10H" + ], + "BaseLines": [ + "Your strike is powerful, but your grip", + "was terrible. Roll a fumble for yourself.", + "\u002B10H" + ], + "RawCellText": "Your strike is powerful, but your grip\nwas terrible. Roll a fumble for yourself.\n\u002B10H", + "DescriptionText": "Your strike is powerful, but your grip was terrible. Roll a fumble for yourself.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 96, + "Width": 143, + "Height": 43 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 384, + "BoundsWidth": 572, + "BoundsHeight": 172, + "CropLeft": 2296, + "CropTop": 352, + "CropWidth": 668, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "SLAYING", + "Lines": [ + "The numbing recoil of your strike to foe\u0027s", + "chest sends you stumbling back.", + "\u002B10H" + ], + "BaseLines": [ + "The numbing recoil of your strike to foe\u0027s", + "chest sends you stumbling back.", + "\u002B10H" + ], + "RawCellText": "The numbing recoil of your strike to foe\u0027s\nchest sends you stumbling back.\n\u002B10H", + "DescriptionText": "The numbing recoil of your strike to foe\u0027s chest sends you stumbling back.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 96, + "Width": 149, + "Height": 43 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 384, + "BoundsWidth": 596, + "BoundsHeight": 172, + "CropLeft": 2900, + "CropTop": 352, + "CropWidth": 692, + "CropHeight": 236, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "NORMAL", + "Lines": [ + "A decoration pops off your weapon", + "with impact to foe\u0027s side.", + "\u002B2H" + ], + "BaseLines": [ + "A decoration pops off your weapon", + "with impact to foe\u0027s side.", + "\u002B2H" + ], + "RawCellText": "A decoration pops off your weapon\nwith impact to foe\u0027s side.\n\u002B2H", + "DescriptionText": "A decoration pops off your weapon with impact to foe\u0027s side.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 145, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 580, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 548, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "MAGIC", + "Lines": [ + "Your Your weapon hits at a bad angle. Take a weapon hits at a bad angle. Check", + "weapon for weapon breakage. Bum Luck. strength check. Bum luck.", + "\u002B3H" + ], + "BaseLines": [ + "Your Your weapon hits at a bad angle. Take a weapon hits at a bad angle. Check", + "weapon for weapon breakage. Bum Luck. strength check. Bum luck.", + "\u002B3H" + ], + "RawCellText": "Your Your weapon hits at a bad angle. Take a weapon hits at a bad angle. Check\nweapon for weapon breakage. Bum Luck. strength check. Bum luck.\n\u002B3H", + "DescriptionText": "Your Your weapon hits at a bad angle. Take a weapon hits at a bad angle. Check weapon for weapon breakage. Bum Luck. strength check. Bum luck.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 145, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 580, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 548, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your weapon lands uneven across foe\u0027s", + "shoulder. Make a breakage check.", + "\u002B4H" + ], + "BaseLines": [ + "Your weapon lands uneven across foe\u0027s", + "shoulder. Make a breakage check.", + "\u002B4H" + ], + "RawCellText": "Your weapon lands uneven across foe\u0027s\nshoulder. Make a breakage check.\n\u002B4H", + "DescriptionText": "Your weapon lands uneven across foe\u0027s shoulder. Make a breakage check.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 145, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 580, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 548, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Blow foe\u0027s arm. Ready for a better", + "strike. You gain the initiative next round.", + "\u002B6H" + ], + "BaseLines": [ + "Blow foe\u0027s arm. Ready for a better", + "strike. You gain the initiative next round.", + "\u002B6H" + ], + "RawCellText": "Blow foe\u0027s arm. Ready for a better\nstrike. You gain the initiative next round.\n\u002B6H", + "DescriptionText": "Blow foe\u0027s arm. Ready for a better strike. You gain the initiative next round.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 145, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 580, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 548, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike lands at a bad angle. You check for", + "weapon breakage.", + "\u002B8H" + ], + "BaseLines": [ + "Strike lands at a bad angle. You check for", + "weapon breakage.", + "\u002B8H" + ], + "RawCellText": "Strike lands at a bad angle. You check for\nweapon breakage.\n\u002B8H", + "DescriptionText": "Strike lands at a bad angle. You check for weapon breakage.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 145, + "Width": 151, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 580, + "BoundsWidth": 604, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 548, + "CropWidth": 700, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "NORMAL", + "Lines": [ + "You are daunted by the beast\u0027s", + "gaze and swing weakly.", + "\u002B3H" + ], + "BaseLines": [ + "You are daunted by the beast\u0027s", + "gaze and swing weakly.", + "\u002B3H" + ], + "RawCellText": "You are daunted by the beast\u0027s\ngaze and swing weakly.\n\u002B3H", + "DescriptionText": "You are daunted by the beast\u0027s gaze and swing weakly.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 192, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 768, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 736, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "MAGIC", + "Lines": [ + "Your blow was deflected, but you gain", + "the initiative next round.", + "\u002B4H" + ], + "BaseLines": [ + "Your blow was deflected, but you gain", + "the initiative next round.", + "\u002B4H" + ], + "RawCellText": "Your blow was deflected, but you gain\nthe initiative next round.\n\u002B4H", + "DescriptionText": "Your blow was deflected, but you gain the initiative next round.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 192, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 768, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 736, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "MITHRIL", + "Lines": [ + "Acceptable strike to foe\u0027s leg.You gain", + "the initiative next round.", + "\u002B5H" + ], + "BaseLines": [ + "Acceptable strike to foe\u0027s leg.You gain", + "the initiative next round.", + "\u002B5H" + ], + "RawCellText": "Acceptable strike to foe\u0027s leg.You gain\nthe initiative next round.\n\u002B5H", + "DescriptionText": "Acceptable strike to foe\u0027s leg.You gain the initiative next round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 192, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 768, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 736, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Back strike. Weapon seems to damage", + "by touch only.", + "\u002B8H" + ], + "BaseLines": [ + "Back strike. Weapon seems to damage", + "by touch only.", + "\u002B8H" + ], + "RawCellText": "Back strike. Weapon seems to damage\nby touch only.\n\u002B8H", + "DescriptionText": "Back strike. Weapon seems to damage by touch only.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 192, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 768, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 736, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-20", + "ColumnKey": "SLAYING", + "Lines": [ + "Blow to back. You gain the initiative next", + "round.", + "\u002B10H" + ], + "BaseLines": [ + "Blow to back. You gain the initiative next", + "round.", + "\u002B10H" + ], + "RawCellText": "Blow to back. You gain the initiative next\nround.\n\u002B10H", + "DescriptionText": "Blow to back. You gain the initiative next round.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 192, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__11-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 768, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 736, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "NORMAL", + "Lines": [ + "This terrible creature\u0027s hide deflects", + "the strongest blows.", + "\u002B4H" + ], + "BaseLines": [ + "This terrible creature\u0027s hide deflects", + "the strongest blows.", + "\u002B4H" + ], + "RawCellText": "This terrible creature\u0027s hide deflects\nthe strongest blows.\n\u002B4H", + "DescriptionText": "This terrible creature\u0027s hide deflects the strongest blows.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 238, + "Width": 129, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 952, + "BoundsWidth": 516, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 920, + "CropWidth": 612, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "MAGIC", + "Lines": [ + "Glancing side blow. A spark of light", + "reminds you your weapon is magical.", + "\u002B5H" + ], + "BaseLines": [ + "Glancing side blow. A spark of light", + "reminds you your weapon is magical.", + "\u002B5H" + ], + "RawCellText": "Glancing side blow. A spark of light\nreminds you your weapon is magical.\n\u002B5H", + "DescriptionText": "Glancing side blow. A spark of light reminds you your weapon is magical.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 238, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 952, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 920, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "MITHRIL", + "Lines": [ + "Glancing blow smears mithril like chalk", + "across beast\u0027s hide.", + "\u002B6H" + ], + "BaseLines": [ + "Glancing blow smears mithril like chalk", + "across beast\u0027s hide.", + "\u002B6H" + ], + "RawCellText": "Glancing blow smears mithril like chalk\nacross beast\u0027s hide.\n\u002B6H", + "DescriptionText": "Glancing blow smears mithril like chalk across beast\u0027s hide.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 238, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 952, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 920, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your strike is solid and flat, but foe is", + "not slowed at all.", + "\u002B10H" + ], + "BaseLines": [ + "Your strike is solid and flat, but foe is", + "not slowed at all.", + "\u002B10H" + ], + "RawCellText": "Your strike is solid and flat, but foe is\nnot slowed at all.\n\u002B10H", + "DescriptionText": "Your strike is solid and flat, but foe is not slowed at all.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 238, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 952, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 920, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-30", + "ColumnKey": "SLAYING", + "Lines": [ + "Sparks fly from your weapon as it", + "embraces your foe.", + "\u002B12H" + ], + "BaseLines": [ + "Sparks fly from your weapon as it", + "embraces your foe.", + "\u002B12H" + ], + "RawCellText": "Sparks fly from your weapon as it\nembraces your foe.\n\u002B12H", + "DescriptionText": "Sparks fly from your weapon as it embraces your foe.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 238, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__21-30.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 952, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 920, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid strike to foe\u0027s side with your", + "common weapon fails to penetrate.", + "\u002B5H" + ], + "BaseLines": [ + "Solid strike to foe\u0027s side with your", + "common weapon fails to penetrate.", + "\u002B5H" + ], + "RawCellText": "Solid strike to foe\u0027s side with your\ncommon weapon fails to penetrate.\n\u002B5H", + "DescriptionText": "Solid strike to foe\u0027s side with your common weapon fails to penetrate.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 283, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 1132, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 1100, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "MAGIC", + "Lines": [ + "Foe is unbalanced. You gain the", + "initiative next round.", + "\u002B6H" + ], + "BaseLines": [ + "Foe is unbalanced. You gain the", + "initiative next round.", + "\u002B6H" + ], + "RawCellText": "Foe is unbalanced. You gain the\ninitiative next round.\n\u002B6H", + "DescriptionText": "Foe is unbalanced. You gain the initiative next round.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 283, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 1132, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 1100, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "MITHRIL", + "Lines": [ + "Solid, but nowhere near a vital spot.", + "Bruise foe\u0027s calf muscle.", + "\u002B7H" + ], + "BaseLines": [ + "Solid, but nowhere near a vital spot.", + "Bruise foe\u0027s calf muscle.", + "\u002B7H" + ], + "RawCellText": "Solid, but nowhere near a vital spot.\nBruise foe\u0027s calf muscle.\n\u002B7H", + "DescriptionText": "Solid, but nowhere near a vital spot. Bruise foe\u0027s calf muscle.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 283, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1132, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 1100, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You strike the fell titan in the chest. He", + "yells back at you.", + "\u002B12H" + ], + "BaseLines": [ + "You strike the fell titan in the chest. He", + "yells back at you.", + "\u002B12H" + ], + "RawCellText": "You strike the fell titan in the chest. He\nyells back at you.\n\u002B12H", + "DescriptionText": "You strike the fell titan in the chest. He yells back at you.", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 283, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 1132, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 1100, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "31-40", + "ColumnKey": "SLAYING", + "Lines": [ + "Boom! Solid without question. Try a vital", + "spot next time.", + "\u002B15H" + ], + "BaseLines": [ + "Boom! Solid without question. Try a vital", + "spot next time.", + "\u002B15H" + ], + "RawCellText": "Boom! Solid without question. Try a vital\nspot next time.\n\u002B15H", + "DescriptionText": "Boom! Solid without question. Try a vital spot next time.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 283, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__31-40.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1132, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 1100, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "NORMAL", + "Lines": [ + "Your strike was more of a last", + "minute parry to avoid the beast\u0027s.", + "\u002B6H" + ], + "BaseLines": [ + "Your strike was more of a last", + "minute parry to avoid the beast\u0027s.", + "\u002B6H" + ], + "RawCellText": "Your strike was more of a last\nminute parry to avoid the beast\u0027s.\n\u002B6H", + "DescriptionText": "Your strike was more of a last minute parry to avoid the beast\u0027s.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 330, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 1320, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 1288, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "MAGIC", + "Lines": [ + "You deal out a sharp and hard leg", + "strike. Foe steps back to look at his leg.", + "\u002B7H" + ], + "BaseLines": [ + "You deal out a sharp and hard leg", + "strike. Foe steps back to look at his leg.", + "\u002B7H" + ], + "RawCellText": "You deal out a sharp and hard leg\nstrike. Foe steps back to look at his leg.\n\u002B7H", + "DescriptionText": "You deal out a sharp and hard leg strike. Foe steps back to look at his leg.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 330, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 1320, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 1288, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "MITHRIL", + "Lines": [ + "Strike lands on foe\u0027s horn. The vibration", + "has some effect.", + "\u002B8H" + ], + "BaseLines": [ + "Strike lands on foe\u0027s horn. The vibration", + "has some effect.", + "\u002B8H" + ], + "RawCellText": "Strike lands on foe\u0027s horn. The vibration\nhas some effect.\n\u002B8H", + "DescriptionText": "Strike lands on foe\u0027s horn. The vibration has some effect.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 330, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1320, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 1288, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You step under his assault and strike", + "him hard in the abdomen.", + "\u002B15H" + ], + "BaseLines": [ + "You step under his assault and strike", + "him hard in the abdomen.", + "\u002B15H" + ], + "RawCellText": "You step under his assault and strike\nhim hard in the abdomen.\n\u002B15H", + "DescriptionText": "You step under his assault and strike him hard in the abdomen.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 330, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 1320, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 1288, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "41-50", + "ColumnKey": "SLAYING", + "Lines": [ + "Rip sinew, hair, horn and scale with a", + "glancing blow to side.", + "\u002B18H" + ], + "BaseLines": [ + "Rip sinew, hair, horn and scale with a", + "glancing blow to side.", + "\u002B18H" + ], + "RawCellText": "Rip sinew, hair, horn and scale with a\nglancing blow to side.\n\u002B18H", + "DescriptionText": "Rip sinew, hair, horn and scale with a glancing blow to side.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 330, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__41-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1320, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 1288, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "NORMAL", + "Lines": [ + "Two light and quick shots to foe\u0027s", + "forearm, provides a modest result.", + "\u002B7H" + ], + "BaseLines": [ + "Two light and quick shots to foe\u0027s", + "forearm, provides a modest result.", + "\u002B7H" + ], + "RawCellText": "Two light and quick shots to foe\u0027s\nforearm, provides a modest result.\n\u002B7H", + "DescriptionText": "Two light and quick shots to foe\u0027s forearm, provides a modest result.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 375, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 1500, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 560, + "CropTop": 1468, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to foe\u0027s back. Foe\u0027s hide is tough", + "there. You need more strength.", + "\u002B8H" + ], + "BaseLines": [ + "Blow to foe\u0027s back. Foe\u0027s hide is tough", + "there. You need more strength.", + "\u002B8H" + ], + "RawCellText": "Blow to foe\u0027s back. Foe\u0027s hide is tough\nthere. You need more strength.\n\u002B8H", + "DescriptionText": "Blow to foe\u0027s back. Foe\u0027s hide is tough there. You need more strength.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 375, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 1500, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1092, + "CropTop": 1468, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your strike thumps foe on his nose.", + "He is insulted, but not wounded badly.", + "\u002B9H" + ], + "BaseLines": [ + "Your strike thumps foe on his nose.", + "He is insulted, but not wounded badly.", + "\u002B9H" + ], + "RawCellText": "Your strike thumps foe on his nose.\nHe is insulted, but not wounded badly.\n\u002B9H", + "DescriptionText": "Your strike thumps foe on his nose. He is insulted, but not wounded badly.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 375, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1500, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1688, + "CropTop": 1468, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "The vile beast leans foward. You strike at", + "his snout in frantic response.", + "\u002B18H" + ], + "BaseLines": [ + "The vile beast leans foward. You strike at", + "his snout in frantic response.", + "\u002B18H" + ], + "RawCellText": "The vile beast leans foward. You strike at\nhis snout in frantic response.\n\u002B18H", + "DescriptionText": "The vile beast leans foward. You strike at his snout in frantic response.", + "RawAffixText": "\u002B18H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 18, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B18H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 375, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 1500, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2296, + "CropTop": 1468, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-65", + "ColumnKey": "SLAYING", + "Lines": [ + "Unexpected weak spot found with your", + "strike to foe\u0027s side.", + "\u002B20H" + ], + "BaseLines": [ + "Unexpected weak spot found with your", + "strike to foe\u0027s side.", + "\u002B20H" + ], + "RawCellText": "Unexpected weak spot found with your\nstrike to foe\u0027s side.\n\u002B20H", + "DescriptionText": "Unexpected weak spot found with your strike to foe\u0027s side.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 375, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__51-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1500, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2900, + "CropTop": 1468, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "NORMAL", + "Lines": [ + "Strike foe\u0027s neck with the flat of", + "your weapon during a moment of", + "opportunity. \u002B20H", + "\u002B20H" + ], + "BaseLines": [ + "Strike foe\u0027s neck with the flat of", + "your weapon during a moment of", + "opportunity. \u002B20H", + "\u002B20H" + ], + "RawCellText": "Strike foe\u0027s neck with the flat of\nyour weapon during a moment of\nopportunity. \u002B20H\n\u002B20H", + "DescriptionText": "Strike foe\u0027s neck with the flat of your weapon during a moment of opportunity. \u002B20H", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 422, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 1688, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 560, + "CropTop": 1656, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "MAGIC", + "Lines": [ + "You step under foe\u0027s lunge and use the", + "force against him. Strike to under belly.", + "He feels the pain instantly.", + "\u002B12H \u2013 3\u222B \u2013 (-10)" + ], + "BaseLines": [ + "You step under foe\u0027s lunge and use the", + "force against him. Strike to under belly.", + "He feels the pain instantly.", + "\u002B12H \u2013 3\u222B \u2013 (-10)" + ], + "RawCellText": "You step under foe\u0027s lunge and use the\nforce against him. Strike to under belly.\nHe feels the pain instantly.\n\u002B12H \u2013 3\u222B \u2013 (-10)", + "DescriptionText": "You step under foe\u0027s lunge and use the force against him. Strike to under belly. He feels the pain instantly.", + "RawAffixText": "\u002B12H \u2013 3\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 422, + "Width": 142, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 1688, + "BoundsWidth": 568, + "BoundsHeight": 196, + "CropLeft": 1092, + "CropTop": 1656, + "CropWidth": 664, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "MITHRIL", + "Lines": [ + "Shin strike. Skin is torn open and bone", + "is bruised. This one hurts. You have", + "initiative.", + "\u002B15H \u2013 5\u222B \u2013 (-10)" + ], + "BaseLines": [ + "Shin strike. Skin is torn open and bone", + "is bruised. This one hurts. You have", + "initiative.", + "\u002B15H \u2013 5\u222B \u2013 (-10)" + ], + "RawCellText": "Shin strike. Skin is torn open and bone\nis bruised. This one hurts. You have\ninitiative.\n\u002B15H \u2013 5\u222B \u2013 (-10)", + "DescriptionText": "Shin strike. Skin is torn open and bone is bruised. This one hurts. You have initiative.", + "RawAffixText": "\u002B15H \u2013 5\u222B \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 422, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1688, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 1656, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your blow lands against foe\u0027s shoulder.", + "You are pleased with the effect. Blood", + "pours from the wound.", + "\u2211\u220F \u2013 10 \u222B \u2013 (-15)" + ], + "BaseLines": [ + "Your blow lands against foe\u0027s shoulder.", + "You are pleased with the effect. Blood", + "pours from the wound.", + "\u2211\u220F \u2013 10 \u222B \u2013 (-15)" + ], + "RawCellText": "Your blow lands against foe\u0027s shoulder.\nYou are pleased with the effect. Blood\npours from the wound.\n\u2211\u220F \u2013 10 \u222B \u2013 (-15)", + "DescriptionText": "Your blow lands against foe\u0027s shoulder. You are pleased with the effect. Blood pours from the wound.", + "RawAffixText": "\u2211\u220F \u2013 10 \u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10 \u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 422, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 1688, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2296, + "CropTop": 1656, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "SLAYING", + "Lines": [ + "Your weapon seems to dig into foe\u0027s", + "chest and devour his heart. Foe dies", + "instantly. You are covered with blood.", + "\u002B50H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Your weapon seems to dig into foe\u0027s", + "chest and devour his heart. Foe dies", + "instantly. You are covered with blood.", + "\u002B50H \u2013 (\u002B20)" + ], + "RawCellText": "Your weapon seems to dig into foe\u0027s\nchest and devour his heart. Foe dies\ninstantly. You are covered with blood.\n\u002B50H \u2013 (\u002B20)", + "DescriptionText": "Your weapon seems to dig into foe\u0027s chest and devour his heart. Foe dies instantly. You are covered with blood.", + "RawAffixText": "\u002B50H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 422, + "Width": 149, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1688, + "BoundsWidth": 596, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 1656, + "CropWidth": 692, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid strike on foe\u0027s leg. You move", + "quickly away to avoid the", + "retaliation.", + "\u002B8H" + ], + "BaseLines": [ + "Solid strike on foe\u0027s leg. You move", + "quickly away to avoid the", + "retaliation.", + "\u002B8H" + ], + "RawCellText": "Solid strike on foe\u0027s leg. You move\nquickly away to avoid the\nretaliation.\n\u002B8H", + "DescriptionText": "Solid strike on foe\u0027s leg. You move quickly away to avoid the retaliation.", + "RawAffixText": "\u002B8H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 479, + "Width": 129, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 1916, + "BoundsWidth": 516, + "BoundsHeight": 196, + "CropLeft": 560, + "CropTop": 1884, + "CropWidth": 612, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to thigh leaves a bad bruise. Your", + "weapon cracks and bends. It will break", + "after one more strike.", + "\u002B9H" + ], + "BaseLines": [ + "Blow to thigh leaves a bad bruise. Your", + "weapon cracks and bends. It will break", + "after one more strike.", + "\u002B9H" + ], + "RawCellText": "Blow to thigh leaves a bad bruise. Your\nweapon cracks and bends. It will break\nafter one more strike.\n\u002B9H", + "DescriptionText": "Blow to thigh leaves a bad bruise. Your weapon cracks and bends. It will break after one more strike.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 479, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 1916, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1092, + "CropTop": 1884, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "MITHRIL", + "Lines": [ + "Hammering foe\u0027s thigh gets you some", + "respect. You have the initiative.", + "\u002B10H" + ], + "BaseLines": [ + "Hammering foe\u0027s thigh gets you some", + "respect. You have the initiative.", + "\u002B10H" + ], + "RawCellText": "Hammering foe\u0027s thigh gets you some\nrespect. You have the initiative.\n\u002B10H", + "DescriptionText": "Hammering foe\u0027s thigh gets you some respect. You have the initiative.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 479, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 1916, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 1884, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Hard blow to foe\u0027s thigh. He stumbles,", + "but does not fall. You have the initiative", + "next round.", + "\u002B20H" + ], + "BaseLines": [ + "Hard blow to foe\u0027s thigh. He stumbles,", + "but does not fall. You have the initiative", + "next round.", + "\u002B20H" + ], + "RawCellText": "Hard blow to foe\u0027s thigh. He stumbles,\nbut does not fall. You have the initiative\nnext round.\n\u002B20H", + "DescriptionText": "Hard blow to foe\u0027s thigh. He stumbles, but does not fall. You have the initiative next round.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 479, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 1916, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2296, + "CropTop": 1884, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "SLAYING", + "Lines": [ + "Flat strike to foe\u0027s upper body. Heavy", + "blow breaks some bones. Foe\u0027s guard is", + "down.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Flat strike to foe\u0027s upper body. Heavy", + "blow breaks some bones. Foe\u0027s guard is", + "down.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "RawCellText": "Flat strike to foe\u0027s upper body. Heavy\nblow breaks some bones. Foe\u0027s guard is\ndown.\n\u002B30H \u2013 2\u2211\u220F", + "DescriptionText": "Flat strike to foe\u0027s upper body. Heavy blow breaks some bones. Foe\u0027s guard is down.", + "RawAffixText": "\u002B30H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 479, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 1916, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 1884, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "NORMAL", + "Lines": [ + "Solid strike to foe\u0027s head just", + "bounces off.", + "\u002B9H" + ], + "BaseLines": [ + "Solid strike to foe\u0027s head just", + "bounces off.", + "\u002B9H" + ], + "RawCellText": "Solid strike to foe\u0027s head just\nbounces off.\n\u002B9H", + "DescriptionText": "Solid strike to foe\u0027s head just bounces off.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 534, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 2136, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 560, + "CropTop": 2104, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "MAGIC", + "Lines": [ + "Minor forearm wound.The beast used", + "its forearm for defense. Foe soaks up", + "the damage.", + "\u002B10H" + ], + "BaseLines": [ + "Minor forearm wound.The beast used", + "its forearm for defense. Foe soaks up", + "the damage.", + "\u002B10H" + ], + "RawCellText": "Minor forearm wound.The beast used\nits forearm for defense. Foe soaks up\nthe damage.\n\u002B10H", + "DescriptionText": "Minor forearm wound.The beast used its forearm for defense. Foe soaks up the damage.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 534, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 2136, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1092, + "CropTop": 2104, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "MITHRIL", + "Lines": [ + "Blow to foe\u0027s upper arm. This strike had", + "few vices, but it was weak. Get it", + "together.", + "\u002B15H" + ], + "BaseLines": [ + "Blow to foe\u0027s upper arm. This strike had", + "few vices, but it was weak. Get it", + "together.", + "\u002B15H" + ], + "RawCellText": "Blow to foe\u0027s upper arm. This strike had\nfew vices, but it was weak. Get it\ntogether.\n\u002B15H", + "DescriptionText": "Blow to foe\u0027s upper arm. This strike had few vices, but it was weak. Get it together.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 534, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2136, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 2104, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Catch foe in his exposed leg. You come", + "down hard on it. He will have a bruise.", + "It slows him. You have the initiative.", + "\u002B13H \u2013 5\u222B \u2013 (-10) \u2013 (\u002B10)" + ], + "BaseLines": [ + "Catch foe in his exposed leg. You come", + "down hard on it. He will have a bruise.", + "It slows him. You have the initiative.", + "\u002B13H \u2013 5\u222B \u2013 (-10) \u2013 (\u002B10)" + ], + "RawCellText": "Catch foe in his exposed leg. You come\ndown hard on it. He will have a bruise.\nIt slows him. You have the initiative.\n\u002B13H \u2013 5\u222B \u2013 (-10) \u2013 (\u002B10)", + "DescriptionText": "Catch foe in his exposed leg. You come down hard on it. He will have a bruise. It slows him. You have the initiative.", + "RawAffixText": "\u002B13H \u2013 5\u222B \u2013 (-10) \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 534, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 2136, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2296, + "CropTop": 2104, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-80", + "ColumnKey": "SLAYING", + "Lines": [ + "Hard glancing strike crosses foe\u0027s", + "shoulder and chest. Shoulder is slashed", + "and chest is bruised.", + "\u002B24H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Hard glancing strike crosses foe\u0027s", + "shoulder and chest. Shoulder is slashed", + "and chest is bruised.", + "\u002B24H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-20)" + ], + "RawCellText": "Hard glancing strike crosses foe\u0027s\nshoulder and chest. Shoulder is slashed\nand chest is bruised.\n\u002B24H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-20)", + "DescriptionText": "Hard glancing strike crosses foe\u0027s shoulder and chest. Shoulder is slashed and chest is bruised.", + "RawAffixText": "\u002B24H \u2013 3\u2211\u220F \u2013 5\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 534, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__71-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2136, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 2104, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "NORMAL", + "Lines": [ + "Violent strike to foe\u0027s forearm. Foe", + "is bruised. Your weapon must make", + "a breakage check.", + "\u002B10H" + ], + "BaseLines": [ + "Violent strike to foe\u0027s forearm. Foe", + "is bruised. Your weapon must make", + "a breakage check.", + "\u002B10H" + ], + "RawCellText": "Violent strike to foe\u0027s forearm. Foe\nis bruised. Your weapon must make\na breakage check.\n\u002B10H", + "DescriptionText": "Violent strike to foe\u0027s forearm. Foe is bruised. Your weapon must make a breakage check.", + "RawAffixText": "\u002B10H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 591, + "Width": 130, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 2364, + "BoundsWidth": 520, + "BoundsHeight": 200, + "CropLeft": 560, + "CropTop": 2332, + "CropWidth": 616, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow to foe\u0027s arm joint lands poorly. Foe", + "will have a bruise. You think that you", + "know what went wrong.", + "\u002B15H" + ], + "BaseLines": [ + "Blow to foe\u0027s arm joint lands poorly. Foe", + "will have a bruise. You think that you", + "know what went wrong.", + "\u002B15H" + ], + "RawCellText": "Blow to foe\u0027s arm joint lands poorly. Foe\nwill have a bruise. You think that you\nknow what went wrong.\n\u002B15H", + "DescriptionText": "Blow to foe\u0027s arm joint lands poorly. Foe will have a bruise. You think that you know what went wrong.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 591, + "Width": 146, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 2364, + "BoundsWidth": 584, + "BoundsHeight": 200, + "CropLeft": 1092, + "CropTop": 2332, + "CropWidth": 680, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "MITHRIL", + "Lines": [ + "Your strike hit no vitals, but you can", + "hear the ribs in foe\u0027s side crackle. Foe", + "fights on in some pain.", + "\u002B20H" + ], + "BaseLines": [ + "Your strike hit no vitals, but you can", + "hear the ribs in foe\u0027s side crackle. Foe", + "fights on in some pain.", + "\u002B20H" + ], + "RawCellText": "Your strike hit no vitals, but you can\nhear the ribs in foe\u0027s side crackle. Foe\nfights on in some pain.\n\u002B20H", + "DescriptionText": "Your strike hit no vitals, but you can hear the ribs in foe\u0027s side crackle. Foe fights on in some pain.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 591, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2364, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 2332, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "To make this strike land well, you", + "almost climb onto foe. You deal out a", + "brutal srike to his neck and leap back.", + "\u002B12H \u2013 \u03C0 \u2013 4\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "To make this strike land well, you", + "almost climb onto foe. You deal out a", + "brutal srike to his neck and leap back.", + "\u002B12H \u2013 \u03C0 \u2013 4\u222B \u2013 (\u002B20)" + ], + "RawCellText": "To make this strike land well, you\nalmost climb onto foe. You deal out a\nbrutal srike to his neck and leap back.\n\u002B12H \u2013 \u03C0 \u2013 4\u222B \u2013 (\u002B20)", + "DescriptionText": "To make this strike land well, you almost climb onto foe. You deal out a brutal srike to his neck and leap back.", + "RawAffixText": "\u002B12H \u2013 \u03C0 \u2013 4\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 591, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 2364, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2296, + "CropTop": 2332, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-90", + "ColumnKey": "SLAYING", + "Lines": [ + "Just when your swing looked to be failing", + "your weapon took control and crashed", + "into foe\u0027s thigh.", + "\u002B25H \u2013 3\u2211\u220F \u2013 20\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Just when your swing looked to be failing", + "your weapon took control and crashed", + "into foe\u0027s thigh.", + "\u002B25H \u2013 3\u2211\u220F \u2013 20\u222B \u2013 (-25)" + ], + "RawCellText": "Just when your swing looked to be failing\nyour weapon took control and crashed\ninto foe\u0027s thigh.\n\u002B25H \u2013 3\u2211\u220F \u2013 20\u222B \u2013 (-25)", + "DescriptionText": "Just when your swing looked to be failing your weapon took control and crashed into foe\u0027s thigh.", + "RawAffixText": "\u002B25H \u2013 3\u2211\u220F \u2013 20\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 20, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "20\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 591, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__81-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2364, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 2332, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "NORMAL", + "Lines": [ + "Well placed and hard. Try a vital", + "spot next time.", + "\u002B15H" + ], + "BaseLines": [ + "Well placed and hard. Try a vital", + "spot next time.", + "\u002B15H" + ], + "RawCellText": "Well placed and hard. Try a vital\nspot next time.\n\u002B15H", + "DescriptionText": "Well placed and hard. Try a vital spot next time.", + "RawAffixText": "\u002B15H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 647, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 2588, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 560, + "CropTop": 2556, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "MAGIC", + "Lines": [ + "Blow is placed solidly against foe\u0027s", + "side. The thick hide there protects him", + "well.", + "\u002B20H" + ], + "BaseLines": [ + "Blow is placed solidly against foe\u0027s", + "side. The thick hide there protects him", + "well.", + "\u002B20H" + ], + "RawCellText": "Blow is placed solidly against foe\u0027s\nside. The thick hide there protects him\nwell.\n\u002B20H", + "DescriptionText": "Blow is placed solidly against foe\u0027s side. The thick hide there protects him well.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 647, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 2588, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1092, + "CropTop": 2556, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "MITHRIL", + "Lines": [ + "Slash at foe\u0027s neck fails to land very", + "hard. You have the initiative for 2", + "rounds.", + "\u002B12H \u2013 4\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Slash at foe\u0027s neck fails to land very", + "hard. You have the initiative for 2", + "rounds.", + "\u002B12H \u2013 4\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Slash at foe\u0027s neck fails to land very\nhard. You have the initiative for 2\nrounds.\n\u002B12H \u2013 4\u222B \u2013 (\u002B20)", + "DescriptionText": "Slash at foe\u0027s neck fails to land very hard. You have the initiative for 2 rounds.", + "RawAffixText": "\u002B12H \u2013 4\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 647, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2588, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 2556, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You have a uncomfortable opportunity", + "to strike foe in his mouth. If foe has a", + "breath weapon, he may not use it.", + "\u002B25H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "You have a uncomfortable opportunity", + "to strike foe in his mouth. If foe has a", + "breath weapon, he may not use it.", + "\u002B25H \u2013 2\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "You have a uncomfortable opportunity\nto strike foe in his mouth. If foe has a\nbreath weapon, he may not use it.\n\u002B25H \u2013 2\u2211\u220F \u2013 3\u222B", + "DescriptionText": "You have a uncomfortable opportunity to strike foe in his mouth. If foe has a breath weapon, he may not use it.", + "RawAffixText": "\u002B25H \u2013 2\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 647, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 2588, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2296, + "CropTop": 2556, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "SLAYING", + "Lines": [ + "Your master strike lands against foe\u0027s", + "neck. Doom is in his face.", + "He drops and dies in 3 rounds.", + "\u002B35H" + ], + "BaseLines": [ + "Your master strike lands against foe\u0027s", + "neck. Doom is in his face.", + "He drops and dies in 3 rounds.", + "\u002B35H" + ], + "RawCellText": "Your master strike lands against foe\u0027s\nneck. Doom is in his face.\nHe drops and dies in 3 rounds.\n\u002B35H", + "DescriptionText": "Your master strike lands against foe\u0027s neck. Doom is in his face. He drops and dies in 3 rounds.", + "RawAffixText": "\u002B35H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 647, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2588, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 2556, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "NORMAL", + "Lines": [ + "Blow severs vein and artery in foe\u0027s", + "upper leg. He drops and dies", + "after 12 inactive rounds. Awesome!", + "\u2014" + ], + "BaseLines": [ + "Blow severs vein and artery in foe\u0027s", + "upper leg. He drops and dies", + "after 12 inactive rounds. Awesome!", + "\u2014" + ], + "RawCellText": "Blow severs vein and artery in foe\u0027s\nupper leg. He drops and dies\nafter 12 inactive rounds. Awesome!\n\u2014", + "DescriptionText": "Blow severs vein and artery in foe\u0027s upper leg. He drops and dies after 12 inactive rounds. Awesome!", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 704, + "Width": 128, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 2816, + "BoundsWidth": 512, + "BoundsHeight": 240, + "CropLeft": 560, + "CropTop": 2784, + "CropWidth": 608, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "MAGIC", + "Lines": [ + "You are a mighty warrior. Your strike", + "hits foe\u0027s neck and breaks it. Bones are", + "crushed and the spine in broken. Foe", + "drops in 1 round and dies.", + "(\u002B25)" + ], + "BaseLines": [ + "You are a mighty warrior. Your strike", + "hits foe\u0027s neck and breaks it. Bones are", + "crushed and the spine in broken. Foe", + "drops in 1 round and dies.", + "(\u002B25)" + ], + "RawCellText": "You are a mighty warrior. Your strike\nhits foe\u0027s neck and breaks it. Bones are\ncrushed and the spine in broken. Foe\ndrops in 1 round and dies.\n(\u002B25)", + "DescriptionText": "You are a mighty warrior. Your strike hits foe\u0027s neck and breaks it. Bones are crushed and the spine in broken. Foe drops in 1 round and dies.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 704, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 2816, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1092, + "CropTop": 2784, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "MITHRIL", + "Lines": [ + "Blow to lower skull area. Foe dies", + "instantly. He stumbles on for 1 round,", + "until he realizes this.", + "(\u002B20)" + ], + "BaseLines": [ + "Blow to lower skull area. Foe dies", + "instantly. He stumbles on for 1 round,", + "until he realizes this.", + "(\u002B20)" + ], + "RawCellText": "Blow to lower skull area. Foe dies\ninstantly. He stumbles on for 1 round,\nuntil he realizes this.\n(\u002B20)", + "DescriptionText": "Blow to lower skull area. Foe dies instantly. He stumbles on for 1 round, until he realizes this.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 704, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 2816, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1688, + "CropTop": 2784, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Weapon bites into foe\u0027s skull. He just", + "comes apart. He dies in 6 rounds. Your", + "weapon is stuck. Foe rolls over and takes", + "your weapon out of reach.", + "all allies get (\u002B10)" + ], + "BaseLines": [ + "Weapon bites into foe\u0027s skull. He just", + "comes apart. He dies in 6 rounds. Your", + "weapon is stuck. Foe rolls over and takes", + "your weapon out of reach.", + "all allies get (\u002B10)" + ], + "RawCellText": "Weapon bites into foe\u0027s skull. He just\ncomes apart. He dies in 6 rounds. Your\nweapon is stuck. Foe rolls over and takes\nyour weapon out of reach.\nall allies get (\u002B10)", + "DescriptionText": "Weapon bites into foe\u0027s skull. He just comes apart. He dies in 6 rounds. Your weapon is stuck. Foe rolls over and takes your weapon out of reach. all allies get (\u002B10)", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 704, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 2816, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2296, + "CropTop": 2784, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-98", + "ColumnKey": "SLAYING", + "Lines": [ + "Your weapon plunges into foe\u0027s chest", + "making the nature of its forging certain.", + "He dies a terrible and swift death. Take", + "12 rounds to reclaim your weapon.", + "\u002B40H" + ], + "BaseLines": [ + "Your weapon plunges into foe\u0027s chest", + "making the nature of its forging certain.", + "He dies a terrible and swift death. Take", + "12 rounds to reclaim your weapon.", + "\u002B40H" + ], + "RawCellText": "Your weapon plunges into foe\u0027s chest\nmaking the nature of its forging certain.\nHe dies a terrible and swift death. Take\n12 rounds to reclaim your weapon.\n\u002B40H", + "DescriptionText": "Your weapon plunges into foe\u0027s chest making the nature of its forging certain. He dies a terrible and swift death. Take 12 rounds to reclaim your weapon.", + "RawAffixText": "\u002B40H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 704, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__96-98.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 2816, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2900, + "CropTop": 2784, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "NORMAL", + "Lines": [ + "You step into the right spot and rip", + "open foe\u0027s side. Your blow shatters", + "some ribs.", + "\u002B30H \u2013 10\u222B \u2013 (-25)" + ], + "BaseLines": [ + "You step into the right spot and rip", + "open foe\u0027s side. Your blow shatters", + "some ribs.", + "\u002B30H \u2013 10\u222B \u2013 (-25)" + ], + "RawCellText": "You step into the right spot and rip\nopen foe\u0027s side. Your blow shatters\nsome ribs.\n\u002B30H \u2013 10\u222B \u2013 (-25)", + "DescriptionText": "You step into the right spot and rip open foe\u0027s side. Your blow shatters some ribs.", + "RawAffixText": "\u002B30H \u2013 10\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 772, + "Width": 130, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 3088, + "BoundsWidth": 520, + "BoundsHeight": 196, + "CropLeft": 560, + "CropTop": 3056, + "CropWidth": 616, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "MAGIC", + "Lines": [ + "A little bird shows you the flaw in foe\u0027s", + "armor. Your strike plunges into this", + "vulnerable spot killing foe instantly.", + "\u2014" + ], + "BaseLines": [ + "A little bird shows you the flaw in foe\u0027s", + "armor. Your strike plunges into this", + "vulnerable spot killing foe instantly.", + "\u2014" + ], + "RawCellText": "A little bird shows you the flaw in foe\u0027s\narmor. Your strike plunges into this\nvulnerable spot killing foe instantly.\n\u2014", + "DescriptionText": "A little bird shows you the flaw in foe\u0027s armor. Your strike plunges into this vulnerable spot killing foe instantly.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 772, + "Width": 142, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 3088, + "BoundsWidth": 568, + "BoundsHeight": 196, + "CropLeft": 1092, + "CropTop": 3056, + "CropWidth": 664, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "MITHRIL", + "Lines": [ + "Crush the bones in foe\u0027s neck with a", + "mighty blow. Foe drops and dies in 1", + "round.", + "\u002B5H" + ], + "BaseLines": [ + "Crush the bones in foe\u0027s neck with a", + "mighty blow. Foe drops and dies in 1", + "round.", + "\u002B5H" + ], + "RawCellText": "Crush the bones in foe\u0027s neck with a\nmighty blow. Foe drops and dies in 1\nround.\n\u002B5H", + "DescriptionText": "Crush the bones in foe\u0027s neck with a mighty blow. Foe drops and dies in 1 round.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 772, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3088, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 3056, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike through foe\u0027s heart kills him", + "instantly. You are too close. He pins you", + "under him as he dies.", + "\u002B20H" + ], + "BaseLines": [ + "Strike through foe\u0027s heart kills him", + "instantly. You are too close. He pins you", + "under him as he dies.", + "\u002B20H" + ], + "RawCellText": "Strike through foe\u0027s heart kills him\ninstantly. You are too close. He pins you\nunder him as he dies.\n\u002B20H", + "DescriptionText": "Strike through foe\u0027s heart kills him instantly. You are too close. He pins you under him as he dies.", + "RawAffixText": "\u002B20H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 772, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 3088, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 2296, + "CropTop": 3056, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "99-100", + "ColumnKey": "SLAYING", + "Lines": [ + "Foe\u0027s eye is in reach and you ram your", + "weapon home. Foe dies after 3 rounds of", + "inactivity. You have half the round left.", + "(\u002B25)" + ], + "BaseLines": [ + "Foe\u0027s eye is in reach and you ram your", + "weapon home. Foe dies after 3 rounds of", + "inactivity. You have half the round left.", + "(\u002B25)" + ], + "RawCellText": "Foe\u0027s eye is in reach and you ram your\nweapon home. Foe dies after 3 rounds of\ninactivity. You have half the round left.\n(\u002B25)", + "DescriptionText": "Foe\u0027s eye is in reach and you ram your weapon home. Foe dies after 3 rounds of inactivity. You have half the round left.", + "RawAffixText": "(\u002B25)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 772, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__99-100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3088, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 3056, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "NORMAL", + "Lines": [ + "Glancing strike to foe\u0027s abdomen", + "loses much of the impact on foe\u0027s", + "hide.", + "\u002B12H \u2013 1\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Glancing strike to foe\u0027s abdomen", + "loses much of the impact on foe\u0027s", + "hide.", + "\u002B12H \u2013 1\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Glancing strike to foe\u0027s abdomen\nloses much of the impact on foe\u0027s\nhide.\n\u002B12H \u2013 1\u222B \u2013 (\u002B10)", + "DescriptionText": "Glancing strike to foe\u0027s abdomen loses much of the impact on foe\u0027s hide.", + "RawAffixText": "\u002B12H \u2013 1\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "1\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 827, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 3308, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 560, + "CropTop": 3276, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "MAGIC", + "Lines": [ + "Wound foe along his side with an", + "excellent strike. Foe leaps back away", + "from your weapon.", + "\u002B13H \u2013 2\u222B \u2013 (\u002B20)" + ], + "BaseLines": [ + "Wound foe along his side with an", + "excellent strike. Foe leaps back away", + "from your weapon.", + "\u002B13H \u2013 2\u222B \u2013 (\u002B20)" + ], + "RawCellText": "Wound foe along his side with an\nexcellent strike. Foe leaps back away\nfrom your weapon.\n\u002B13H \u2013 2\u222B \u2013 (\u002B20)", + "DescriptionText": "Wound foe along his side with an excellent strike. Foe leaps back away from your weapon.", + "RawAffixText": "\u002B13H \u2013 2\u222B \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 827, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 3308, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1092, + "CropTop": 3276, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "MITHRIL", + "Lines": [ + "Graceful assault knocks down foe\u0027s", + "defenses. He just cannot get his guard", + "up.", + "\u002B30H \u2013 3\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Graceful assault knocks down foe\u0027s", + "defenses. He just cannot get his guard", + "up.", + "\u002B30H \u2013 3\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Graceful assault knocks down foe\u0027s\ndefenses. He just cannot get his guard\nup.\n\u002B30H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Graceful assault knocks down foe\u0027s defenses. He just cannot get his guard up.", + "RawAffixText": "\u002B30H \u2013 3\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 827, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3308, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 3276, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Brutal strike to foe\u0027s forearm. He reels", + "from your presence. You are his bane.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Brutal strike to foe\u0027s forearm. He reels", + "from your presence. You are his bane.", + "\u002B30H \u2013 2\u2211\u220F" + ], + "RawCellText": "Brutal strike to foe\u0027s forearm. He reels\nfrom your presence. You are his bane.\n\u002B30H \u2013 2\u2211\u220F", + "DescriptionText": "Brutal strike to foe\u0027s forearm. He reels from your presence. You are his bane.", + "RawAffixText": "\u002B30H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 827, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 3308, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2296, + "CropTop": 3276, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "101-150", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike to foe\u0027s leg severs a vein and tears", + "muscles. Foe flails around for 6 rounds", + "before he dies.", + "\u002B20H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s leg severs a vein and tears", + "muscles. Foe flails around for 6 rounds", + "before he dies.", + "\u002B20H \u2013 6\u2211\u220F" + ], + "RawCellText": "Strike to foe\u0027s leg severs a vein and tears\nmuscles. Foe flails around for 6 rounds\nbefore he dies.\n\u002B20H \u2013 6\u2211\u220F", + "DescriptionText": "Strike to foe\u0027s leg severs a vein and tears muscles. Foe flails around for 6 rounds before he dies.", + "RawAffixText": "\u002B20H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 827, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__101-150.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3308, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 3276, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "NORMAL", + "Lines": [ + "Your weapon wounds deep and", + "cuts muscles and tendons. Foe\u0027s", + "wound bleeds heavily.", + "\u002B20H \u2013 5\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Your weapon wounds deep and", + "cuts muscles and tendons. Foe\u0027s", + "wound bleeds heavily.", + "\u002B20H \u2013 5\u222B \u2013 (-20)" + ], + "RawCellText": "Your weapon wounds deep and\ncuts muscles and tendons. Foe\u0027s\nwound bleeds heavily.\n\u002B20H \u2013 5\u222B \u2013 (-20)", + "DescriptionText": "Your weapon wounds deep and cuts muscles and tendons. Foe\u0027s wound bleeds heavily.", + "RawAffixText": "\u002B20H \u2013 5\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 5, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "5\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 884, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 3536, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 560, + "CropTop": 3504, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "MAGIC", + "Lines": [ + "You pop foe on his head with some", + "useful results. Foe is confused just", + "long enough for a blow.", + "\u002B25H \u2013 \u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "You pop foe on his head with some", + "useful results. Foe is confused just", + "long enough for a blow.", + "\u002B25H \u2013 \u2211\u220F \u2013 (-20)" + ], + "RawCellText": "You pop foe on his head with some\nuseful results. Foe is confused just\nlong enough for a blow.\n\u002B25H \u2013 \u2211\u220F \u2013 (-20)", + "DescriptionText": "You pop foe on his head with some useful results. Foe is confused just long enough for a blow.", + "RawAffixText": "\u002B25H \u2013 \u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 884, + "Width": 142, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 3536, + "BoundsWidth": 568, + "BoundsHeight": 200, + "CropLeft": 1092, + "CropTop": 3504, + "CropWidth": 664, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "MITHRIL", + "Lines": [ + "Incredible strike across foe\u0027s calf trips", + "him to the ground. The bigger they", + "are\u2026.", + "\u002B25H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Incredible strike across foe\u0027s calf trips", + "him to the ground. The bigger they", + "are\u2026.", + "\u002B25H \u2013 2\u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Incredible strike across foe\u0027s calf trips\nhim to the ground. The bigger they\nare\u2026.\n\u002B25H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Incredible strike across foe\u0027s calf trips him to the ground. The bigger they are\u2026.", + "RawAffixText": "\u002B25H \u2013 2\u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 884, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3536, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1688, + "CropTop": 3504, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Vicious blow to forehead sends foe to", + "the ground. If he falls on stone, he is in a", + "coma.", + "\u002B40H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "Vicious blow to forehead sends foe to", + "the ground. If he falls on stone, he is in a", + "coma.", + "\u002B40H \u2013 6\u2211\u220F" + ], + "RawCellText": "Vicious blow to forehead sends foe to\nthe ground. If he falls on stone, he is in a\ncoma.\n\u002B40H \u2013 6\u2211\u220F", + "DescriptionText": "Vicious blow to forehead sends foe to the ground. If he falls on stone, he is in a coma.", + "RawAffixText": "\u002B40H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 40, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B40H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 884, + "Width": 147, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 3536, + "BoundsWidth": 588, + "BoundsHeight": 200, + "CropLeft": 2296, + "CropTop": 3504, + "CropWidth": 684, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "151-175", + "ColumnKey": "SLAYING", + "Lines": [ + "Awesome blow to foe\u0027s neck. His neck", + "and back are broken. Foe drops and", + "suffocates in 12 rounds.", + "\u002B25H \u2013 (\u002B20)" + ], + "BaseLines": [ + "Awesome blow to foe\u0027s neck. His neck", + "and back are broken. Foe drops and", + "suffocates in 12 rounds.", + "\u002B25H \u2013 (\u002B20)" + ], + "RawCellText": "Awesome blow to foe\u0027s neck. His neck\nand back are broken. Foe drops and\nsuffocates in 12 rounds.\n\u002B25H \u2013 (\u002B20)", + "DescriptionText": "Awesome blow to foe\u0027s neck. His neck and back are broken. Foe drops and suffocates in 12 rounds.", + "RawAffixText": "\u002B25H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 884, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__151-175.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3536, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2900, + "CropTop": 3504, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "NORMAL", + "Lines": [ + "Foe presents a weak spot and you", + "strike. Blow lands at the base of the", + "neck. Tendons are damaged.", + "\u002B15H \u2013 (-25) \u2013 (\u002B20)" + ], + "BaseLines": [ + "Foe presents a weak spot and you", + "strike. Blow lands at the base of the", + "neck. Tendons are damaged.", + "\u002B15H \u2013 (-25) \u2013 (\u002B20)" + ], + "RawCellText": "Foe presents a weak spot and you\nstrike. Blow lands at the base of the\nneck. Tendons are damaged.\n\u002B15H \u2013 (-25) \u2013 (\u002B20)", + "DescriptionText": "Foe presents a weak spot and you strike. Blow lands at the base of the neck. Tendons are damaged.", + "RawAffixText": "\u002B15H \u2013 (-25) \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 940, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 3760, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 560, + "CropTop": 3728, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "MAGIC", + "Lines": [ + "Solid shot to foe\u0027s chest. Foe is down.", + "You take an \u0027A\u0027 Unbalancing Critical", + "result, because you are so close.", + "\u002B20H \u2013 2\u220F \u2013 (\u002B25)" + ], + "BaseLines": [ + "Solid shot to foe\u0027s chest. Foe is down.", + "You take an \u0027A\u0027 Unbalancing Critical", + "result, because you are so close.", + "\u002B20H \u2013 2\u220F \u2013 (\u002B25)" + ], + "RawCellText": "Solid shot to foe\u0027s chest. Foe is down.\nYou take an \u0027A\u0027 Unbalancing Critical\nresult, because you are so close.\n\u002B20H \u2013 2\u220F \u2013 (\u002B25)", + "DescriptionText": "Solid shot to foe\u0027s chest. Foe is down. You take an \u0027A\u0027 Unbalancing Critical result, because you are so close.", + "RawAffixText": "\u002B20H \u2013 2\u220F \u2013 (\u002B25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 940, + "Width": 142, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 3760, + "BoundsWidth": 568, + "BoundsHeight": 196, + "CropLeft": 1092, + "CropTop": 3728, + "CropWidth": 664, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "MITHRIL", + "Lines": [ + "Brutal strike to foe\u0027s side. You rip him", + "open and he is hating life. His blood gets", + "all over you.", + "\u002B28H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Brutal strike to foe\u0027s side. You rip him", + "open and he is hating life. His blood gets", + "all over you.", + "\u002B28H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "RawCellText": "Brutal strike to foe\u0027s side. You rip him\nopen and he is hating life. His blood gets\nall over you.\n\u002B28H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "DescriptionText": "Brutal strike to foe\u0027s side. You rip him open and he is hating life. His blood gets all over you.", + "RawAffixText": "\u002B28H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 28, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B28H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 940, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3760, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 1688, + "CropTop": 3728, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Strike to foe\u0027s abdomen. Foe has the", + "biggest bruise you have ever seen.", + "\u002B25H \u2013 9\u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Strike to foe\u0027s abdomen. Foe has the", + "biggest bruise you have ever seen.", + "\u002B25H \u2013 9\u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Strike to foe\u0027s abdomen. Foe has the\nbiggest bruise you have ever seen.\n\u002B25H \u2013 9\u2211\u220F \u2013 (-25)", + "DescriptionText": "Strike to foe\u0027s abdomen. Foe has the biggest bruise you have ever seen.", + "RawAffixText": "\u002B25H \u2013 9\u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 940, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 3760, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2296, + "CropTop": 3728, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "176-200", + "ColumnKey": "SLAYING", + "Lines": [ + "Clean strike to foe\u0027s eye kills him in one", + "round. He fights on for 1 round before he", + "realizes he is dead.", + "\u002B24H \u2013 (-20)" + ], + "BaseLines": [ + "Clean strike to foe\u0027s eye kills him in one", + "round. He fights on for 1 round before he", + "realizes he is dead.", + "\u002B24H \u2013 (-20)" + ], + "RawCellText": "Clean strike to foe\u0027s eye kills him in one\nround. He fights on for 1 round before he\nrealizes he is dead.\n\u002B24H \u2013 (-20)", + "DescriptionText": "Clean strike to foe\u0027s eye kills him in one round. He fights on for 1 round before he realizes he is dead.", + "RawAffixText": "\u002B24H \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 24, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B24H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 940, + "Width": 150, + "Height": 49 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__176-200.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3760, + "BoundsWidth": 600, + "BoundsHeight": 196, + "CropLeft": 2900, + "CropTop": 3728, + "CropWidth": 696, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "NORMAL", + "Lines": [ + "When your strike lands on foe\u0027s", + "back, bones crackle and pop.", + "Internal damage is certain.", + "\u002B35H \u2013 2\u2211 \u2013 10\u222B \u2013 (-30)" + ], + "BaseLines": [ + "When your strike lands on foe\u0027s", + "back, bones crackle and pop.", + "Internal damage is certain.", + "\u002B35H \u2013 2\u2211 \u2013 10\u222B \u2013 (-30)" + ], + "RawCellText": "When your strike lands on foe\u0027s\nback, bones crackle and pop.\nInternal damage is certain.\n\u002B35H \u2013 2\u2211 \u2013 10\u222B \u2013 (-30)", + "DescriptionText": "When your strike lands on foe\u0027s back, bones crackle and pop. Internal damage is certain.", + "RawAffixText": "\u002B35H \u2013 2\u2211 \u2013 10\u222B \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 997, + "Width": 127, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 3988, + "BoundsWidth": 508, + "BoundsHeight": 240, + "CropLeft": 560, + "CropTop": 3956, + "CropWidth": 604, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "MAGIC", + "Lines": [ + "Rip open foe\u0027s abdomen. Blood covers", + "you. This cruel wound will not be", + "healed easily.", + "\u002B35H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Rip open foe\u0027s abdomen. Blood covers", + "you. This cruel wound will not be", + "healed easily.", + "\u002B35H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)" + ], + "RawCellText": "Rip open foe\u0027s abdomen. Blood covers\nyou. This cruel wound will not be\nhealed easily.\n\u002B35H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "DescriptionText": "Rip open foe\u0027s abdomen. Blood covers you. This cruel wound will not be healed easily.", + "RawAffixText": "\u002B35H \u2013 3\u2211\u220F \u2013 10\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 10, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "10\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 997, + "Width": 143, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 3988, + "BoundsWidth": 572, + "BoundsHeight": 240, + "CropLeft": 1092, + "CropTop": 3956, + "CropWidth": 668, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "MITHRIL", + "Lines": [ + "Vicious blow to foe\u0027s leg. You can hear", + "the mithril in your weapon talking, as", + "you rip foe open.", + "\u002B30H \u2013 6\u2211\u220F \u2013 12\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Vicious blow to foe\u0027s leg. You can hear", + "the mithril in your weapon talking, as", + "you rip foe open.", + "\u002B30H \u2013 6\u2211\u220F \u2013 12\u222B \u2013 (-50)" + ], + "RawCellText": "Vicious blow to foe\u0027s leg. You can hear\nthe mithril in your weapon talking, as\nyou rip foe open.\n\u002B30H \u2013 6\u2211\u220F \u2013 12\u222B \u2013 (-50)", + "DescriptionText": "Vicious blow to foe\u0027s leg. You can hear the mithril in your weapon talking, as you rip foe open.", + "RawAffixText": "\u002B30H \u2013 6\u2211\u220F \u2013 12\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 12, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 997, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 3988, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1688, + "CropTop": 3956, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "You duck around foe\u0027s side and catch", + "him in the ear. Blow collapses skull.", + "Foe dies of massive brain damage in 3", + "rounds.", + "\u002B15H \u2013 (\u002B20)" + ], + "BaseLines": [ + "You duck around foe\u0027s side and catch", + "him in the ear. Blow collapses skull.", + "Foe dies of massive brain damage in 3", + "rounds.", + "\u002B15H \u2013 (\u002B20)" + ], + "RawCellText": "You duck around foe\u0027s side and catch\nhim in the ear. Blow collapses skull.\nFoe dies of massive brain damage in 3\nrounds.\n\u002B15H \u2013 (\u002B20)", + "DescriptionText": "You duck around foe\u0027s side and catch him in the ear. Blow collapses skull. Foe dies of massive brain damage in 3 rounds.", + "RawAffixText": "\u002B15H \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 997, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 3988, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2296, + "CropTop": 3956, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "201-250", + "ColumnKey": "SLAYING", + "Lines": [ + "Foe steps right into your swing. You tear", + "open foe\u0027s abdomenal and drop him in a", + "heap. You are entangled in his fall. Foe", + "dies in 4 rounds from shock.", + "\u002B35H" + ], + "BaseLines": [ + "Foe steps right into your swing. You tear", + "open foe\u0027s abdomenal and drop him in a", + "heap. You are entangled in his fall. Foe", + "dies in 4 rounds from shock.", + "\u002B35H" + ], + "RawCellText": "Foe steps right into your swing. You tear\nopen foe\u0027s abdomenal and drop him in a\nheap. You are entangled in his fall. Foe\ndies in 4 rounds from shock.\n\u002B35H", + "DescriptionText": "Foe steps right into your swing. You tear open foe\u0027s abdomenal and drop him in a heap. You are entangled in his fall. Foe dies in 4 rounds from shock.", + "RawAffixText": "\u002B35H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 35, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B35H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 997, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__201-250.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 3988, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2900, + "CropTop": 3956, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "NORMAL", + "Lines": [ + "Foe lowers his eyes within your", + "reach and you strike with great skill", + "and fury. He is blinded.", + "\u002B20H \u2013 6\u2211\u220F \u2013 (\u2013100)" + ], + "BaseLines": [ + "Foe lowers his eyes within your", + "reach and you strike with great skill", + "and fury. He is blinded.", + "\u002B20H \u2013 6\u2211\u220F \u2013 (\u2013100)" + ], + "RawCellText": "Foe lowers his eyes within your\nreach and you strike with great skill\nand fury. He is blinded.\n\u002B20H \u2013 6\u2211\u220F \u2013 (\u2013100)", + "DescriptionText": "Foe lowers his eyes within your reach and you strike with great skill and fury. He is blinded.", + "RawAffixText": "\u002B20H \u2013 6\u2211\u220F \u2013 (\u2013100)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 152, + "Top": 1064, + "Width": 128, + "Height": 61 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__normal__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 608, + "BoundsTop": 4256, + "BoundsWidth": 512, + "BoundsHeight": 244, + "CropLeft": 560, + "CropTop": 4224, + "CropWidth": 608, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "MAGIC", + "Lines": [ + "You leap up and slam foe in the eye. He", + "does not realize he is dead yet. Next", + "round he will. Your weapon is stuck for", + "a round.", + "(\u002B20)" + ], + "BaseLines": [ + "You leap up and slam foe in the eye. He", + "does not realize he is dead yet. Next", + "round he will. Your weapon is stuck for", + "a round.", + "(\u002B20)" + ], + "RawCellText": "You leap up and slam foe in the eye. He\ndoes not realize he is dead yet. Next\nround he will. Your weapon is stuck for\na round.\n(\u002B20)", + "DescriptionText": "You leap up and slam foe in the eye. He does not realize he is dead yet. Next round he will. Your weapon is stuck for a round.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 285, + "Top": 1064, + "Width": 143, + "Height": 61 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__magic__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1140, + "BoundsTop": 4256, + "BoundsWidth": 572, + "BoundsHeight": 244, + "CropLeft": 1092, + "CropTop": 4224, + "CropWidth": 668, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "MITHRIL", + "Lines": [ + "Awe inspiring strike drives bone", + "through both lungs. Foe realizes his", + "doom before falling into a coma. He dies", + "in 18 rounds.", + "\u2014" + ], + "BaseLines": [ + "Awe inspiring strike drives bone", + "through both lungs. Foe realizes his", + "doom before falling into a coma. He dies", + "in 18 rounds.", + "\u2014" + ], + "RawCellText": "Awe inspiring strike drives bone\nthrough both lungs. Foe realizes his\ndoom before falling into a coma. He dies\nin 18 rounds.\n\u2014", + "DescriptionText": "Awe inspiring strike drives bone through both lungs. Foe realizes his doom before falling into a coma. He dies in 18 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 434, + "Top": 1064, + "Width": 146, + "Height": 61 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__mithril__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1736, + "BoundsTop": 4256, + "BoundsWidth": 584, + "BoundsHeight": 244, + "CropLeft": 1688, + "CropTop": 4224, + "CropWidth": 680, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "HOLY_ARMS", + "Lines": [ + "Your mighty blow is the stuff epics are", + "made of. Foe\u0027s spine is broken. He dies", + "in 2 rounds.", + "\u002B50H" + ], + "BaseLines": [ + "Your mighty blow is the stuff epics are", + "made of. Foe\u0027s spine is broken. He dies", + "in 2 rounds.", + "\u002B50H" + ], + "RawCellText": "Your mighty blow is the stuff epics are\nmade of. Foe\u0027s spine is broken. He dies\nin 2 rounds.\n\u002B50H", + "DescriptionText": "Your mighty blow is the stuff epics are made of. Foe\u0027s spine is broken. He dies in 2 rounds.", + "RawAffixText": "\u002B50H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 50, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B50H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 586, + "Top": 1064, + "Width": 143, + "Height": 61 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__holy_arms__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2344, + "BoundsTop": 4256, + "BoundsWidth": 572, + "BoundsHeight": 244, + "CropLeft": 2296, + "CropTop": 4224, + "CropWidth": 668, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "251\u002B", + "ColumnKey": "SLAYING", + "Lines": [ + "Strike to side kills foe after a chain", + "reaction of bones shatter. You are", + "covered with blood.", + "\u002B100H" + ], + "BaseLines": [ + "Strike to side kills foe after a chain", + "reaction of bones shatter. You are", + "covered with blood.", + "\u002B100H" + ], + "RawCellText": "Strike to side kills foe after a chain\nreaction of bones shatter. You are\ncovered with blood.\n\u002B100H", + "DescriptionText": "Strike to side kills foe after a chain reaction of bones shatter. You are covered with blood.", + "RawAffixText": "\u002B100H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 100, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B100H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 737, + "Top": 1064, + "Width": 149, + "Height": 61 + }, + "SourceImagePath": "super_large_creature_weapon/cells/none__slaying__251plus.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2948, + "BoundsTop": 4256, + "BoundsWidth": 596, + "BoundsHeight": 244, + "CropLeft": 2900, + "CropTop": 4224, + "CropWidth": 692, + "CropHeight": 308, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/source.xml b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/source.xml new file mode 100644 index 0000000..bb89866 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/source.xml @@ -0,0 +1,410 @@ + + + + + + + + + + + + + +103 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +You strike the terrible beast hard. +Your weapon breaks in half. +Your weapon is knocked from your +hand. It will take 2 rounds to recover. +Your strike is powerful. You fumble the +rest of the round. +Your strike is powerful, but your grip +was terrible. Roll a fumble for yourself. +The numbing recoil of your strike to foe's +chest sends you stumbling back. ++10H ++10H ++10H ++10H ++10H +06-10 +A decoration pops off your weapon +with impact to foe's side. +Your weapon hits at a bad angle. Take a +weapon strength check. Bum luck. +Your weapon lands uneven across foe's +shoulder. Make a breakage check. +Blow foe's arm. Ready for a better +strike. You gain the initiative next round. +Strike lands at a bad angle. You check for +weapon breakage. ++2H ++3H ++4H ++6H ++8H +11-20 +You are daunted by the beast's +gaze and swing weakly. +Your blow was deflected, but you gain +the initiative next round. +Acceptable strike to foe's leg.You gain +the initiative next round. +Back strike. Weapon seems to damage +by touch only. +Blow to back. You gain the initiative next +round. ++3H ++4H ++5H ++8H ++10H +21-30 +This terrible creature's hide deflects +the strongest blows. +Glancing side blow. A spark of light +reminds you your weapon is magical. +Glancing blow smears mithril like chalk +across beast's hide. +Your strike is solid and flat, but foe is +not slowed at all. +Sparks fly from your weapon as it +embraces your foe. ++4H ++5H ++6H ++10H ++12H +31-40 +Solid strike to foe's side with your +common weapon fails to penetrate. +Foe is unbalanced. You gain the +initiative next round. +Solid, but nowhere near a vital spot. +Bruise foe's calf muscle. +You strike the fell titan in the chest. He +yells back at you. +Boom! Solid without question. Try a vital +spot next time. ++5H ++6H ++7H ++12H ++15H +41- 50 +Your strike was more of a last +minute parry to avoid the beast's. +You deal out a sharp and hard leg +strike. Foe steps back to look at his leg. +Strike lands on foe's horn. The vibration +has some effect. +You step under his assault and strike +him hard in the abdomen. +Rip sinew, hair, horn and scale with a +glancing blow to side. ++6H ++7H ++8H ++15H ++18H +51-65 +Two light and quick shots to foe's +forearm, provides a modest result. +Blow to foe's back. Foe's hide is tough +there. You need more strength. +Your strike thumps foe on his nose. +He is insulted, but not wounded badly. +The vile beast leans foward. You strike at +his snout in frantic response. +Unexpected weak spot found with your +strike to foe's side. ++7H ++8H ++9H ++18H ++20H +66 +Strike foe's neck with the flat of +your weapon during a moment of +opportunity. +20H +You step under foe's lunge and use the +force against him. Strike to under belly. +He feels the pain instantly. +Shin strike. Skin is torn open and bone +is bruised. This one hurts. You have +initiative. +Your blow lands against foe's shoulder. +You are pleased with the effect. Blood +pours from the wound. +Your weapon seems to dig into foe's +chest and devour his heart. Foe dies +instantly. You are covered with blood. ++20H ++12H – 3∫ – (-10) ++15H – 5∫ – (-10) +∑∏ – 10 ∫ – (-15) ++50H – (+20) +67-70 +Solid strike on foe's leg. You move +quickly away to avoid the +retaliation. +Blow to thigh leaves a bad bruise. Your +weapon cracks and bends. It will break +after one more strike. +Hammering foe's thigh gets you some +respect. You have the initiative. +Hard blow to foe's thigh. He stumbles, +but does not fall. You have the initiative +next round. +Flat strike to foe's upper body. Heavy +blow breaks some bones. Foe's guard is +down. ++8H ++9H ++10H ++20H ++30H – 2∑∏ +71-80 +Solid strike to foe's head just +bounces off. +Minor forearm wound.The beast used +its forearm for defense. Foe soaks up +the damage. +Blow to foe's upper arm. This strike had +few vices, but it was weak. Get it +together. +Catch foe in his exposed leg. You come +down hard on it. He will have a bruise. +It slows him. You have the initiative. +Hard glancing strike crosses foe's +shoulder and chest. Shoulder is slashed +and chest is bruised. ++9H ++10H ++15H ++13H – 5∫ – (-10) – (+10) ++24H – 3∑∏ – 5∫ – (-20) +81-90 +Violent strike to foe's forearm. Foe +is bruised. Your weapon must make +a breakage check. +Blow to foe's arm joint lands poorly. Foe +will have a bruise. You think that you +know what went wrong. +Your strike hit no vitals, but you can +hear the ribs in foe's side crackle. Foe +fights on in some pain. +To make this strike land well, you +almost climb onto foe. You deal out a +brutal srike to his neck and leap back. +Just when your swing looked to be failing +your weapon took control and crashed +into foe's thigh. ++10H ++15H ++20H ++12H – π – 4∫ – (+20) ++25H – 3∑∏ – 20∫ – (-25) +91-95 +Well placed and hard. Try a vital +spot next time. +Blow is placed solidly against foe's +side. The thick hide there protects him +well. +Slash at foe's neck fails to land very +hard. You have the initiative for 2 +rounds. +You have a uncomfortable opportunity +to strike foe in his mouth. If foe has a +breath weapon, he may not use it. +Your master strike lands against foe's +neck. Doom is in his face. +He drops and dies in 3 rounds. ++15H ++20H ++12H – 4∫ – (+20) ++25H – 2∑∏ – 3∫ ++35H +96-98 +Blow severs vein and artery in foe's +upper leg. He drops and dies +after 12 inactive rounds. Awesome! +You are a mighty warrior. Your strike +hits foe's neck and breaks it. Bones are +crushed and the spine in broken. Foe +drops in 1 round and dies. +Blow to lower skull area. Foe dies +instantly. He stumbles on for 1 round, +until he realizes this. +Weapon bites into foe's skull. He just +comes apart. He dies in 6 rounds. Your +weapon is stuck. Foe rolls over and takes +your weapon out of reach. +Your weapon plunges into foe's chest +making the nature of its forging certain. +He dies a terrible and swift death. Take +12 rounds to reclaim your weapon. + +(+25) +(+20) +all allies get (+10) ++40H +99- +100 +You step into the right spot and rip +open foe's side. Your blow shatters +some ribs. +A little bird shows you the flaw in foe's +armor. Your strike plunges into this +vulnerable spot killing foe instantly. +Crush the bones in foe's neck with a +mighty blow. Foe drops and dies in 1 +round. +Strike through foe's heart kills him +instantly. You are too close. He pins you +under him as he dies. +Foe's eye is in reach and you ram your +weapon home. Foe dies after 3 rounds of +inactivity. You have half the round left. ++30H – 10∫ – (-25) + ++5H ++20H +(+25) +101- +150 +Glancing strike to foe's abdomen +loses much of the impact on foe's +hide. +Wound foe along his side with an +excellent strike. Foe leaps back away +from your weapon. +Graceful assault knocks down foe's +defenses. He just cannot get his guard +up. +Brutal strike to foe's forearm. He reels +from your presence. You are his bane. +Strike to foe's leg severs a vein and tears +muscles. Foe flails around for 6 rounds +before he dies. ++12H – 1∫ – (+10) ++13H – 2∫ – (+20) ++30H – 3∑∏ – (+10) ++30H – 2∑∏ ++20H – 6∑∏ +151- +175 +Your weapon wounds deep and +cuts muscles and tendons. Foe's +wound bleeds heavily. +You pop foe on his head with some +useful results. Foe is confused just +long enough for a blow. +Incredible strike across foe's calf trips +him to the ground. The bigger they +are…. +Vicious blow to forehead sends foe to +the ground. If he falls on stone, he is in a +coma. +Awesome blow to foe's neck. His neck +and back are broken. Foe drops and +suffocates in 12 rounds. ++20H – 5∫ – (-20) ++25H – ∑∏ – (-20) ++25H – 2∑∏ – (+10) ++40H – 6∑∏ ++25H – (+20) +176- +200 +Foe presents a weak spot and you +strike. Blow lands at the base of the +neck. Tendons are damaged. +Solid shot to foe's chest. Foe is down. +You take an 'A' Unbalancing Critical +result, because you are so close. +Brutal strike to foe's side. You rip him +open and he is hating life. His blood gets +all over you. +Strike to foe's abdomen. Foe has the +biggest bruise you have ever seen. +Clean strike to foe's eye kills him in one +round. He fights on for 1 round before he +realizes he is dead. ++15H – (-25) – (+20) ++20H – 2∏ – (+25) ++28H – 3∑∏ – 10∫ – (-40) ++25H – 9∑∏ – (-25) ++24H – (-20) +201- +250 +When your strike lands on foe's +back, bones crackle and pop. +Internal damage is certain. +Rip open foe's abdomen. Blood covers +you. This cruel wound will not be +healed easily. +Vicious blow to foe's leg. You can hear +the mithril in your weapon talking, as +you rip foe open. +You duck around foe's side and catch +him in the ear. Blow collapses skull. +Foe dies of massive brain damage in 3 +rounds. +Foe steps right into your swing. You tear +open foe's abdomenal and drop him in a +heap. You are entangled in his fall. Foe +dies in 4 rounds from shock. ++35H – 2∑ – 10∫ – (-30) ++35H – 3∑∏ – 10∫ – (-40) ++30H – 6∑∏ – 12∫ – (-50) ++15H – (+20) ++35H +251+ +Foe lowers his eyes within your +reach and you strike with great skill +and fury. He is blinded. +You leap up and slam foe in the eye. He +does not realize he is dead yet. Next +round he will. Your weapon is stuck for +a round. +Awe inspiring strike drives bone +through both lungs. Foe realizes his +doom before falling into a coma. He dies +in 18 rounds. +Your mighty blow is the stuff epics are +made of. Foe's spine is broken. He dies +in 2 rounds. +Strike to side kills foe after a chain +reaction of bones shatter. You are +covered with blood. ++20H – 6∑∏ – (–100) + (+20) + ++50H ++100H +4.10 super large creature critical strike table +normal +magic +mithril +holy arms +slaying +Your weapon hits at a bad angle. Check +for weapon breakage. Bum Luck. + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/super_large_creature_weapon/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__01-05.png new file mode 100644 index 0000000..6b593c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__06-10.png new file mode 100644 index 0000000..fff327e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__100.png new file mode 100644 index 0000000..db9090b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__11-15.png new file mode 100644 index 0000000..3097104 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__16-20.png new file mode 100644 index 0000000..fc67ffd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__21-35.png new file mode 100644 index 0000000..cb92692 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__36-45.png new file mode 100644 index 0000000..94bf812 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__46-50.png new file mode 100644 index 0000000..5e59e49 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__51-55.png new file mode 100644 index 0000000..12a688a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__56-60.png new file mode 100644 index 0000000..cb2c8a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__61-65.png new file mode 100644 index 0000000..fa3fc39 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__66.png new file mode 100644 index 0000000..4fb6979 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__67-70.png new file mode 100644 index 0000000..1740f94 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__71-75.png new file mode 100644 index 0000000..531ddf9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__76-80.png new file mode 100644 index 0000000..986daae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__81-85.png new file mode 100644 index 0000000..6ea63c8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__86-90.png new file mode 100644 index 0000000..093ba2e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__91-95.png new file mode 100644 index 0000000..10138ab Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__96-99.png new file mode 100644 index 0000000..4596146 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__01-05.png new file mode 100644 index 0000000..92baf90 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__06-10.png new file mode 100644 index 0000000..286e983 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__100.png new file mode 100644 index 0000000..1b41bd7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__11-15.png new file mode 100644 index 0000000..c9def2b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__16-20.png new file mode 100644 index 0000000..be35581 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__21-35.png new file mode 100644 index 0000000..65f9dea Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__36-45.png new file mode 100644 index 0000000..5415848 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__46-50.png new file mode 100644 index 0000000..fb4a650 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__51-55.png new file mode 100644 index 0000000..2721d12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__56-60.png new file mode 100644 index 0000000..393a2c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__61-65.png new file mode 100644 index 0000000..340cf56 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__66.png new file mode 100644 index 0000000..2c3b927 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__67-70.png new file mode 100644 index 0000000..d3dce81 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__71-75.png new file mode 100644 index 0000000..128eeed Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__76-80.png new file mode 100644 index 0000000..e238d5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__81-85.png new file mode 100644 index 0000000..1c0c230 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__86-90.png new file mode 100644 index 0000000..9ae8a41 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__91-95.png new file mode 100644 index 0000000..6a841af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__96-99.png new file mode 100644 index 0000000..e21fdd1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__01-05.png new file mode 100644 index 0000000..ccc6ae7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__06-10.png new file mode 100644 index 0000000..3459c03 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__100.png new file mode 100644 index 0000000..18f7e93 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__11-15.png new file mode 100644 index 0000000..d265379 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__16-20.png new file mode 100644 index 0000000..28fc423 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__21-35.png new file mode 100644 index 0000000..8463ee6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__36-45.png new file mode 100644 index 0000000..ccf1123 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__46-50.png new file mode 100644 index 0000000..cb3d6a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__51-55.png new file mode 100644 index 0000000..b1b4abf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__56-60.png new file mode 100644 index 0000000..8b7e886 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__61-65.png new file mode 100644 index 0000000..0dc220b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__66.png new file mode 100644 index 0000000..3fa0039 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__67-70.png new file mode 100644 index 0000000..39e10cd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__71-75.png new file mode 100644 index 0000000..b58664c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__76-80.png new file mode 100644 index 0000000..7ee0589 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__81-85.png new file mode 100644 index 0000000..fa8ad74 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__86-90.png new file mode 100644 index 0000000..c8b94bc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__91-95.png new file mode 100644 index 0000000..a48d147 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__96-99.png new file mode 100644 index 0000000..2b9f745 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__01-05.png new file mode 100644 index 0000000..83c6ce1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__06-10.png new file mode 100644 index 0000000..60964c6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__100.png new file mode 100644 index 0000000..f1930e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__11-15.png new file mode 100644 index 0000000..eb6a8a4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__16-20.png new file mode 100644 index 0000000..6fe7b06 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__21-35.png new file mode 100644 index 0000000..7c856f2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__36-45.png new file mode 100644 index 0000000..ed93ed6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__46-50.png new file mode 100644 index 0000000..00a68d4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__51-55.png new file mode 100644 index 0000000..9e57dce Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__56-60.png new file mode 100644 index 0000000..87bfb94 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__61-65.png new file mode 100644 index 0000000..0e5ac65 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__66.png new file mode 100644 index 0000000..d084c09 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__67-70.png new file mode 100644 index 0000000..cf8007f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__71-75.png new file mode 100644 index 0000000..9fcc47f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__76-80.png new file mode 100644 index 0000000..db5d00a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__81-85.png new file mode 100644 index 0000000..84466f5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__86-90.png new file mode 100644 index 0000000..bdd5488 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__91-95.png new file mode 100644 index 0000000..848c3a3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__96-99.png new file mode 100644 index 0000000..0f495d0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__01-05.png new file mode 100644 index 0000000..cad9b5d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__06-10.png new file mode 100644 index 0000000..2971ba7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__100.png new file mode 100644 index 0000000..2406158 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__11-15.png new file mode 100644 index 0000000..6ad18fc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__16-20.png new file mode 100644 index 0000000..3051d0d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__21-35.png new file mode 100644 index 0000000..55a17fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__36-45.png new file mode 100644 index 0000000..e85c38a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__46-50.png new file mode 100644 index 0000000..7e0ea0e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__51-55.png new file mode 100644 index 0000000..8230ce9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__56-60.png new file mode 100644 index 0000000..3bf8ec0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__61-65.png new file mode 100644 index 0000000..82a1acf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__66.png new file mode 100644 index 0000000..8638a5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__67-70.png new file mode 100644 index 0000000..b0926e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__71-75.png new file mode 100644 index 0000000..bdf497c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__76-80.png new file mode 100644 index 0000000..d2b0a7c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__81-85.png new file mode 100644 index 0000000..bb88a88 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__86-90.png new file mode 100644 index 0000000..0b25f17 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__91-95.png new file mode 100644 index 0000000..5ae5a2c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__96-99.png new file mode 100644 index 0000000..e3f8327 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/tiny/fragments.json new file mode 100644 index 0000000..ada1e1c --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/tiny/fragments.json @@ -0,0 +1,3742 @@ +[ + { + "PageNumber": 1, + "Top": 1144, + "Left": 103, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 111.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 131, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 133.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 136, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 143, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 186.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 241, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 243.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 246, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 253, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 299.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 355, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 357.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 361, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 364.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 366, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 466, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 471, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 472.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 476, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 523.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 581, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 626 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 681, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 747 + }, + { + "PageNumber": 1, + "Top": 1143, + "Left": 47, + "Width": 22, + "Height": 13, + "Text": "104", + "Confidence": null, + "CenterX": 58 + }, + { + "PageNumber": 1, + "Top": 100, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "01-05", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 80, + "Width": 54, + "Height": 9, + "Text": "Dubious strike.", + "Confidence": null, + "CenterX": 107 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 209, + "Width": 87, + "Height": 9, + "Text": "You throw up some dust.", + "Confidence": null, + "CenterX": 252.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 356, + "Width": 106, + "Height": 9, + "Text": "You\u0027re not very good, are you?", + "Confidence": null, + "CenterX": 409 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 503, + "Width": 73, + "Height": 9, + "Text": "Get it right next time!", + "Confidence": null, + "CenterX": 539.5 + }, + { + "PageNumber": 1, + "Top": 94, + "Left": 649, + "Width": 71, + "Height": 9, + "Text": "You did very poorly.", + "Confidence": null, + "CenterX": 684.5 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 628, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 113, + "Left": 779, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "06-10", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 80, + "Width": 81, + "Height": 9, + "Text": "Zip. Less than effective.", + "Confidence": null, + "CenterX": 120.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 209, + "Width": 132, + "Height": 9, + "Text": "You leap. Foe moves. You land. It had", + "Confidence": null, + "CenterX": 275 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 209, + "Width": 40, + "Height": 9, + "Text": "good form.", + "Confidence": null, + "CenterX": 229 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 356, + "Width": 103, + "Height": 9, + "Text": "Look over there! Baby eagles!", + "Confidence": null, + "CenterX": 407.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 503, + "Width": 123, + "Height": 9, + "Text": "Your slash tears off a piece of fur or", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 139, + "Left": 503, + "Width": 19, + "Height": 9, + "Text": "cloth.", + "Confidence": null, + "CenterX": 512.5 + }, + { + "PageNumber": 1, + "Top": 129, + "Left": 649, + "Width": 112, + "Height": 9, + "Text": "Strike is not solid or well placed.", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 628, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 158, + "Left": 779, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 185, + "Left": 34, + "Width": 36, + "Height": 13, + "Text": "11-15", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 80, + "Width": 24, + "Height": 9, + "Text": "Feeble.", + "Confidence": null, + "CenterX": 92 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 209, + "Width": 91, + "Height": 9, + "Text": "You almost got a real grip.", + "Confidence": null, + "CenterX": 254.5 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 356, + "Width": 131, + "Height": 9, + "Text": "You really tear up foe\u0027s garments. Try", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 356, + "Width": 62, + "Height": 9, + "Text": "his skin next time.", + "Confidence": null, + "CenterX": 387 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 503, + "Width": 130, + "Height": 9, + "Text": "Slash to neck, pulls off any necklaces", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 503, + "Width": 52, + "Height": 9, + "Text": "foe is wearing.", + "Confidence": null, + "CenterX": 529 + }, + { + "PageNumber": 1, + "Top": 173, + "Left": 649, + "Width": 127, + "Height": 9, + "Text": "Entangle your claws in foe\u0027s clothes.", + "Confidence": null, + "CenterX": 712.5 + }, + { + "PageNumber": 1, + "Top": 183, + "Left": 649, + "Width": 85, + "Height": 9, + "Text": "You struggle to pull free.", + "Confidence": null, + "CenterX": 691.5 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 628, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 202, + "Left": 779, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 230, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "16-20", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 80, + "Width": 87, + "Height": 9, + "Text": "Victory to the oppressed!", + "Confidence": null, + "CenterX": 123.5 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 209, + "Width": 135, + "Height": 9, + "Text": "Your lunge for foe\u0027s throat was blocked", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 228, + "Left": 209, + "Width": 41, + "Height": 9, + "Text": "by his arm.", + "Confidence": null, + "CenterX": 229.5 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 356, + "Width": 138, + "Height": 9, + "Text": "Glance off foe and grip the air. He steps", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 228, + "Left": 356, + "Width": 61, + "Height": 9, + "Text": "out of your strike.", + "Confidence": null, + "CenterX": 386.5 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 503, + "Width": 113, + "Height": 9, + "Text": "Solid chest strike yields a bruise.", + "Confidence": null, + "CenterX": 559.5 + }, + { + "PageNumber": 1, + "Top": 218, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "Light cutting strike. It has a little effect,", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 228, + "Left": 649, + "Width": 68, + "Height": 9, + "Text": "but you taste blood.", + "Confidence": null, + "CenterX": 683 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 628, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 247, + "Left": 766, + "Width": 27, + "Height": 9, + "Text": "\u002B2H \u2013 \u222B", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 275, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "21-35", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 80, + "Width": 67, + "Height": 9, + "Text": "Jolly deadly attack.", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 209, + "Width": 138, + "Height": 9, + "Text": "You get in close, but foe kicks you clear", + "Confidence": null, + "CenterX": 278 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 209, + "Width": 109, + "Height": 9, + "Text": "before your strike turns deadly.", + "Confidence": null, + "CenterX": 263.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 356, + "Width": 107, + "Height": 9, + "Text": "Strike catches foe in waist. His", + "Confidence": null, + "CenterX": 409.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 356, + "Width": 113, + "Height": 9, + "Text": "equipment blocks some damage.", + "Confidence": null, + "CenterX": 412.5 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 503, + "Width": 129, + "Height": 9, + "Text": "The recoil from a missed strike lands", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 503, + "Width": 134, + "Height": 9, + "Text": "against foe\u0027s back. It is a mild scratch.", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 263, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "Scratch foe in calf. It turns into a bleeder", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 273, + "Left": 649, + "Width": 87, + "Height": 9, + "Text": "and you are very pleased.", + "Confidence": null, + "CenterX": 692.5 + }, + { + "PageNumber": 1, + "Top": 292, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 292, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 292, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 292, + "Left": 628, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 635 + }, + { + "PageNumber": 1, + "Top": 292, + "Left": 763, + "Width": 30, + "Height": 9, + "Text": "\u002B2H \u2013 \u222B", + "Confidence": null, + "CenterX": 778 + }, + { + "PageNumber": 1, + "Top": 318, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "36-45", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 80, + "Width": 75, + "Height": 9, + "Text": "Cruel blow for nature.", + "Confidence": null, + "CenterX": 117.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 209, + "Width": 118, + "Height": 9, + "Text": "Attempt to disembowel falls short.", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 209, + "Width": 102, + "Height": 9, + "Text": "Foe guards his stomach well.", + "Confidence": null, + "CenterX": 260 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 356, + "Width": 130, + "Height": 9, + "Text": "Light grip. Foe breaks free, damaging", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 356, + "Width": 89, + "Height": 9, + "Text": "himself. You are pleased.", + "Confidence": null, + "CenterX": 400.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 503, + "Width": 117, + "Height": 9, + "Text": "Strike to foe\u0027s lower leg. If foe has", + "Confidence": null, + "CenterX": 561.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 503, + "Width": 117, + "Height": 9, + "Text": "no leg armor, you cause him pain.", + "Confidence": null, + "CenterX": 561.5 + }, + { + "PageNumber": 1, + "Top": 307, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "Solid shot to leg. Foe watches you break", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 317, + "Left": 649, + "Width": 74, + "Height": 9, + "Text": "the skin on his thigh.", + "Confidence": null, + "CenterX": 686 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 468, + "Width": 27, + "Height": 9, + "Text": "\u002B2H \u2013 \u222B", + "Confidence": null, + "CenterX": 481.5 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 556, + "Width": 86, + "Height": 9, + "Text": "w/o leg greaves: \u002B5H \u2013 \u222B", + "Confidence": null, + "CenterX": 599 + }, + { + "PageNumber": 1, + "Top": 336, + "Left": 766, + "Width": 27, + "Height": 9, + "Text": "\u002B3H \u2013 \u222B", + "Confidence": null, + "CenterX": 779.5 + }, + { + "PageNumber": 1, + "Top": 364, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "46-50", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 80, + "Width": 111, + "Height": 9, + "Text": "Poor follow through. You lose a", + "Confidence": null, + "CenterX": 135.5 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 80, + "Width": 99, + "Height": 9, + "Text": "claw. Your attack is dubious.", + "Confidence": null, + "CenterX": 129.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 209, + "Width": 126, + "Height": 9, + "Text": "Slash to foe\u0027s side does no cut deep.", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 209, + "Width": 98, + "Height": 9, + "Text": "He turns to avoid the worst.", + "Confidence": null, + "CenterX": 258 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 356, + "Width": 132, + "Height": 9, + "Text": "Solid strike to side does not break the", + "Confidence": null, + "CenterX": 422 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 356, + "Width": 115, + "Height": 9, + "Text": "skin. Foe turns to face you better.", + "Confidence": null, + "CenterX": 413.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 503, + "Width": 121, + "Height": 9, + "Text": "Unexpected puncture in foe\u0027s side.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 503, + "Width": 121, + "Height": 9, + "Text": "You are pleased. Foe grips his side.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 352, + "Left": 649, + "Width": 119, + "Height": 9, + "Text": "You bring a powerful blow around", + "Confidence": null, + "CenterX": 708.5 + }, + { + "PageNumber": 1, + "Top": 362, + "Left": 649, + "Width": 135, + "Height": 9, + "Text": "against foe\u0027s back. He leaps back away.", + "Confidence": null, + "CenterX": 716.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 163, + "Width": 40, + "Height": 9, + "Text": "\u002B4H \u2013 2(-5)", + "Confidence": null, + "CenterX": 183 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 481, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 488 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 615, + "Width": 27, + "Height": 9, + "Text": "\u002B3H \u2013 \u222B", + "Confidence": null, + "CenterX": 628.5 + }, + { + "PageNumber": 1, + "Top": 381, + "Left": 750, + "Width": 43, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0 \u2013 \u222B", + "Confidence": null, + "CenterX": 771.5 + }, + { + "PageNumber": 1, + "Top": 407, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "51-55", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "Leaping chest strike yields some", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 80, + "Width": 71, + "Height": 9, + "Text": "measurable damage.", + "Confidence": null, + "CenterX": 115.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 209, + "Width": 131, + "Height": 9, + "Text": "Good little gash, produces an effective", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 209, + "Width": 28, + "Height": 9, + "Text": "wound.", + "Confidence": null, + "CenterX": 223 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 356, + "Width": 126, + "Height": 9, + "Text": "Mild strike to chest catches in a soft", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 356, + "Width": 125, + "Height": 9, + "Text": "spot. You are surprised at its effect.", + "Confidence": null, + "CenterX": 418.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 503, + "Width": 125, + "Height": 9, + "Text": "Slash foe\u0027s stomach. If foe\u0027s has no", + "Confidence": null, + "CenterX": 565.5 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 503, + "Width": 131, + "Height": 9, + "Text": "metal armor, you tear him open badly.", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 395, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "Grip to foe\u0027s shield arm garments. Foe is", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "unable to use his shield arm for 1 round.", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 189, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 323, + "Width": 27, + "Height": 9, + "Text": "\u002B3H \u2013 \u222B", + "Confidence": null, + "CenterX": 336.5 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 464, + "Width": 32, + "Height": 9, + "Text": "\u002B4H \u2013 2\u222B", + "Confidence": null, + "CenterX": 480 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 536, + "Width": 106, + "Height": 9, + "Text": "w/o abdomen armor: \u002B5H \u2013 3\u222B", + "Confidence": null, + "CenterX": 589 + }, + { + "PageNumber": 1, + "Top": 425, + "Left": 761, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 1\u222B", + "Confidence": null, + "CenterX": 777 + }, + { + "PageNumber": 1, + "Top": 452, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "56-60", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 80, + "Width": 109, + "Height": 9, + "Text": "Light wound to thigh. Garments", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 451, + "Left": 80, + "Width": 100, + "Height": 9, + "Text": "are torn. Promises are made.", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 209, + "Width": 118, + "Height": 9, + "Text": "Scratch foe\u0027s skin, but you do not", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 451, + "Left": 209, + "Width": 50, + "Height": 9, + "Text": "break the skin.", + "Confidence": null, + "CenterX": 234 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 356, + "Width": 128, + "Height": 9, + "Text": "Your original strike misses, but foe\u0027s", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 451, + "Left": 356, + "Width": 117, + "Height": 9, + "Text": "thigh is available as a consolation.", + "Confidence": null, + "CenterX": 414.5 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 503, + "Width": 125, + "Height": 9, + "Text": "Your strike catches the back of foe\u0027s", + "Confidence": null, + "CenterX": 565.5 + }, + { + "PageNumber": 1, + "Top": 451, + "Left": 503, + "Width": 134, + "Height": 9, + "Text": "thigh. Foe is unbalanced for a moment.", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 441, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "You rip open foe\u0027s thigh. The look on his", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 451, + "Left": 649, + "Width": 100, + "Height": 9, + "Text": "face tells you victory is near.", + "Confidence": null, + "CenterX": 699 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 176, + "Width": 27, + "Height": 9, + "Text": "\u002B1H \u2013 \u222B", + "Confidence": null, + "CenterX": 189.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 336, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 446, + "Width": 49, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 590, + "Width": 51, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 615.5 + }, + { + "PageNumber": 1, + "Top": 470, + "Left": 744, + "Width": 49, + "Height": 9, + "Text": "\u002B7H \u2013 \u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 768.5 + }, + { + "PageNumber": 1, + "Top": 502, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "61-65", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 80, + "Width": 124, + "Height": 9, + "Text": "Mild forearm wound. You are doing", + "Confidence": null, + "CenterX": 142 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 80, + "Width": 70, + "Height": 9, + "Text": "very well, keep it up.", + "Confidence": null, + "CenterX": 115 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 209, + "Width": 126, + "Height": 9, + "Text": "Raking forearm strike leaves a nasty", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 209, + "Width": 120, + "Height": 9, + "Text": "scar. It bites deep enough to bleed.", + "Confidence": null, + "CenterX": 269 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 356, + "Width": 128, + "Height": 9, + "Text": "Foe blocks you with his arm and you", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 356, + "Width": 128, + "Height": 9, + "Text": "tear it up as payment. The damage is", + "Confidence": null, + "CenterX": 420 + }, + { + "PageNumber": 1, + "Top": 506, + "Left": 356, + "Width": 119, + "Height": 9, + "Text": "substantial, before foe breaks free.", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 503, + "Width": 136, + "Height": 9, + "Text": "Grip to foe\u0027s forearm. Foe flails his arm", + "Confidence": null, + "CenterX": 571 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 503, + "Width": 134, + "Height": 9, + "Text": "around trying to shake you off. You let", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 506, + "Left": 503, + "Width": 116, + "Height": 9, + "Text": "go and move to a better position.", + "Confidence": null, + "CenterX": 561 + }, + { + "PageNumber": 1, + "Top": 486, + "Left": 649, + "Width": 138, + "Height": 9, + "Text": "Slash across foe\u0027s chest and upper arm.", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 496, + "Left": 649, + "Width": 145, + "Height": 9, + "Text": "Strike causes a bruise and then opens up", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 506, + "Left": 649, + "Width": 125, + "Height": 9, + "Text": "a gaping wound on foe\u0027s shield arm.", + "Confidence": null, + "CenterX": 711.5 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 172, + "Width": 41, + "Height": 9, + "Text": "\u002B2H \u2013 2\u222B", + "Confidence": null, + "CenterX": 192.5 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 318, + "Width": 32, + "Height": 9, + "Text": "\u002B3H \u2013 2\u222B", + "Confidence": null, + "CenterX": 334 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 443, + "Width": 51, + "Height": 9, + "Text": "\u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 468.5 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 562, + "Width": 79, + "Height": 9, + "Text": "\u002B5H \u2013 2\u03C0 \u2013 2\u222B \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 525, + "Left": 739, + "Width": 56, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 767 + }, + { + "PageNumber": 1, + "Top": 571, + "Left": 44, + "Width": 16, + "Height": 13, + "Text": "66", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 80, + "Width": 108, + "Height": 9, + "Text": "You find a nice vulnerable spot", + "Confidence": null, + "CenterX": 134 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 80, + "Width": 113, + "Height": 9, + "Text": "to rip open. Foe leaps back from", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 80, + "Width": 100, + "Height": 9, + "Text": "your cluches. He unbalances", + "Confidence": null, + "CenterX": 130 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 80, + "Width": 106, + "Height": 9, + "Text": "himself to escape your assault.", + "Confidence": null, + "CenterX": 133 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 209, + "Width": 122, + "Height": 9, + "Text": "Your strike grips foe\u0027s calf. He pulls", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 209, + "Width": 128, + "Height": 9, + "Text": "away from you violently. His actions", + "Confidence": null, + "CenterX": 273 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 209, + "Width": 139, + "Height": 9, + "Text": "further damage the wound. You do your", + "Confidence": null, + "CenterX": 278.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 209, + "Width": 93, + "Height": 9, + "Text": "best, before he breaks free.", + "Confidence": null, + "CenterX": 255.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 356, + "Width": 133, + "Height": 9, + "Text": "Violent move assaults foe\u0027s arm, wrist", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 356, + "Width": 121, + "Height": 9, + "Text": "and shoulder. Foe is shaken by the", + "Confidence": null, + "CenterX": 416.5 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 356, + "Width": 139, + "Height": 9, + "Text": "vicious strike. He drops his weapon and", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 356, + "Width": 132, + "Height": 9, + "Text": "leaps back 10 feet. You stay with your", + "Confidence": null, + "CenterX": 422 + }, + { + "PageNumber": 1, + "Top": 580, + "Left": 356, + "Width": 113, + "Height": 9, + "Text": "quarry looking for an advantage.", + "Confidence": null, + "CenterX": 412.5 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 503, + "Width": 128, + "Height": 9, + "Text": "Astounding head strike. If foe has no", + "Confidence": null, + "CenterX": 567 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 503, + "Width": 136, + "Height": 9, + "Text": "helm, you make a bloody mess of foe\u0027s", + "Confidence": null, + "CenterX": 571 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 503, + "Width": 128, + "Height": 9, + "Text": "scalp. To further your advantage you", + "Confidence": null, + "CenterX": 567 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 503, + "Width": 90, + "Height": 9, + "Text": "push foe\u0027s head sideways.", + "Confidence": null, + "CenterX": 548 + }, + { + "PageNumber": 1, + "Top": 539, + "Left": 649, + "Width": 138, + "Height": 9, + "Text": "Bizarre strike to eyes destroys 1 eye and", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 550, + "Left": 649, + "Width": 136, + "Height": 9, + "Text": "leaves the other blind for 2 days. Foe is", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 560, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "down and helpless for an hour. He will", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 570, + "Left": 649, + "Width": 120, + "Height": 9, + "Text": "need assistance to even stand. His", + "Confidence": null, + "CenterX": 709 + }, + { + "PageNumber": 1, + "Top": 580, + "Left": 649, + "Width": 106, + "Height": 9, + "Text": "appearance is modified by -20.", + "Confidence": null, + "CenterX": 702 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 143, + "Width": 60, + "Height": 9, + "Text": "\u002B4h \u2013 2\u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 173 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 288, + "Width": 62, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 319 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 436, + "Width": 59, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 465.5 + }, + { + "PageNumber": 1, + "Top": 599, + "Left": 590, + "Width": 52, + "Height": 9, + "Text": "with helm: \u002B4H", + "Confidence": null, + "CenterX": 616 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 571, + "Width": 70, + "Height": 9, + "Text": "w/o helm: \u002B7H \u2013 6\u220F", + "Confidence": null, + "CenterX": 606 + }, + { + "PageNumber": 1, + "Top": 609, + "Left": 722, + "Width": 71, + "Height": 9, + "Text": "\u002B15H \u2013 24\u2211 \u2013 (-95)", + "Confidence": null, + "CenterX": 757.5 + }, + { + "PageNumber": 1, + "Top": 635, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "67-70", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 80, + "Width": 110, + "Height": 9, + "Text": "Slash to foe\u0027s shoulder. It\u0027s not", + "Confidence": null, + "CenterX": 135 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 80, + "Width": 78, + "Height": 9, + "Text": "deadly, but it is a start.", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 209, + "Width": 122, + "Height": 9, + "Text": "Claw scratches acrossed a piece of", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 209, + "Width": 104, + "Height": 9, + "Text": "metal. That screeching sound!", + "Confidence": null, + "CenterX": 261 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 356, + "Width": 133, + "Height": 9, + "Text": "Pull foe off balance with a grasp to his", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 356, + "Width": 134, + "Height": 9, + "Text": "shoulder. He steps away and stumbles.", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 503, + "Width": 139, + "Height": 9, + "Text": "Graceful slash to foe\u0027s shoulder sweeps", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 503, + "Width": 134, + "Height": 9, + "Text": "blood onto foe\u0027s face. Foe is unsteady.", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 624, + "Left": 649, + "Width": 119, + "Height": 9, + "Text": "Inspired shoulder strike sends foe", + "Confidence": null, + "CenterX": 708.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 649, + "Width": 142, + "Height": 9, + "Text": "reeling. You tear tendons and cause pain.", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 163, + "Width": 41, + "Height": 9, + "Text": "\u002B3H \u2013 \u03C0 \u2013\u222B", + "Confidence": null, + "CenterX": 183.5 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 305, + "Width": 45, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 327.5 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 416, + "Width": 80, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211 \u2013 2\u222B \u2013 1(-20)", + "Confidence": null, + "CenterX": 456 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 586, + "Width": 56, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 614 + }, + { + "PageNumber": 1, + "Top": 653, + "Left": 723, + "Width": 69, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 757.5 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "71-75", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 669, + "Left": 80, + "Width": 119, + "Height": 9, + "Text": "You attempt to assault foe\u0027s lower", + "Confidence": null, + "CenterX": 139.5 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 80, + "Width": 92, + "Height": 9, + "Text": "leg. You have the initiative.", + "Confidence": null, + "CenterX": 126 + }, + { + "PageNumber": 1, + "Top": 669, + "Left": 209, + "Width": 140, + "Height": 9, + "Text": "Assault foe\u0027s shin. If foe has no armor,", + "Confidence": null, + "CenterX": 279 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 209, + "Width": 134, + "Height": 9, + "Text": "you tear his shin up. Foe struggles to", + "Confidence": null, + "CenterX": 276 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 209, + "Width": 48, + "Height": 9, + "Text": "throw you off.", + "Confidence": null, + "CenterX": 233 + }, + { + "PageNumber": 1, + "Top": 669, + "Left": 356, + "Width": 130, + "Height": 9, + "Text": "You slash into a muscle on foe\u0027s calf.", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 356, + "Width": 119, + "Height": 9, + "Text": "You have the initiative next round.", + "Confidence": null, + "CenterX": 415.5 + }, + { + "PageNumber": 1, + "Top": 669, + "Left": 503, + "Width": 142, + "Height": 9, + "Text": "Lower leg strike. If foe has no leg armor,", + "Confidence": null, + "CenterX": 574 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 503, + "Width": 123, + "Height": 9, + "Text": "heavy bruise. Foe stumbles back to", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 503, + "Width": 37, + "Height": 9, + "Text": "avoid you.", + "Confidence": null, + "CenterX": 521.5 + }, + { + "PageNumber": 1, + "Top": 669, + "Left": 649, + "Width": 130, + "Height": 9, + "Text": "Vicious leg wound bleeds hard. Foe\u0027s", + "Confidence": null, + "CenterX": 714 + }, + { + "PageNumber": 1, + "Top": 679, + "Left": 649, + "Width": 132, + "Height": 9, + "Text": "attempt to stop the bleeding gets it all", + "Confidence": null, + "CenterX": 715 + }, + { + "PageNumber": 1, + "Top": 689, + "Left": 649, + "Width": 52, + "Height": 9, + "Text": "over his hands.", + "Confidence": null, + "CenterX": 675 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 135, + "Width": 68, + "Height": 9, + "Text": "with leg armor: \u002B4H", + "Confidence": null, + "CenterX": 169 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 119, + "Width": 84, + "Height": 9, + "Text": "w/o leg armor: \u002B1H \u2013 2\u222B", + "Confidence": null, + "CenterX": 161 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 282, + "Width": 68, + "Height": 9, + "Text": "with leg armor: \u002B6H", + "Confidence": null, + "CenterX": 316 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 246, + "Width": 104, + "Height": 9, + "Text": "w/o leg armor: \u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "Confidence": null, + "CenterX": 298 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 437, + "Width": 57, + "Height": 9, + "Text": "2\u2211 \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 465.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 556, + "Width": 86, + "Height": 9, + "Text": "with leg armor: \u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 599 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 561, + "Width": 81, + "Height": 9, + "Text": "w/o leg armor: 2\u2211 \u2013 \u220F", + "Confidence": null, + "CenterX": 601.5 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 739, + "Width": 54, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 4\u222B", + "Confidence": null, + "CenterX": 766 + }, + { + "PageNumber": 1, + "Top": 755, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "76-80", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 733, + "Left": 80, + "Width": 112, + "Height": 9, + "Text": "Weak, but precise strike to foe\u0027s", + "Confidence": null, + "CenterX": 136 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "arm. Foe shakes you off, but you", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 80, + "Width": 89, + "Height": 9, + "Text": "do some damage anyway.", + "Confidence": null, + "CenterX": 124.5 + }, + { + "PageNumber": 1, + "Top": 733, + "Left": 209, + "Width": 130, + "Height": 9, + "Text": "Strong, but imprecise arm strike. The", + "Confidence": null, + "CenterX": 274 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 209, + "Width": 123, + "Height": 9, + "Text": "wound is of moderate size. You are", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 209, + "Width": 86, + "Height": 9, + "Text": "proud to have created it.", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 733, + "Left": 356, + "Width": 144, + "Height": 9, + "Text": "You take a shot at foe\u0027s forearm. It lands", + "Confidence": null, + "CenterX": 428 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 356, + "Width": 134, + "Height": 9, + "Text": "well. A muscle and tendon are slashed.", + "Confidence": null, + "CenterX": 423 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 356, + "Width": 93, + "Height": 9, + "Text": "He holds on to his weapon.", + "Confidence": null, + "CenterX": 402.5 + }, + { + "PageNumber": 1, + "Top": 733, + "Left": 503, + "Width": 135, + "Height": 9, + "Text": "Grab foe\u0027s arm. Foe struggles violently", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 503, + "Width": 129, + "Height": 9, + "Text": "to make you let go. You rend his arm", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 503, + "Width": 112, + "Height": 9, + "Text": "without mercy. He gets free and", + "Confidence": null, + "CenterX": 559 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 503, + "Width": 121, + "Height": 9, + "Text": "stumbles back. You win this round.", + "Confidence": null, + "CenterX": 563.5 + }, + { + "PageNumber": 1, + "Top": 733, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "Sly arm strike gives foe a troublesome", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 743, + "Left": 649, + "Width": 136, + "Height": 9, + "Text": "wound. What looks like a tiny wound is", + "Confidence": null, + "CenterX": 717 + }, + { + "PageNumber": 1, + "Top": 753, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "producing much blood. Foe does not fall", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 649, + "Width": 102, + "Height": 9, + "Text": "down, but he stumbles much.", + "Confidence": null, + "CenterX": 700 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 159, + "Width": 45, + "Height": 9, + "Text": "\u002B3H \u2013 \u2211 \u2013 \u222B", + "Confidence": null, + "CenterX": 181.5 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 292, + "Width": 58, + "Height": 9, + "Text": "\u002B5H \u2013 2\u222B \u2013 (-15)", + "Confidence": null, + "CenterX": 321 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 411, + "Width": 84, + "Height": 9, + "Text": "\u002B5H \u2013 2\u2211 \u2013 2\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 453 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 562, + "Width": 80, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 2\u222B \u2013 (-25)", + "Confidence": null, + "CenterX": 602 + }, + { + "PageNumber": 1, + "Top": 782, + "Left": 754, + "Width": 38, + "Height": 9, + "Text": "2\u2211\u220F \u2013 3\u222B", + "Confidence": null, + "CenterX": 773 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "81-85", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "Strike at foe\u0027s face. He panics and", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 80, + "Width": 122, + "Height": 9, + "Text": "stumbles back 5 feet. You fall clear", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 80, + "Width": 104, + "Height": 9, + "Text": "and prepare for another strike.", + "Confidence": null, + "CenterX": 132 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 209, + "Width": 62, + "Height": 9, + "Text": "Flying face strike.", + "Confidence": null, + "CenterX": 240 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 356, + "Width": 142, + "Height": 9, + "Text": "Head strike. Foe\u0027s helm is knocked off. If", + "Confidence": null, + "CenterX": 427 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 356, + "Width": 127, + "Height": 9, + "Text": "foe has no helm, he has a vicious cut", + "Confidence": null, + "CenterX": 419.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 356, + "Width": 41, + "Height": 9, + "Text": "to his scalp.", + "Confidence": null, + "CenterX": 376.5 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 503, + "Width": 139, + "Height": 9, + "Text": "Acrobatic face strike. If foe has no facial", + "Confidence": null, + "CenterX": 572.5 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 503, + "Width": 135, + "Height": 9, + "Text": "armor he will get some, when his nose", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 819, + "Left": 503, + "Width": 20, + "Height": 9, + "Text": "heals.", + "Confidence": null, + "CenterX": 513 + }, + { + "PageNumber": 1, + "Top": 798, + "Left": 649, + "Width": 133, + "Height": 9, + "Text": "Slash between foe\u0027s fingers. If foe has", + "Confidence": null, + "CenterX": 715.5 + }, + { + "PageNumber": 1, + "Top": 808, + "Left": 649, + "Width": 105, + "Height": 9, + "Text": "a metal gauntlet on, he is fine.", + "Confidence": null, + "CenterX": 701.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 156, + "Width": 47, + "Height": 9, + "Text": "\u002B4H \u2013 \u2211 \u20132\u222B", + "Confidence": null, + "CenterX": 179.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 259, + "Width": 91, + "Height": 9, + "Text": "with facial armor: \u002B3H \u2013 \u03C0", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 259, + "Width": 91, + "Height": 9, + "Text": "w/o facial armor: 3\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 304.5 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 419, + "Width": 76, + "Height": 9, + "Text": "with helmet: \u002B3H \u2013 \u2211", + "Confidence": null, + "CenterX": 457 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 376, + "Width": 118, + "Height": 9, + "Text": "w/o helmet: \u002B2H \u2013 \u2211 \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 435 + }, + { + "PageNumber": 1, + "Top": 836, + "Left": 565, + "Width": 76, + "Height": 9, + "Text": "with facial armor: \u002B5H", + "Confidence": null, + "CenterX": 603 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 525, + "Width": 117, + "Height": 9, + "Text": "w/o facial armor: 3\u2211 \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 583.5 + }, + { + "PageNumber": 1, + "Top": 846, + "Left": 741, + "Width": 51, + "Height": 9, + "Text": "\u002B8H \u2013 9\u2211 \u20133\u222B", + "Confidence": null, + "CenterX": 766.5 + }, + { + "PageNumber": 1, + "Top": 884, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "86-90", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 80, + "Width": 126, + "Height": 9, + "Text": "Sudden well placed blow makes you", + "Confidence": null, + "CenterX": 143 + }, + { + "PageNumber": 1, + "Top": 872, + "Left": 80, + "Width": 97, + "Height": 9, + "Text": "feel you are mighty in battle.", + "Confidence": null, + "CenterX": 128.5 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 80, + "Width": 76, + "Height": 9, + "Text": "Your foe is convinced.", + "Confidence": null, + "CenterX": 118 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 209, + "Width": 122, + "Height": 9, + "Text": "Slash foe\u0027s neck. He thinks you just", + "Confidence": null, + "CenterX": 270 + }, + { + "PageNumber": 1, + "Top": 872, + "Left": 209, + "Width": 123, + "Height": 9, + "Text": "killed him. The wound is not mortal.", + "Confidence": null, + "CenterX": 270.5 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 209, + "Width": 121, + "Height": 9, + "Text": "Foe stumbles away fearful of death.", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 356, + "Width": 123, + "Height": 9, + "Text": "Shoulder strike unbalances foe and", + "Confidence": null, + "CenterX": 417.5 + }, + { + "PageNumber": 1, + "Top": 872, + "Left": 356, + "Width": 133, + "Height": 9, + "Text": "spins him around. He is frantic to turn", + "Confidence": null, + "CenterX": 422.5 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 356, + "Width": 124, + "Height": 9, + "Text": "around and face you. You move the", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 893, + "Left": 356, + "Width": 124, + "Height": 9, + "Text": "other direction to prolong the effect.", + "Confidence": null, + "CenterX": 418 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 503, + "Width": 125, + "Height": 9, + "Text": "Strong grip to foe\u0027s weapon arm. He", + "Confidence": null, + "CenterX": 565.5 + }, + { + "PageNumber": 1, + "Top": 872, + "Left": 503, + "Width": 122, + "Height": 9, + "Text": "tries to throw you clear, but cannot.", + "Confidence": null, + "CenterX": 564 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 503, + "Width": 133, + "Height": 9, + "Text": "He finally drops his weapon . You lose", + "Confidence": null, + "CenterX": 569.5 + }, + { + "PageNumber": 1, + "Top": 893, + "Left": 503, + "Width": 123, + "Height": 9, + "Text": "your grip on him at the same time.", + "Confidence": null, + "CenterX": 564.5 + }, + { + "PageNumber": 1, + "Top": 862, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "Rend open foe\u0027s lower back with a quick", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 872, + "Left": 649, + "Width": 141, + "Height": 9, + "Text": "double slash. Both wounds are deep and", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 883, + "Left": 649, + "Width": 137, + "Height": 9, + "Text": "nasty. Blood pours out all over you and", + "Confidence": null, + "CenterX": 717.5 + }, + { + "PageNumber": 1, + "Top": 893, + "Left": 649, + "Width": 128, + "Height": 9, + "Text": "foe, making the combat seem brutal.", + "Confidence": null, + "CenterX": 713 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 167, + "Width": 36, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 297, + "Width": 54, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211 \u2013 2\u222B", + "Confidence": null, + "CenterX": 324 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 452, + "Width": 43, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 473.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 610, + "Width": 31, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 625.5 + }, + { + "PageNumber": 1, + "Top": 912, + "Left": 697, + "Width": 95, + "Height": 9, + "Text": "\u002B4H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 744.5 + }, + { + "PageNumber": 1, + "Top": 944, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "91-95", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 80, + "Width": 113, + "Height": 9, + "Text": "Leaping head stike. If foe has no", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 80, + "Width": 114, + "Height": 9, + "Text": "helm, face and left ear is slashed.", + "Confidence": null, + "CenterX": 137 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 209, + "Width": 126, + "Height": 9, + "Text": "Foe blocks your attack with his arm", + "Confidence": null, + "CenterX": 272 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 209, + "Width": 135, + "Height": 9, + "Text": "so you slash it in place of your original", + "Confidence": null, + "CenterX": 276.5 + }, + { + "PageNumber": 1, + "Top": 948, + "Left": 209, + "Width": 107, + "Height": 9, + "Text": "target. Foe realizes his mistake.", + "Confidence": null, + "CenterX": 262.5 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 356, + "Width": 139, + "Height": 9, + "Text": "Strike lands near neck and cheek. Foe is", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 356, + "Width": 116, + "Height": 9, + "Text": "disoriented and recoils from your", + "Confidence": null, + "CenterX": 414 + }, + { + "PageNumber": 1, + "Top": 948, + "Left": 356, + "Width": 38, + "Height": 9, + "Text": "onslaught.", + "Confidence": null, + "CenterX": 375 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 503, + "Width": 135, + "Height": 9, + "Text": "Clean strike, you cleave the thumb on", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 503, + "Width": 135, + "Height": 9, + "Text": "foe\u0027s weapon arm. His arm is less than", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 948, + "Left": 503, + "Width": 103, + "Height": 9, + "Text": "useful. Foe drops his weapon.", + "Confidence": null, + "CenterX": 554.5 + }, + { + "PageNumber": 1, + "Top": 928, + "Left": 649, + "Width": 138, + "Height": 9, + "Text": "Dazzling leap knocks foe down. Foe hits", + "Confidence": null, + "CenterX": 718 + }, + { + "PageNumber": 1, + "Top": 938, + "Left": 649, + "Width": 115, + "Height": 9, + "Text": "on his back. Foe is disarmed and", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 948, + "Left": 649, + "Width": 46, + "Height": 9, + "Text": "unconscious.", + "Confidence": null, + "CenterX": 672 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 141, + "Width": 62, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211 \u2013 (-30)", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 289, + "Width": 61, + "Height": 9, + "Text": "\u002B5H \u2013 3\u2211\u220F \u2013 2\u222B", + "Confidence": null, + "CenterX": 319.5 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 408, + "Width": 87, + "Height": 9, + "Text": "\u002B3H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Confidence": null, + "CenterX": 451.5 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 596, + "Width": 46, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-50)", + "Confidence": null, + "CenterX": 619 + }, + { + "PageNumber": 1, + "Top": 967, + "Left": 779, + "Width": 14, + "Height": 9, + "Text": "\u002B9H", + "Confidence": null, + "CenterX": 786 + }, + { + "PageNumber": 1, + "Top": 1008, + "Left": 34, + "Width": 37, + "Height": 13, + "Text": "96-99", + "Confidence": null, + "CenterX": 52.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 80, + "Width": 102, + "Height": 9, + "Text": "Insulting strike to foe\u0027s nose.", + "Confidence": null, + "CenterX": 131 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 80, + "Width": 117, + "Height": 9, + "Text": "If foe has no nose guard, his nose", + "Confidence": null, + "CenterX": 138.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 80, + "Width": 113, + "Height": 9, + "Text": "is shredded. Foe reels from your", + "Confidence": null, + "CenterX": 136.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 80, + "Width": 36, + "Height": 9, + "Text": "onslaught.", + "Confidence": null, + "CenterX": 98 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 209, + "Width": 117, + "Height": 9, + "Text": "Strike to foe\u0027s forehead. Foe is", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 209, + "Width": 131, + "Height": 9, + "Text": "blinded, until the bleeding is stopped.", + "Confidence": null, + "CenterX": 274.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 209, + "Width": 117, + "Height": 9, + "Text": "Foe is off guard trying to stop the", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 209, + "Width": 103, + "Height": 9, + "Text": "bleeding. Now is your chance.", + "Confidence": null, + "CenterX": 260.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 356, + "Width": 138, + "Height": 9, + "Text": "Epic slash to foe\u0027s Achilles tendon. Foe", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 356, + "Width": 130, + "Height": 9, + "Text": "falls down. He is almost helpless. His", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 356, + "Width": 130, + "Height": 9, + "Text": "attempts to crawl away fail. You have", + "Confidence": null, + "CenterX": 421 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 356, + "Width": 34, + "Height": 9, + "Text": "him now.", + "Confidence": null, + "CenterX": 373 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 503, + "Width": 129, + "Height": 9, + "Text": "Strike foe in face. If foe has a visored", + "Confidence": null, + "CenterX": 567.5 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 503, + "Width": 130, + "Height": 9, + "Text": "helm, he is blinded and helpless for a", + "Confidence": null, + "CenterX": 568 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 503, + "Width": 142, + "Height": 9, + "Text": "week while the swelling lasts. If foe does", + "Confidence": null, + "CenterX": 574 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 503, + "Width": 137, + "Height": 9, + "Text": "not have a visored helm, he loses 1 eye", + "Confidence": null, + "CenterX": 571.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 503, + "Width": 85, + "Height": 9, + "Text": "and is blind in the other.", + "Confidence": null, + "CenterX": 545.5 + }, + { + "PageNumber": 1, + "Top": 982, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "Head strike is deadly. Slash open foe\u0027s", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 992, + "Left": 649, + "Width": 134, + "Height": 9, + "Text": "head and send him down. He hits hard.", + "Confidence": null, + "CenterX": 716 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 649, + "Width": 112, + "Height": 9, + "Text": "The shock of your strike and the", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 1012, + "Left": 649, + "Width": 145, + "Height": 9, + "Text": "concussion of the fall is too much for him", + "Confidence": null, + "CenterX": 721.5 + }, + { + "PageNumber": 1, + "Top": 1022, + "Left": 649, + "Width": 105, + "Height": 9, + "Text": "to handle. He dies in 9 rounds.", + "Confidence": null, + "CenterX": 701.5 + }, + { + "PageNumber": 1, + "Top": 1041, + "Left": 172, + "Width": 31, + "Height": 9, + "Text": "9\u2211 \u2013 3\u222B", + "Confidence": null, + "CenterX": 187.5 + }, + { + "PageNumber": 1, + "Top": 1041, + "Left": 285, + "Width": 64, + "Height": 9, + "Text": "3\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Confidence": null, + "CenterX": 317 + }, + { + "PageNumber": 1, + "Top": 1041, + "Left": 426, + "Width": 69, + "Height": 9, + "Text": "\u002B5H \u2013 6\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 460.5 + }, + { + "PageNumber": 1, + "Top": 1041, + "Left": 620, + "Width": 22, + "Height": 9, + "Text": "(-100)", + "Confidence": null, + "CenterX": 631 + }, + { + "PageNumber": 1, + "Top": 1041, + "Left": 783, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 787.5 + }, + { + "PageNumber": 1, + "Top": 1082, + "Left": 40, + "Width": 24, + "Height": 13, + "Text": "100", + "Confidence": null, + "CenterX": 52 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 80, + "Width": 105, + "Height": 9, + "Text": "Strike at foe\u0027s eyes. Without a", + "Confidence": null, + "CenterX": 132.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 80, + "Width": 118, + "Height": 9, + "Text": "visored helm, foe loses one of his", + "Confidence": null, + "CenterX": 139 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 80, + "Width": 20, + "Height": 9, + "Text": "eyes.", + "Confidence": null, + "CenterX": 90 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 209, + "Width": 130, + "Height": 9, + "Text": "Foe leaps back to avoid a slash to the", + "Confidence": null, + "CenterX": 274 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 209, + "Width": 121, + "Height": 9, + "Text": "throat, too late. He falls down. You", + "Confidence": null, + "CenterX": 269.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 209, + "Width": 136, + "Height": 9, + "Text": "expose some muscle and make a mess.", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 356, + "Width": 135, + "Height": 9, + "Text": "Severe head strike. If foe has a helm he", + "Confidence": null, + "CenterX": 423.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 356, + "Width": 139, + "Height": 9, + "Text": "is unconscious for 1-10 days. Without a", + "Confidence": null, + "CenterX": 425.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 356, + "Width": 61, + "Height": 9, + "Text": "helm, foe is dead.", + "Confidence": null, + "CenterX": 386.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 503, + "Width": 119, + "Height": 9, + "Text": "Strike to foe\u0027s eyes. Foe is blinded", + "Confidence": null, + "CenterX": 562.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 503, + "Width": 119, + "Height": 9, + "Text": "permanently. Foe is at your mercy.", + "Confidence": null, + "CenterX": 562.5 + }, + { + "PageNumber": 1, + "Top": 1057, + "Left": 649, + "Width": 147, + "Height": 9, + "Text": "Unbelievable strike to foe\u0027s neck. Vein and", + "Confidence": null, + "CenterX": 722.5 + }, + { + "PageNumber": 1, + "Top": 1067, + "Left": 649, + "Width": 143, + "Height": 9, + "Text": "artery severed. Foe dies after 6 rounds of", + "Confidence": null, + "CenterX": 720.5 + }, + { + "PageNumber": 1, + "Top": 1078, + "Left": 649, + "Width": 35, + "Height": 9, + "Text": "inactivity.", + "Confidence": null, + "CenterX": 666.5 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 130, + "Width": 73, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211\u220F \u2013 (-75)", + "Confidence": null, + "CenterX": 166.5 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 285, + "Width": 64, + "Height": 9, + "Text": "6\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "Confidence": null, + "CenterX": 317 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 464, + "Width": 32, + "Height": 9, + "Text": "\u002B25H \u2013 \u222B", + "Confidence": null, + "CenterX": 480 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 551, + "Width": 91, + "Height": 9, + "Text": "\u002B10H \u2013 6\u2211\u220F \u2013 2\u222B \u2013 (-95)", + "Confidence": null, + "CenterX": 596.5 + }, + { + "PageNumber": 1, + "Top": 1114, + "Left": 779, + "Width": 13, + "Height": 9, + "Text": "20\u222B", + "Confidence": null, + "CenterX": 785.5 + }, + { + "PageNumber": 1, + "Top": 39, + "Left": 241, + "Width": 344, + "Height": 13, + "Text": "4.11 tiny critical strike table", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 71, + "Left": 135, + "Width": 12, + "Height": 12, + "Text": "A", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 271, + "Width": 12, + "Height": 12, + "Text": "b", + "Confidence": null, + "CenterX": 277 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 418, + "Width": 14, + "Height": 12, + "Text": "c", + "Confidence": null, + "CenterX": 425 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 562, + "Width": 16, + "Height": 12, + "Text": "d", + "Confidence": null, + "CenterX": 570 + }, + { + "PageNumber": 1, + "Top": 70, + "Left": 718, + "Width": 11, + "Height": 12, + "Text": "e", + "Confidence": null, + "CenterX": 723.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/tiny/pages/page-001.png new file mode 100644 index 0000000..c78b088 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/tiny/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/tiny/parsed-cells.json new file mode 100644 index 0000000..f1e734f --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/tiny/parsed-cells.json @@ -0,0 +1,7349 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "Dubious strike.", + "\u002B0H" + ], + "BaseLines": [ + "Dubious strike.", + "\u002B0H" + ], + "RawCellText": "Dubious strike.\n\u002B0H", + "DescriptionText": "Dubious strike.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 94, + "Width": 123, + "Height": 28 + }, + "SourceImagePath": "tiny/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 376, + "BoundsWidth": 492, + "BoundsHeight": 112, + "CropLeft": 272, + "CropTop": 344, + "CropWidth": 588, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "You throw up some dust.", + "\u002B0H" + ], + "BaseLines": [ + "You throw up some dust.", + "\u002B0H" + ], + "RawCellText": "You throw up some dust.\n\u002B0H", + "DescriptionText": "You throw up some dust.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 94, + "Width": 141, + "Height": 28 + }, + "SourceImagePath": "tiny/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 376, + "BoundsWidth": 564, + "BoundsHeight": 112, + "CropLeft": 788, + "CropTop": 344, + "CropWidth": 660, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "You\u0027re not very good, are you?", + "\u002B0H" + ], + "BaseLines": [ + "You\u0027re not very good, are you?", + "\u002B0H" + ], + "RawCellText": "You\u0027re not very good, are you?\n\u002B0H", + "DescriptionText": "You\u0027re not very good, are you?", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 94, + "Width": 139, + "Height": 28 + }, + "SourceImagePath": "tiny/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 376, + "BoundsWidth": 556, + "BoundsHeight": 112, + "CropLeft": 1376, + "CropTop": 344, + "CropWidth": 652, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "Get it right next time!", + "\u002B0H" + ], + "BaseLines": [ + "Get it right next time!", + "\u002B0H" + ], + "RawCellText": "Get it right next time!\n\u002B0H", + "DescriptionText": "Get it right next time!", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 94, + "Width": 139, + "Height": 28 + }, + "SourceImagePath": "tiny/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 376, + "BoundsWidth": 556, + "BoundsHeight": 112, + "CropLeft": 1964, + "CropTop": 344, + "CropWidth": 652, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "You did very poorly.", + "\u002B1H" + ], + "BaseLines": [ + "You did very poorly.", + "\u002B1H" + ], + "RawCellText": "You did very poorly.\n\u002B1H", + "DescriptionText": "You did very poorly.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 94, + "Width": 144, + "Height": 28 + }, + "SourceImagePath": "tiny/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 376, + "BoundsWidth": 576, + "BoundsHeight": 112, + "CropLeft": 2548, + "CropTop": 344, + "CropWidth": 672, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Zip. Less than effective.", + "\u002B0H" + ], + "BaseLines": [ + "Zip. Less than effective.", + "\u002B0H" + ], + "RawCellText": "Zip. Less than effective.\n\u002B0H", + "DescriptionText": "Zip. Less than effective.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 129, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 516, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 484, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "You leap. Foe moves. You land. It had", + "good form.", + "\u002B0H" + ], + "BaseLines": [ + "You leap. Foe moves. You land. It had", + "good form.", + "\u002B0H" + ], + "RawCellText": "You leap. Foe moves. You land. It had\ngood form.\n\u002B0H", + "DescriptionText": "You leap. Foe moves. You land. It had good form.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 129, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 516, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 484, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "Look over there! Baby eagles!", + "\u002B0H" + ], + "BaseLines": [ + "Look over there! Baby eagles!", + "\u002B0H" + ], + "RawCellText": "Look over there! Baby eagles!\n\u002B0H", + "DescriptionText": "Look over there! Baby eagles!", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 129, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 516, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 484, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Your slash tears off a piece of fur or", + "cloth.", + "\u002B1H" + ], + "BaseLines": [ + "Your slash tears off a piece of fur or", + "cloth.", + "\u002B1H" + ], + "RawCellText": "Your slash tears off a piece of fur or\ncloth.\n\u002B1H", + "DescriptionText": "Your slash tears off a piece of fur or cloth.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 129, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 516, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 484, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "Strike is not solid or well placed.", + "\u002B2H" + ], + "BaseLines": [ + "Strike is not solid or well placed.", + "\u002B2H" + ], + "RawCellText": "Strike is not solid or well placed.\n\u002B2H", + "DescriptionText": "Strike is not solid or well placed.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 129, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 516, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 484, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Feeble.", + "\u002B0H" + ], + "BaseLines": [ + "Feeble.", + "\u002B0H" + ], + "RawCellText": "Feeble.\n\u002B0H", + "DescriptionText": "Feeble.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 173, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 692, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 660, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "You almost got a real grip.", + "\u002B0H" + ], + "BaseLines": [ + "You almost got a real grip.", + "\u002B0H" + ], + "RawCellText": "You almost got a real grip.\n\u002B0H", + "DescriptionText": "You almost got a real grip.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 173, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 692, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 660, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "You really tear up foe\u0027s garments. Try", + "his skin next time.", + "\u002B1H" + ], + "BaseLines": [ + "You really tear up foe\u0027s garments. Try", + "his skin next time.", + "\u002B1H" + ], + "RawCellText": "You really tear up foe\u0027s garments. Try\nhis skin next time.\n\u002B1H", + "DescriptionText": "You really tear up foe\u0027s garments. Try his skin next time.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 173, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 692, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 660, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Slash to neck, pulls off any necklaces", + "foe is wearing.", + "\u002B1H" + ], + "BaseLines": [ + "Slash to neck, pulls off any necklaces", + "foe is wearing.", + "\u002B1H" + ], + "RawCellText": "Slash to neck, pulls off any necklaces\nfoe is wearing.\n\u002B1H", + "DescriptionText": "Slash to neck, pulls off any necklaces foe is wearing.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 173, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 692, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 660, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Entangle your claws in foe\u0027s clothes.", + "You struggle to pull free.", + "\u002B2H" + ], + "BaseLines": [ + "Entangle your claws in foe\u0027s clothes.", + "You struggle to pull free.", + "\u002B2H" + ], + "RawCellText": "Entangle your claws in foe\u0027s clothes.\nYou struggle to pull free.\n\u002B2H", + "DescriptionText": "Entangle your claws in foe\u0027s clothes. You struggle to pull free.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 173, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 692, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 660, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Victory to the oppressed!", + "\u002B1H" + ], + "BaseLines": [ + "Victory to the oppressed!", + "\u002B1H" + ], + "RawCellText": "Victory to the oppressed!\n\u002B1H", + "DescriptionText": "Victory to the oppressed!", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 218, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 872, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 840, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Your lunge for foe\u0027s throat was blocked", + "by his arm.", + "\u002B1H" + ], + "BaseLines": [ + "Your lunge for foe\u0027s throat was blocked", + "by his arm.", + "\u002B1H" + ], + "RawCellText": "Your lunge for foe\u0027s throat was blocked\nby his arm.\n\u002B1H", + "DescriptionText": "Your lunge for foe\u0027s throat was blocked by his arm.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 218, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 872, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 840, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Glance off foe and grip the air. He steps", + "out of your strike.", + "\u002B1H" + ], + "BaseLines": [ + "Glance off foe and grip the air. He steps", + "out of your strike.", + "\u002B1H" + ], + "RawCellText": "Glance off foe and grip the air. He steps\nout of your strike.\n\u002B1H", + "DescriptionText": "Glance off foe and grip the air. He steps out of your strike.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 218, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 872, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 840, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Solid chest strike yields a bruise.", + "\u002B2H" + ], + "BaseLines": [ + "Solid chest strike yields a bruise.", + "\u002B2H" + ], + "RawCellText": "Solid chest strike yields a bruise.\n\u002B2H", + "DescriptionText": "Solid chest strike yields a bruise.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 218, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 872, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 840, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Light cutting strike. It has a little effect,", + "but you taste blood.", + "\u002B2H \u2013 \u222B" + ], + "BaseLines": [ + "Light cutting strike. It has a little effect,", + "but you taste blood.", + "\u002B2H \u2013 \u222B" + ], + "RawCellText": "Light cutting strike. It has a little effect,\nbut you taste blood.\n\u002B2H \u2013 \u222B", + "DescriptionText": "Light cutting strike. It has a little effect, but you taste blood.", + "RawAffixText": "\u002B2H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 218, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 872, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 840, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "Jolly deadly attack.", + "\u002B1H" + ], + "BaseLines": [ + "Jolly deadly attack.", + "\u002B1H" + ], + "RawCellText": "Jolly deadly attack.\n\u002B1H", + "DescriptionText": "Jolly deadly attack.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 263, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1052, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 1020, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "You get in close, but foe kicks you clear", + "before your strike turns deadly.", + "\u002B2H" + ], + "BaseLines": [ + "You get in close, but foe kicks you clear", + "before your strike turns deadly.", + "\u002B2H" + ], + "RawCellText": "You get in close, but foe kicks you clear\nbefore your strike turns deadly.\n\u002B2H", + "DescriptionText": "You get in close, but foe kicks you clear before your strike turns deadly.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 263, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1052, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 1020, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Strike catches foe in waist. His", + "equipment blocks some damage.", + "\u002B2H" + ], + "BaseLines": [ + "Strike catches foe in waist. His", + "equipment blocks some damage.", + "\u002B2H" + ], + "RawCellText": "Strike catches foe in waist. His\nequipment blocks some damage.\n\u002B2H", + "DescriptionText": "Strike catches foe in waist. His equipment blocks some damage.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 263, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1052, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 1020, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "The recoil from a missed strike lands", + "against foe\u0027s back. It is a mild scratch.", + "\u002B3H" + ], + "BaseLines": [ + "The recoil from a missed strike lands", + "against foe\u0027s back. It is a mild scratch.", + "\u002B3H" + ], + "RawCellText": "The recoil from a missed strike lands\nagainst foe\u0027s back. It is a mild scratch.\n\u002B3H", + "DescriptionText": "The recoil from a missed strike lands against foe\u0027s back. It is a mild scratch.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 263, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1052, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 1020, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Scratch foe in calf. It turns into a bleeder", + "and you are very pleased.", + "\u002B2H \u2013 \u222B" + ], + "BaseLines": [ + "Scratch foe in calf. It turns into a bleeder", + "and you are very pleased.", + "\u002B2H \u2013 \u222B" + ], + "RawCellText": "Scratch foe in calf. It turns into a bleeder\nand you are very pleased.\n\u002B2H \u2013 \u222B", + "DescriptionText": "Scratch foe in calf. It turns into a bleeder and you are very pleased.", + "RawAffixText": "\u002B2H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 263, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1052, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 1020, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Cruel blow for nature.", + "\u002B2H" + ], + "BaseLines": [ + "Cruel blow for nature.", + "\u002B2H" + ], + "RawCellText": "Cruel blow for nature.\n\u002B2H", + "DescriptionText": "Cruel blow for nature.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 307, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1228, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 1196, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "Attempt to disembowel falls short.", + "Foe guards his stomach well.", + "\u002B3H" + ], + "BaseLines": [ + "Attempt to disembowel falls short.", + "Foe guards his stomach well.", + "\u002B3H" + ], + "RawCellText": "Attempt to disembowel falls short.\nFoe guards his stomach well.\n\u002B3H", + "DescriptionText": "Attempt to disembowel falls short. Foe guards his stomach well.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 307, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1228, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 1196, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Light grip. Foe breaks free, damaging", + "himself. You are pleased.", + "\u002B2H \u2013 \u222B" + ], + "BaseLines": [ + "Light grip. Foe breaks free, damaging", + "himself. You are pleased.", + "\u002B2H \u2013 \u222B" + ], + "RawCellText": "Light grip. Foe breaks free, damaging\nhimself. You are pleased.\n\u002B2H \u2013 \u222B", + "DescriptionText": "Light grip. Foe breaks free, damaging himself. You are pleased.", + "RawAffixText": "\u002B2H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 307, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1228, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 1196, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s lower leg. If foe has", + "no leg armor, you cause him pain.", + "w/o leg greaves: \u002B5H \u2013 \u222B" + ], + "BaseLines": [ + "Strike to foe\u0027s lower leg. If foe has", + "no leg armor, you cause him pain." + ], + "RawCellText": "Strike to foe\u0027s lower leg. If foe has\nno leg armor, you cause him pain.", + "DescriptionText": "Strike to foe\u0027s lower leg. If foe has no leg armor, you cause him pain.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_greaves", + "ConditionText": "w/o leg greaves", + "RawText": "w/o leg greaves: \u002B5H \u2013 \u222B", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 307, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1228, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 1196, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Solid shot to leg. Foe watches you break", + "the skin on his thigh.", + "\u002B3H \u2013 \u222B" + ], + "BaseLines": [ + "Solid shot to leg. Foe watches you break", + "the skin on his thigh.", + "\u002B3H \u2013 \u222B" + ], + "RawCellText": "Solid shot to leg. Foe watches you break\nthe skin on his thigh.\n\u002B3H \u2013 \u222B", + "DescriptionText": "Solid shot to leg. Foe watches you break the skin on his thigh.", + "RawAffixText": "\u002B3H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 307, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1228, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 1196, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Poor follow through. You lose a", + "claw. Your attack is dubious.", + "\u002B4H \u2013 2(-5)" + ], + "BaseLines": [ + "Poor follow through. You lose a", + "claw. Your attack is dubious.", + "\u002B4H \u2013 2(-5)" + ], + "RawCellText": "Poor follow through. You lose a\nclaw. Your attack is dubious.\n\u002B4H \u2013 2(-5)", + "DescriptionText": "Poor follow through. You lose a claw. Your attack is dubious.", + "RawAffixText": "\u002B4H \u2013 2(-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 352, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1408, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 1376, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Slash to foe\u0027s side does no cut deep.", + "He turns to avoid the worst.", + "\u002B3H" + ], + "BaseLines": [ + "Slash to foe\u0027s side does no cut deep.", + "He turns to avoid the worst.", + "\u002B3H" + ], + "RawCellText": "Slash to foe\u0027s side does no cut deep.\nHe turns to avoid the worst.\n\u002B3H", + "DescriptionText": "Slash to foe\u0027s side does no cut deep. He turns to avoid the worst.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 352, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1408, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 1376, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Solid strike to side does not break the", + "skin. Foe turns to face you better.", + "\u002B4H" + ], + "BaseLines": [ + "Solid strike to side does not break the", + "skin. Foe turns to face you better.", + "\u002B4H" + ], + "RawCellText": "Solid strike to side does not break the\nskin. Foe turns to face you better.\n\u002B4H", + "DescriptionText": "Solid strike to side does not break the skin. Foe turns to face you better.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 352, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1408, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 1376, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Unexpected puncture in foe\u0027s side.", + "You are pleased. Foe grips his side.", + "\u002B3H \u2013 \u222B" + ], + "BaseLines": [ + "Unexpected puncture in foe\u0027s side.", + "You are pleased. Foe grips his side.", + "\u002B3H \u2013 \u222B" + ], + "RawCellText": "Unexpected puncture in foe\u0027s side.\nYou are pleased. Foe grips his side.\n\u002B3H \u2013 \u222B", + "DescriptionText": "Unexpected puncture in foe\u0027s side. You are pleased. Foe grips his side.", + "RawAffixText": "\u002B3H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 352, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1408, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 1376, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "You bring a powerful blow around", + "against foe\u0027s back. He leaps back away.", + "\u002B5H \u2013 \u03C0 \u2013 \u222B" + ], + "BaseLines": [ + "You bring a powerful blow around", + "against foe\u0027s back. He leaps back away.", + "\u002B5H \u2013 \u03C0 \u2013 \u222B" + ], + "RawCellText": "You bring a powerful blow around\nagainst foe\u0027s back. He leaps back away.\n\u002B5H \u2013 \u03C0 \u2013 \u222B", + "DescriptionText": "You bring a powerful blow around against foe\u0027s back. He leaps back away.", + "RawAffixText": "\u002B5H \u2013 \u03C0 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 352, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1408, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 1376, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Leaping chest strike yields some", + "measurable damage.", + "\u002B3H" + ], + "BaseLines": [ + "Leaping chest strike yields some", + "measurable damage.", + "\u002B3H" + ], + "RawCellText": "Leaping chest strike yields some\nmeasurable damage.\n\u002B3H", + "DescriptionText": "Leaping chest strike yields some measurable damage.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 395, + "Width": 123, + "Height": 39 + }, + "SourceImagePath": "tiny/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1580, + "BoundsWidth": 492, + "BoundsHeight": 156, + "CropLeft": 272, + "CropTop": 1548, + "CropWidth": 588, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Good little gash, produces an effective", + "wound.", + "\u002B3H \u2013 \u222B" + ], + "BaseLines": [ + "Good little gash, produces an effective", + "wound.", + "\u002B3H \u2013 \u222B" + ], + "RawCellText": "Good little gash, produces an effective\nwound.\n\u002B3H \u2013 \u222B", + "DescriptionText": "Good little gash, produces an effective wound.", + "RawAffixText": "\u002B3H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 395, + "Width": 141, + "Height": 39 + }, + "SourceImagePath": "tiny/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1580, + "BoundsWidth": 564, + "BoundsHeight": 156, + "CropLeft": 788, + "CropTop": 1548, + "CropWidth": 660, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Mild strike to chest catches in a soft", + "spot. You are surprised at its effect.", + "\u002B4H \u2013 2\u222B" + ], + "BaseLines": [ + "Mild strike to chest catches in a soft", + "spot. You are surprised at its effect.", + "\u002B4H \u2013 2\u222B" + ], + "RawCellText": "Mild strike to chest catches in a soft\nspot. You are surprised at its effect.\n\u002B4H \u2013 2\u222B", + "DescriptionText": "Mild strike to chest catches in a soft spot. You are surprised at its effect.", + "RawAffixText": "\u002B4H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 395, + "Width": 140, + "Height": 39 + }, + "SourceImagePath": "tiny/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1580, + "BoundsWidth": 560, + "BoundsHeight": 156, + "CropLeft": 1376, + "CropTop": 1548, + "CropWidth": 656, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Slash foe\u0027s stomach. If foe\u0027s has no", + "metal armor, you tear him open badly.", + "w/o abdomen armor: \u002B5H \u2013 3\u222B" + ], + "BaseLines": [ + "Slash foe\u0027s stomach. If foe\u0027s has no", + "metal armor, you tear him open badly." + ], + "RawCellText": "Slash foe\u0027s stomach. If foe\u0027s has no\nmetal armor, you tear him open badly.", + "DescriptionText": "Slash foe\u0027s stomach. If foe\u0027s has no metal armor, you tear him open badly.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "without_abdomen_armor", + "ConditionText": "w/o abdomen armor", + "RawText": "w/o abdomen armor: \u002B5H \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 1 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 395, + "Width": 139, + "Height": 39 + }, + "SourceImagePath": "tiny/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1580, + "BoundsWidth": 556, + "BoundsHeight": 156, + "CropLeft": 1964, + "CropTop": 1548, + "CropWidth": 652, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Grip to foe\u0027s shield arm garments. Foe is", + "unable to use his shield arm for 1 round.", + "\u002B6H \u2013 1\u222B" + ], + "BaseLines": [ + "Grip to foe\u0027s shield arm garments. Foe is", + "unable to use his shield arm for 1 round.", + "\u002B6H \u2013 1\u222B" + ], + "RawCellText": "Grip to foe\u0027s shield arm garments. Foe is\nunable to use his shield arm for 1 round.\n\u002B6H \u2013 1\u222B", + "DescriptionText": "Grip to foe\u0027s shield arm garments. Foe is unable to use his shield arm for 1 round.", + "RawAffixText": "\u002B6H \u2013 1\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "1\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 395, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "tiny/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1580, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2548, + "CropTop": 1548, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Light wound to thigh. Garments", + "are torn. Promises are made.", + "\u002B1H \u2013 \u222B" + ], + "BaseLines": [ + "Light wound to thigh. Garments", + "are torn. Promises are made.", + "\u002B1H \u2013 \u222B" + ], + "RawCellText": "Light wound to thigh. Garments\nare torn. Promises are made.\n\u002B1H \u2013 \u222B", + "DescriptionText": "Light wound to thigh. Garments are torn. Promises are made.", + "RawAffixText": "\u002B1H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 441, + "Width": 123, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1764, + "BoundsWidth": 492, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 1732, + "CropWidth": 588, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Scratch foe\u0027s skin, but you do not", + "break the skin.", + "\u002B6H" + ], + "BaseLines": [ + "Scratch foe\u0027s skin, but you do not", + "break the skin.", + "\u002B6H" + ], + "RawCellText": "Scratch foe\u0027s skin, but you do not\nbreak the skin.\n\u002B6H", + "DescriptionText": "Scratch foe\u0027s skin, but you do not break the skin.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 441, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1764, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 1732, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Your original strike misses, but foe\u0027s", + "thigh is available as a consolation.", + "\u002B4H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Your original strike misses, but foe\u0027s", + "thigh is available as a consolation.", + "\u002B4H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Your original strike misses, but foe\u0027s\nthigh is available as a consolation.\n\u002B4H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Your original strike misses, but foe\u0027s thigh is available as a consolation.", + "RawAffixText": "\u002B4H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 441, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1764, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 1732, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Your strike catches the back of foe\u0027s", + "thigh. Foe is unbalanced for a moment.", + "\u002B6H \u2013 \u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Your strike catches the back of foe\u0027s", + "thigh. Foe is unbalanced for a moment.", + "\u002B6H \u2013 \u2211 \u2013 2\u222B" + ], + "RawCellText": "Your strike catches the back of foe\u0027s\nthigh. Foe is unbalanced for a moment.\n\u002B6H \u2013 \u2211 \u2013 2\u222B", + "DescriptionText": "Your strike catches the back of foe\u0027s thigh. Foe is unbalanced for a moment.", + "RawAffixText": "\u002B6H \u2013 \u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 441, + "Width": 138, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1764, + "BoundsWidth": 552, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 1732, + "CropWidth": 648, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "You rip open foe\u0027s thigh. The look on his", + "face tells you victory is near.", + "\u002B7H \u2013 \u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "You rip open foe\u0027s thigh. The look on his", + "face tells you victory is near.", + "\u002B7H \u2013 \u2211 \u2013 3\u222B" + ], + "RawCellText": "You rip open foe\u0027s thigh. The look on his\nface tells you victory is near.\n\u002B7H \u2013 \u2211 \u2013 3\u222B", + "DescriptionText": "You rip open foe\u0027s thigh. The look on his face tells you victory is near.", + "RawAffixText": "\u002B7H \u2013 \u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 441, + "Width": 144, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1764, + "BoundsWidth": 576, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 1732, + "CropWidth": 672, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Mild forearm wound. You are doing", + "very well, keep it up.", + "\u002B2H \u2013 2\u222B" + ], + "BaseLines": [ + "Mild forearm wound. You are doing", + "very well, keep it up.", + "\u002B2H \u2013 2\u222B" + ], + "RawCellText": "Mild forearm wound. You are doing\nvery well, keep it up.\n\u002B2H \u2013 2\u222B", + "DescriptionText": "Mild forearm wound. You are doing very well, keep it up.", + "RawAffixText": "\u002B2H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 486, + "Width": 133, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 1944, + "BoundsWidth": 532, + "BoundsHeight": 192, + "CropLeft": 272, + "CropTop": 1912, + "CropWidth": 628, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Raking forearm strike leaves a nasty", + "scar. It bites deep enough to bleed.", + "\u002B3H \u2013 2\u222B" + ], + "BaseLines": [ + "Raking forearm strike leaves a nasty", + "scar. It bites deep enough to bleed.", + "\u002B3H \u2013 2\u222B" + ], + "RawCellText": "Raking forearm strike leaves a nasty\nscar. It bites deep enough to bleed.\n\u002B3H \u2013 2\u222B", + "DescriptionText": "Raking forearm strike leaves a nasty scar. It bites deep enough to bleed.", + "RawAffixText": "\u002B3H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 486, + "Width": 141, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 1944, + "BoundsWidth": 564, + "BoundsHeight": 192, + "CropLeft": 788, + "CropTop": 1912, + "CropWidth": 660, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Foe blocks you with his arm and you", + "tear it up as payment. The damage is", + "substantial, before foe breaks free.", + "\u002B3H \u2013 2\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Foe blocks you with his arm and you", + "tear it up as payment. The damage is", + "substantial, before foe breaks free.", + "\u002B3H \u2013 2\u03C0 \u2013 2\u222B" + ], + "RawCellText": "Foe blocks you with his arm and you\ntear it up as payment. The damage is\nsubstantial, before foe breaks free.\n\u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "DescriptionText": "Foe blocks you with his arm and you tear it up as payment. The damage is substantial, before foe breaks free.", + "RawAffixText": "\u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 486, + "Width": 138, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 1944, + "BoundsWidth": 552, + "BoundsHeight": 192, + "CropLeft": 1376, + "CropTop": 1912, + "CropWidth": 648, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "Grip to foe\u0027s forearm. Foe flails his arm", + "around trying to shake you off. You let", + "go and move to a better position.", + "\u002B5H \u2013 2\u03C0 \u2013 2\u222B \u2013 (\u002B10)" + ], + "BaseLines": [ + "Grip to foe\u0027s forearm. Foe flails his arm", + "around trying to shake you off. You let", + "go and move to a better position.", + "\u002B5H \u2013 2\u03C0 \u2013 2\u222B \u2013 (\u002B10)" + ], + "RawCellText": "Grip to foe\u0027s forearm. Foe flails his arm\naround trying to shake you off. You let\ngo and move to a better position.\n\u002B5H \u2013 2\u03C0 \u2013 2\u222B \u2013 (\u002B10)", + "DescriptionText": "Grip to foe\u0027s forearm. Foe flails his arm around trying to shake you off. You let go and move to a better position.", + "RawAffixText": "\u002B5H \u2013 2\u03C0 \u2013 2\u222B \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 486, + "Width": 138, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 1944, + "BoundsWidth": 552, + "BoundsHeight": 192, + "CropLeft": 1964, + "CropTop": 1912, + "CropWidth": 648, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Slash across foe\u0027s chest and upper arm.", + "Strike causes a bruise and then opens up", + "a gaping wound on foe\u0027s shield arm.", + "\u002B6H \u2013 2\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Slash across foe\u0027s chest and upper arm.", + "Strike causes a bruise and then opens up", + "a gaping wound on foe\u0027s shield arm.", + "\u002B6H \u2013 2\u2211 \u2013 3\u222B" + ], + "RawCellText": "Slash across foe\u0027s chest and upper arm.\nStrike causes a bruise and then opens up\na gaping wound on foe\u0027s shield arm.\n\u002B6H \u2013 2\u2211 \u2013 3\u222B", + "DescriptionText": "Slash across foe\u0027s chest and upper arm. Strike causes a bruise and then opens up a gaping wound on foe\u0027s shield arm.", + "RawAffixText": "\u002B6H \u2013 2\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 486, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 1944, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 2548, + "CropTop": 1912, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "You find a nice vulnerable spot", + "to rip open. Foe leaps back from", + "your cluches. He unbalances", + "himself to escape your assault.", + "\u002B4h \u2013 2\u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "You find a nice vulnerable spot", + "to rip open. Foe leaps back from", + "your cluches. He unbalances", + "himself to escape your assault.", + "\u002B4h \u2013 2\u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "You find a nice vulnerable spot\nto rip open. Foe leaps back from\nyour cluches. He unbalances\nhimself to escape your assault.\n\u002B4h \u2013 2\u2211\u220F \u2013 2\u222B", + "DescriptionText": "You find a nice vulnerable spot to rip open. Foe leaps back from your cluches. He unbalances himself to escape your assault.", + "RawAffixText": "\u002B4h \u2013 2\u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 539, + "Width": 123, + "Height": 79 + }, + "SourceImagePath": "tiny/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2156, + "BoundsWidth": 492, + "BoundsHeight": 316, + "CropLeft": 272, + "CropTop": 2124, + "CropWidth": 588, + "CropHeight": 380, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Your strike grips foe\u0027s calf. He pulls", + "away from you violently. His actions", + "further damage the wound. You do your", + "best, before he breaks free.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Your strike grips foe\u0027s calf. He pulls", + "away from you violently. His actions", + "further damage the wound. You do your", + "best, before he breaks free.", + "\u002B5H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "Your strike grips foe\u0027s calf. He pulls\naway from you violently. His actions\nfurther damage the wound. You do your\nbest, before he breaks free.\n\u002B5H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "Your strike grips foe\u0027s calf. He pulls away from you violently. His actions further damage the wound. You do your best, before he breaks free.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 539, + "Width": 141, + "Height": 79 + }, + "SourceImagePath": "tiny/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 2156, + "BoundsWidth": 564, + "BoundsHeight": 316, + "CropLeft": 788, + "CropTop": 2124, + "CropWidth": 660, + "CropHeight": 380, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Violent move assaults foe\u0027s arm, wrist", + "and shoulder. Foe is shaken by the", + "vicious strike. He drops his weapon and", + "leaps back 10 feet. You stay with your", + "quarry looking for an advantage.", + "\u002B4H \u2013 \u2211 \u2013 (\u002B10)" + ], + "BaseLines": [ + "Violent move assaults foe\u0027s arm, wrist", + "and shoulder. Foe is shaken by the", + "vicious strike. He drops his weapon and", + "leaps back 10 feet. You stay with your", + "quarry looking for an advantage.", + "\u002B4H \u2013 \u2211 \u2013 (\u002B10)" + ], + "RawCellText": "Violent move assaults foe\u0027s arm, wrist\nand shoulder. Foe is shaken by the\nvicious strike. He drops his weapon and\nleaps back 10 feet. You stay with your\nquarry looking for an advantage.\n\u002B4H \u2013 \u2211 \u2013 (\u002B10)", + "DescriptionText": "Violent move assaults foe\u0027s arm, wrist and shoulder. Foe is shaken by the vicious strike. He drops his weapon and leaps back 10 feet. You stay with your quarry looking for an advantage.", + "RawAffixText": "\u002B4H \u2013 \u2211 \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 539, + "Width": 139, + "Height": 79 + }, + "SourceImagePath": "tiny/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 2156, + "BoundsWidth": 556, + "BoundsHeight": 316, + "CropLeft": 1376, + "CropTop": 2124, + "CropWidth": 652, + "CropHeight": 380, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Astounding head strike. If foe has no", + "helm, you make a bloody mess of foe\u0027s", + "scalp. To further your advantage you", + "push foe\u0027s head sideways.", + "with helm: \u002B4H", + "w/o helm: \u002B7H \u2013 6\u220F" + ], + "BaseLines": [ + "Astounding head strike. If foe has no", + "helm, you make a bloody mess of foe\u0027s", + "scalp. To further your advantage you", + "push foe\u0027s head sideways." + ], + "RawCellText": "Astounding head strike. If foe has no\nhelm, you make a bloody mess of foe\u0027s\nscalp. To further your advantage you\npush foe\u0027s head sideways.", + "DescriptionText": "Astounding head strike. If foe has no helm, you make a bloody mess of foe\u0027s scalp. To further your advantage you push foe\u0027s head sideways.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helm", + "ConditionText": "with helm", + "RawText": "with helm: \u002B4H", + "DescriptionText": "", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helm", + "ConditionText": "w/o helm", + "RawText": "w/o helm: \u002B7H \u2013 6\u220F", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 6\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 539, + "Width": 139, + "Height": 79 + }, + "SourceImagePath": "tiny/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 2156, + "BoundsWidth": 556, + "BoundsHeight": 316, + "CropLeft": 1964, + "CropTop": 2124, + "CropWidth": 652, + "CropHeight": 380, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Bizarre strike to eyes destroys 1 eye and", + "leaves the other blind for 2 days. Foe is", + "down and helpless for an hour. He will", + "need assistance to even stand. His", + "appearance is modified by -20.", + "\u002B15H \u2013 24\u2211 \u2013 (-95)" + ], + "BaseLines": [ + "Bizarre strike to eyes destroys 1 eye and", + "leaves the other blind for 2 days. Foe is", + "down and helpless for an hour. He will", + "need assistance to even stand. His", + "appearance is modified by -20.", + "\u002B15H \u2013 24\u2211 \u2013 (-95)" + ], + "RawCellText": "Bizarre strike to eyes destroys 1 eye and\nleaves the other blind for 2 days. Foe is\ndown and helpless for an hour. He will\nneed assistance to even stand. His\nappearance is modified by -20.\n\u002B15H \u2013 24\u2211 \u2013 (-95)", + "DescriptionText": "Bizarre strike to eyes destroys 1 eye and leaves the other blind for 2 days. Foe is down and helpless for an hour. He will need assistance to even stand. His appearance is modified by -20.", + "RawAffixText": "\u002B15H \u2013 24\u2211 \u2013 (-95)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 24, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "24\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 539, + "Width": 144, + "Height": 79 + }, + "SourceImagePath": "tiny/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2156, + "BoundsWidth": 576, + "BoundsHeight": 316, + "CropLeft": 2548, + "CropTop": 2124, + "CropWidth": 672, + "CropHeight": 380, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Slash to foe\u0027s shoulder. It\u0027s not", + "deadly, but it is a start.", + "\u002B3H \u2013 \u03C0 \u2013\u222B" + ], + "BaseLines": [ + "Slash to foe\u0027s shoulder. It\u0027s not", + "deadly, but it is a start.", + "\u002B3H \u2013 \u03C0 \u2013\u222B" + ], + "RawCellText": "Slash to foe\u0027s shoulder. It\u0027s not\ndeadly, but it is a start.\n\u002B3H \u2013 \u03C0 \u2013\u222B", + "DescriptionText": "Slash to foe\u0027s shoulder. It\u0027s not deadly, but it is a start.", + "RawAffixText": "\u002B3H \u2013 \u03C0 \u2013\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 624, + "Width": 124, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2496, + "BoundsWidth": 496, + "BoundsHeight": 152, + "CropLeft": 272, + "CropTop": 2464, + "CropWidth": 592, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Claw scratches acrossed a piece of", + "metal. That screeching sound!", + "\u002B4H \u2013 \u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Claw scratches acrossed a piece of", + "metal. That screeching sound!", + "\u002B4H \u2013 \u2211 \u2013 \u222B" + ], + "RawCellText": "Claw scratches acrossed a piece of\nmetal. That screeching sound!\n\u002B4H \u2013 \u2211 \u2013 \u222B", + "DescriptionText": "Claw scratches acrossed a piece of metal. That screeching sound!", + "RawAffixText": "\u002B4H \u2013 \u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 624, + "Width": 141, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 2496, + "BoundsWidth": 564, + "BoundsHeight": 152, + "CropLeft": 788, + "CropTop": 2464, + "CropWidth": 660, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Pull foe off balance with a grasp to his", + "shoulder. He steps away and stumbles.", + "\u002B5H \u2013 \u2211 \u2013 2\u222B \u2013 1(-20)" + ], + "BaseLines": [ + "Pull foe off balance with a grasp to his", + "shoulder. He steps away and stumbles.", + "\u002B5H \u2013 \u2211 \u2013 2\u222B \u2013 1(-20)" + ], + "RawCellText": "Pull foe off balance with a grasp to his\nshoulder. He steps away and stumbles.\n\u002B5H \u2013 \u2211 \u2013 2\u222B \u2013 1(-20)", + "DescriptionText": "Pull foe off balance with a grasp to his shoulder. He steps away and stumbles.", + "RawAffixText": "\u002B5H \u2013 \u2211 \u2013 2\u222B \u2013 1(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 624, + "Width": 140, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 2496, + "BoundsWidth": 560, + "BoundsHeight": 152, + "CropLeft": 1376, + "CropTop": 2464, + "CropWidth": 656, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Graceful slash to foe\u0027s shoulder sweeps", + "blood onto foe\u0027s face. Foe is unsteady.", + "\u002B6H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Graceful slash to foe\u0027s shoulder sweeps", + "blood onto foe\u0027s face. Foe is unsteady.", + "\u002B6H \u2013 \u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "Graceful slash to foe\u0027s shoulder sweeps\nblood onto foe\u0027s face. Foe is unsteady.\n\u002B6H \u2013 \u2211\u220F \u2013 2\u222B", + "DescriptionText": "Graceful slash to foe\u0027s shoulder sweeps blood onto foe\u0027s face. Foe is unsteady.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 624, + "Width": 139, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 2496, + "BoundsWidth": 556, + "BoundsHeight": 152, + "CropLeft": 1964, + "CropTop": 2464, + "CropWidth": 652, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Inspired shoulder strike sends foe", + "reeling. You tear tendons and cause pain.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Inspired shoulder strike sends foe", + "reeling. You tear tendons and cause pain.", + "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Inspired shoulder strike sends foe\nreeling. You tear tendons and cause pain.\n\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "DescriptionText": "Inspired shoulder strike sends foe reeling. You tear tendons and cause pain.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 624, + "Width": 143, + "Height": 38 + }, + "SourceImagePath": "tiny/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2496, + "BoundsWidth": 572, + "BoundsHeight": 152, + "CropLeft": 2548, + "CropTop": 2464, + "CropWidth": 668, + "CropHeight": 216, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "You attempt to assault foe\u0027s lower", + "leg. You have the initiative.", + "with leg armor: \u002B4H", + "w/o leg armor: \u002B1H \u2013 2\u222B" + ], + "BaseLines": [ + "You attempt to assault foe\u0027s lower", + "leg. You have the initiative." + ], + "RawCellText": "You attempt to assault foe\u0027s lower\nleg. You have the initiative.", + "DescriptionText": "You attempt to assault foe\u0027s lower leg. You have the initiative.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B4H", + "DescriptionText": "", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B1H \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B1H \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 669, + "Width": 123, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2676, + "BoundsWidth": 492, + "BoundsHeight": 232, + "CropLeft": 272, + "CropTop": 2644, + "CropWidth": 588, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Assault foe\u0027s shin. If foe has no armor,", + "you tear his shin up. Foe struggles to", + "throw you off.", + "with leg armor: \u002B6H", + "w/o leg armor: \u002B3H \u2013 2\u03C0 \u2013 2\u222B" + ], + "BaseLines": [ + "Assault foe\u0027s shin. If foe has no armor,", + "you tear his shin up. Foe struggles to", + "throw you off." + ], + "RawCellText": "Assault foe\u0027s shin. If foe has no armor,\nyou tear his shin up. Foe struggles to\nthrow you off.", + "DescriptionText": "Assault foe\u0027s shin. If foe has no armor, you tear his shin up. Foe struggles to throw you off.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B6H", + "DescriptionText": "", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 2\u03C0 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u03C0" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 669, + "Width": 141, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 2676, + "BoundsWidth": 564, + "BoundsHeight": 232, + "CropLeft": 788, + "CropTop": 2644, + "CropWidth": 660, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "You slash into a muscle on foe\u0027s calf.", + "You have the initiative next round.", + "2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "You slash into a muscle on foe\u0027s calf.", + "You have the initiative next round.", + "2\u2211 \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "You slash into a muscle on foe\u0027s calf.\nYou have the initiative next round.\n2\u2211 \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "You slash into a muscle on foe\u0027s calf. You have the initiative next round.", + "RawAffixText": "2\u2211 \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 669, + "Width": 138, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 2676, + "BoundsWidth": 552, + "BoundsHeight": 232, + "CropLeft": 1376, + "CropTop": 2644, + "CropWidth": 648, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Lower leg strike. If foe has no leg armor,", + "heavy bruise. Foe stumbles back to", + "avoid you.", + "with leg armor: \u002B3H \u2013 \u2211", + "w/o leg armor: 2\u2211 \u2013 \u220F" + ], + "BaseLines": [ + "Lower leg strike. If foe has no leg armor,", + "heavy bruise. Foe stumbles back to", + "avoid you." + ], + "RawCellText": "Lower leg strike. If foe has no leg armor,\nheavy bruise. Foe stumbles back to\navoid you.", + "DescriptionText": "Lower leg strike. If foe has no leg armor, heavy bruise. Foe stumbles back to avoid you.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B3H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: 2\u2211 \u2013 \u220F", + "DescriptionText": "", + "RawAffixText": "2\u2211 \u2013 \u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 669, + "Width": 142, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 2676, + "BoundsWidth": 568, + "BoundsHeight": 232, + "CropLeft": 1964, + "CropTop": 2644, + "CropWidth": 664, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Vicious leg wound bleeds hard. Foe\u0027s", + "attempt to stop the bleeding gets it all", + "over his hands.", + "\u002B5H \u2013 3\u2211 \u2013 4\u222B" + ], + "BaseLines": [ + "Vicious leg wound bleeds hard. Foe\u0027s", + "attempt to stop the bleeding gets it all", + "over his hands.", + "\u002B5H \u2013 3\u2211 \u2013 4\u222B" + ], + "RawCellText": "Vicious leg wound bleeds hard. Foe\u0027s\nattempt to stop the bleeding gets it all\nover his hands.\n\u002B5H \u2013 3\u2211 \u2013 4\u222B", + "DescriptionText": "Vicious leg wound bleeds hard. Foe\u0027s attempt to stop the bleeding gets it all over his hands.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 4\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 4, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 669, + "Width": 144, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2676, + "BoundsWidth": 576, + "BoundsHeight": 232, + "CropLeft": 2548, + "CropTop": 2644, + "CropWidth": 672, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Weak, but precise strike to foe\u0027s", + "arm. Foe shakes you off, but you", + "do some damage anyway.", + "\u002B3H \u2013 \u2211 \u2013 \u222B" + ], + "BaseLines": [ + "Weak, but precise strike to foe\u0027s", + "arm. Foe shakes you off, but you", + "do some damage anyway.", + "\u002B3H \u2013 \u2211 \u2013 \u222B" + ], + "RawCellText": "Weak, but precise strike to foe\u0027s\narm. Foe shakes you off, but you\ndo some damage anyway.\n\u002B3H \u2013 \u2211 \u2013 \u222B", + "DescriptionText": "Weak, but precise strike to foe\u0027s arm. Foe shakes you off, but you do some damage anyway.", + "RawAffixText": "\u002B3H \u2013 \u2211 \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 733, + "Width": 124, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 2932, + "BoundsWidth": 496, + "BoundsHeight": 232, + "CropLeft": 272, + "CropTop": 2900, + "CropWidth": 592, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Strong, but imprecise arm strike. The", + "wound is of moderate size. You are", + "proud to have created it.", + "\u002B5H \u2013 2\u222B \u2013 (-15)" + ], + "BaseLines": [ + "Strong, but imprecise arm strike. The", + "wound is of moderate size. You are", + "proud to have created it.", + "\u002B5H \u2013 2\u222B \u2013 (-15)" + ], + "RawCellText": "Strong, but imprecise arm strike. The\nwound is of moderate size. You are\nproud to have created it.\n\u002B5H \u2013 2\u222B \u2013 (-15)", + "DescriptionText": "Strong, but imprecise arm strike. The wound is of moderate size. You are proud to have created it.", + "RawAffixText": "\u002B5H \u2013 2\u222B \u2013 (-15)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -15, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-15)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 733, + "Width": 141, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 2932, + "BoundsWidth": 564, + "BoundsHeight": 232, + "CropLeft": 788, + "CropTop": 2900, + "CropWidth": 660, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "You take a shot at foe\u0027s forearm. It lands", + "well. A muscle and tendon are slashed.", + "He holds on to his weapon.", + "\u002B5H \u2013 2\u2211 \u2013 2\u222B \u2013 (-25)" + ], + "BaseLines": [ + "You take a shot at foe\u0027s forearm. It lands", + "well. A muscle and tendon are slashed.", + "He holds on to his weapon.", + "\u002B5H \u2013 2\u2211 \u2013 2\u222B \u2013 (-25)" + ], + "RawCellText": "You take a shot at foe\u0027s forearm. It lands\nwell. A muscle and tendon are slashed.\nHe holds on to his weapon.\n\u002B5H \u2013 2\u2211 \u2013 2\u222B \u2013 (-25)", + "DescriptionText": "You take a shot at foe\u0027s forearm. It lands well. A muscle and tendon are slashed. He holds on to his weapon.", + "RawAffixText": "\u002B5H \u2013 2\u2211 \u2013 2\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 733, + "Width": 144, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 2932, + "BoundsWidth": 576, + "BoundsHeight": 232, + "CropLeft": 1376, + "CropTop": 2900, + "CropWidth": 672, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Grab foe\u0027s arm. Foe struggles violently", + "to make you let go. You rend his arm", + "without mercy. He gets free and", + "stumbles back. You win this round.", + "\u002B5H \u2013 3\u2211 \u2013 2\u222B \u2013 (-25)" + ], + "BaseLines": [ + "Grab foe\u0027s arm. Foe struggles violently", + "to make you let go. You rend his arm", + "without mercy. He gets free and", + "stumbles back. You win this round.", + "\u002B5H \u2013 3\u2211 \u2013 2\u222B \u2013 (-25)" + ], + "RawCellText": "Grab foe\u0027s arm. Foe struggles violently\nto make you let go. You rend his arm\nwithout mercy. He gets free and\nstumbles back. You win this round.\n\u002B5H \u2013 3\u2211 \u2013 2\u222B \u2013 (-25)", + "DescriptionText": "Grab foe\u0027s arm. Foe struggles violently to make you let go. You rend his arm without mercy. He gets free and stumbles back. You win this round.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 2\u222B \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 733, + "Width": 139, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 2932, + "BoundsWidth": 556, + "BoundsHeight": 232, + "CropLeft": 1964, + "CropTop": 2900, + "CropWidth": 652, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Sly arm strike gives foe a troublesome", + "wound. What looks like a tiny wound is", + "producing much blood. Foe does not fall", + "down, but he stumbles much.", + "2\u2211\u220F \u2013 3\u222B" + ], + "BaseLines": [ + "Sly arm strike gives foe a troublesome", + "wound. What looks like a tiny wound is", + "producing much blood. Foe does not fall", + "down, but he stumbles much.", + "2\u2211\u220F \u2013 3\u222B" + ], + "RawCellText": "Sly arm strike gives foe a troublesome\nwound. What looks like a tiny wound is\nproducing much blood. Foe does not fall\ndown, but he stumbles much.\n2\u2211\u220F \u2013 3\u222B", + "DescriptionText": "Sly arm strike gives foe a troublesome wound. What looks like a tiny wound is producing much blood. Foe does not fall down, but he stumbles much.", + "RawAffixText": "2\u2211\u220F \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 733, + "Width": 143, + "Height": 58 + }, + "SourceImagePath": "tiny/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 2932, + "BoundsWidth": 572, + "BoundsHeight": 232, + "CropLeft": 2548, + "CropTop": 2900, + "CropWidth": 668, + "CropHeight": 296, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Strike at foe\u0027s face. He panics and", + "stumbles back 5 feet. You fall clear", + "and prepare for another strike.", + "\u002B4H \u2013 \u2211 \u20132\u222B" + ], + "BaseLines": [ + "Strike at foe\u0027s face. He panics and", + "stumbles back 5 feet. You fall clear", + "and prepare for another strike.", + "\u002B4H \u2013 \u2211 \u20132\u222B" + ], + "RawCellText": "Strike at foe\u0027s face. He panics and\nstumbles back 5 feet. You fall clear\nand prepare for another strike.\n\u002B4H \u2013 \u2211 \u20132\u222B", + "DescriptionText": "Strike at foe\u0027s face. He panics and stumbles back 5 feet. You fall clear and prepare for another strike.", + "RawAffixText": "\u002B4H \u2013 \u2211 \u20132\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 798, + "Width": 123, + "Height": 57 + }, + "SourceImagePath": "tiny/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3192, + "BoundsWidth": 492, + "BoundsHeight": 228, + "CropLeft": 272, + "CropTop": 3160, + "CropWidth": 588, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Flying face strike.", + "with facial armor: \u002B3H \u2013 \u03C0", + "w/o facial armor: 3\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Flying face strike." + ], + "RawCellText": "Flying face strike.", + "DescriptionText": "Flying face strike.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_facial_armor", + "ConditionText": "with facial armor", + "RawText": "with facial armor: \u002B3H \u2013 \u03C0", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_facial_armor", + "ConditionText": "w/o facial armor", + "RawText": "w/o facial armor: 3\u2211 \u2013 3\u222B", + "DescriptionText": "", + "RawAffixText": "3\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 798, + "Width": 141, + "Height": 57 + }, + "SourceImagePath": "tiny/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 3192, + "BoundsWidth": 564, + "BoundsHeight": 228, + "CropLeft": 788, + "CropTop": 3160, + "CropWidth": 660, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Head strike. Foe\u0027s helm is knocked off. If", + "foe has no helm, he has a vicious cut", + "to his scalp.", + "with helmet: \u002B3H \u2013 \u2211", + "w/o helmet: \u002B2H \u2013 \u2211 \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Head strike. Foe\u0027s helm is knocked off. If", + "foe has no helm, he has a vicious cut", + "to his scalp." + ], + "RawCellText": "Head strike. Foe\u0027s helm is knocked off. If\nfoe has no helm, he has a vicious cut\nto his scalp.", + "DescriptionText": "Head strike. Foe\u0027s helm is knocked off. If foe has no helm, he has a vicious cut to his scalp.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_helmet", + "ConditionText": "with helmet", + "RawText": "with helmet: \u002B3H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B3H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_helmet", + "ConditionText": "w/o helmet", + "RawText": "w/o helmet: \u002B2H \u2013 \u2211 \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "", + "RawAffixText": "\u002B2H \u2013 \u2211 \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 798, + "Width": 142, + "Height": 57 + }, + "SourceImagePath": "tiny/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 3192, + "BoundsWidth": 568, + "BoundsHeight": 228, + "CropLeft": 1376, + "CropTop": 3160, + "CropWidth": 664, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Acrobatic face strike. If foe has no facial", + "armor he will get some, when his nose", + "heals.", + "with facial armor: \u002B5H", + "w/o facial armor: 3\u2211 \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Acrobatic face strike. If foe has no facial", + "armor he will get some, when his nose", + "heals." + ], + "RawCellText": "Acrobatic face strike. If foe has no facial\narmor he will get some, when his nose\nheals.", + "DescriptionText": "Acrobatic face strike. If foe has no facial armor he will get some, when his nose heals.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_facial_armor", + "ConditionText": "with facial armor", + "RawText": "with facial armor: \u002B5H", + "DescriptionText": "", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_facial_armor", + "ConditionText": "w/o facial armor", + "RawText": "w/o facial armor: 3\u2211 \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "", + "RawAffixText": "3\u2211 \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 798, + "Width": 139, + "Height": 57 + }, + "SourceImagePath": "tiny/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 3192, + "BoundsWidth": 556, + "BoundsHeight": 228, + "CropLeft": 1964, + "CropTop": 3160, + "CropWidth": 652, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Slash between foe\u0027s fingers. If foe has", + "a metal gauntlet on, he is fine.", + "\u002B8H \u2013 9\u2211 \u20133\u222B" + ], + "BaseLines": [ + "Slash between foe\u0027s fingers. If foe has", + "a metal gauntlet on, he is fine.", + "\u002B8H \u2013 9\u2211 \u20133\u222B" + ], + "RawCellText": "Slash between foe\u0027s fingers. If foe has\na metal gauntlet on, he is fine.\n\u002B8H \u2013 9\u2211 \u20133\u222B", + "DescriptionText": "Slash between foe\u0027s fingers. If foe has a metal gauntlet on, he is fine.", + "RawAffixText": "\u002B8H \u2013 9\u2211 \u20133\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 798, + "Width": 143, + "Height": 57 + }, + "SourceImagePath": "tiny/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3192, + "BoundsWidth": 572, + "BoundsHeight": 228, + "CropLeft": 2548, + "CropTop": 3160, + "CropWidth": 668, + "CropHeight": 292, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Sudden well placed blow makes you", + "feel you are mighty in battle.", + "Your foe is convinced.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "Sudden well placed blow makes you", + "feel you are mighty in battle.", + "Your foe is convinced.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "Sudden well placed blow makes you\nfeel you are mighty in battle.\nYour foe is convinced.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "Sudden well placed blow makes you feel you are mighty in battle. Your foe is convinced.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 862, + "Width": 126, + "Height": 59 + }, + "SourceImagePath": "tiny/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3448, + "BoundsWidth": 504, + "BoundsHeight": 236, + "CropLeft": 272, + "CropTop": 3416, + "CropWidth": 600, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "Slash foe\u0027s neck. He thinks you just", + "killed him. The wound is not mortal.", + "Foe stumbles away fearful of death.", + "\u002B5H \u2013 3\u2211 \u2013 2\u222B" + ], + "BaseLines": [ + "Slash foe\u0027s neck. He thinks you just", + "killed him. The wound is not mortal.", + "Foe stumbles away fearful of death.", + "\u002B5H \u2013 3\u2211 \u2013 2\u222B" + ], + "RawCellText": "Slash foe\u0027s neck. He thinks you just\nkilled him. The wound is not mortal.\nFoe stumbles away fearful of death.\n\u002B5H \u2013 3\u2211 \u2013 2\u222B", + "DescriptionText": "Slash foe\u0027s neck. He thinks you just killed him. The wound is not mortal. Foe stumbles away fearful of death.", + "RawAffixText": "\u002B5H \u2013 3\u2211 \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 862, + "Width": 142, + "Height": 59 + }, + "SourceImagePath": "tiny/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 3448, + "BoundsWidth": 568, + "BoundsHeight": 236, + "CropLeft": 788, + "CropTop": 3416, + "CropWidth": 664, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Shoulder strike unbalances foe and", + "spins him around. He is frantic to turn", + "around and face you. You move the", + "other direction to prolong the effect.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Shoulder strike unbalances foe and", + "spins him around. He is frantic to turn", + "around and face you. You move the", + "other direction to prolong the effect.", + "\u002B6H \u2013 2\u2211\u220F" + ], + "RawCellText": "Shoulder strike unbalances foe and\nspins him around. He is frantic to turn\naround and face you. You move the\nother direction to prolong the effect.\n\u002B6H \u2013 2\u2211\u220F", + "DescriptionText": "Shoulder strike unbalances foe and spins him around. He is frantic to turn around and face you. You move the other direction to prolong the effect.", + "RawAffixText": "\u002B6H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 862, + "Width": 139, + "Height": 59 + }, + "SourceImagePath": "tiny/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 3448, + "BoundsWidth": 556, + "BoundsHeight": 236, + "CropLeft": 1376, + "CropTop": 3416, + "CropWidth": 652, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Strong grip to foe\u0027s weapon arm. He", + "tries to throw you clear, but cannot.", + "He finally drops his weapon . You lose", + "your grip on him at the same time.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Strong grip to foe\u0027s weapon arm. He", + "tries to throw you clear, but cannot.", + "He finally drops his weapon . You lose", + "your grip on him at the same time.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Strong grip to foe\u0027s weapon arm. He\ntries to throw you clear, but cannot.\nHe finally drops his weapon . You lose\nyour grip on him at the same time.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Strong grip to foe\u0027s weapon arm. He tries to throw you clear, but cannot. He finally drops his weapon . You lose your grip on him at the same time.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 862, + "Width": 138, + "Height": 59 + }, + "SourceImagePath": "tiny/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 3448, + "BoundsWidth": 552, + "BoundsHeight": 236, + "CropLeft": 1964, + "CropTop": 3416, + "CropWidth": 648, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Rend open foe\u0027s lower back with a quick", + "double slash. Both wounds are deep and", + "nasty. Blood pours out all over you and", + "foe, making the combat seem brutal.", + "\u002B4H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Rend open foe\u0027s lower back with a quick", + "double slash. Both wounds are deep and", + "nasty. Blood pours out all over you and", + "foe, making the combat seem brutal.", + "\u002B4H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Rend open foe\u0027s lower back with a quick\ndouble slash. Both wounds are deep and\nnasty. Blood pours out all over you and\nfoe, making the combat seem brutal.\n\u002B4H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Rend open foe\u0027s lower back with a quick double slash. Both wounds are deep and nasty. Blood pours out all over you and foe, making the combat seem brutal.", + "RawAffixText": "\u002B4H \u2013 3\u2211 \u2013 \u220F \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 862, + "Width": 143, + "Height": 59 + }, + "SourceImagePath": "tiny/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3448, + "BoundsWidth": 572, + "BoundsHeight": 236, + "CropLeft": 2548, + "CropTop": 3416, + "CropWidth": 668, + "CropHeight": 300, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Leaping head stike. If foe has no", + "helm, face and left ear is slashed.", + "\u002B3H \u2013 2\u2211 \u2013 (-30)" + ], + "BaseLines": [ + "Leaping head stike. If foe has no", + "helm, face and left ear is slashed.", + "\u002B3H \u2013 2\u2211 \u2013 (-30)" + ], + "RawCellText": "Leaping head stike. If foe has no\nhelm, face and left ear is slashed.\n\u002B3H \u2013 2\u2211 \u2013 (-30)", + "DescriptionText": "Leaping head stike. If foe has no helm, face and left ear is slashed.", + "RawAffixText": "\u002B3H \u2013 2\u2211 \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 928, + "Width": 123, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3712, + "BoundsWidth": 492, + "BoundsHeight": 192, + "CropLeft": 272, + "CropTop": 3680, + "CropWidth": 588, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Foe blocks your attack with his arm", + "so you slash it in place of your original", + "target. Foe realizes his mistake.", + "\u002B5H \u2013 3\u2211\u220F \u2013 2\u222B" + ], + "BaseLines": [ + "Foe blocks your attack with his arm", + "so you slash it in place of your original", + "target. Foe realizes his mistake.", + "\u002B5H \u2013 3\u2211\u220F \u2013 2\u222B" + ], + "RawCellText": "Foe blocks your attack with his arm\nso you slash it in place of your original\ntarget. Foe realizes his mistake.\n\u002B5H \u2013 3\u2211\u220F \u2013 2\u222B", + "DescriptionText": "Foe blocks your attack with his arm so you slash it in place of your original target. Foe realizes his mistake.", + "RawAffixText": "\u002B5H \u2013 3\u2211\u220F \u2013 2\u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 928, + "Width": 141, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 3712, + "BoundsWidth": 564, + "BoundsHeight": 192, + "CropLeft": 788, + "CropTop": 3680, + "CropWidth": 660, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Strike lands near neck and cheek. Foe is", + "disoriented and recoils from your", + "onslaught.", + "\u002B3H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "BaseLines": [ + "Strike lands near neck and cheek. Foe is", + "disoriented and recoils from your", + "onslaught.", + "\u002B3H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)" + ], + "RawCellText": "Strike lands near neck and cheek. Foe is\ndisoriented and recoils from your\nonslaught.\n\u002B3H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "DescriptionText": "Strike lands near neck and cheek. Foe is disoriented and recoils from your onslaught.", + "RawAffixText": "\u002B3H \u2013 2\u2211\u220F \u2013 2\u222B \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 928, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 3712, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 1376, + "CropTop": 3680, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Clean strike, you cleave the thumb on", + "foe\u0027s weapon arm. His arm is less than", + "useful. Foe drops his weapon.", + "2\u2211\u220F \u2013 (-50)" + ], + "BaseLines": [ + "Clean strike, you cleave the thumb on", + "foe\u0027s weapon arm. His arm is less than", + "useful. Foe drops his weapon.", + "2\u2211\u220F \u2013 (-50)" + ], + "RawCellText": "Clean strike, you cleave the thumb on\nfoe\u0027s weapon arm. His arm is less than\nuseful. Foe drops his weapon.\n2\u2211\u220F \u2013 (-50)", + "DescriptionText": "Clean strike, you cleave the thumb on foe\u0027s weapon arm. His arm is less than useful. Foe drops his weapon.", + "RawAffixText": "2\u2211\u220F \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 928, + "Width": 139, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 3712, + "BoundsWidth": 556, + "BoundsHeight": 192, + "CropLeft": 1964, + "CropTop": 3680, + "CropWidth": 652, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Dazzling leap knocks foe down. Foe hits", + "on his back. Foe is disarmed and", + "unconscious.", + "\u002B9H" + ], + "BaseLines": [ + "Dazzling leap knocks foe down. Foe hits", + "on his back. Foe is disarmed and", + "unconscious.", + "\u002B9H" + ], + "RawCellText": "Dazzling leap knocks foe down. Foe hits\non his back. Foe is disarmed and\nunconscious.\n\u002B9H", + "DescriptionText": "Dazzling leap knocks foe down. Foe hits on his back. Foe is disarmed and unconscious.", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 928, + "Width": 144, + "Height": 48 + }, + "SourceImagePath": "tiny/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3712, + "BoundsWidth": 576, + "BoundsHeight": 192, + "CropLeft": 2548, + "CropTop": 3680, + "CropWidth": 672, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Insulting strike to foe\u0027s nose.", + "If foe has no nose guard, his nose", + "is shredded. Foe reels from your", + "onslaught.", + "9\u2211 \u2013 3\u222B" + ], + "BaseLines": [ + "Insulting strike to foe\u0027s nose.", + "If foe has no nose guard, his nose", + "is shredded. Foe reels from your", + "onslaught.", + "9\u2211 \u2013 3\u222B" + ], + "RawCellText": "Insulting strike to foe\u0027s nose.\nIf foe has no nose guard, his nose\nis shredded. Foe reels from your\nonslaught.\n9\u2211 \u2013 3\u222B", + "DescriptionText": "Insulting strike to foe\u0027s nose. If foe has no nose guard, his nose is shredded. Foe reels from your onslaught.", + "RawAffixText": "9\u2211 \u2013 3\u222B", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 982, + "Width": 123, + "Height": 68 + }, + "SourceImagePath": "tiny/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 3928, + "BoundsWidth": 492, + "BoundsHeight": 272, + "CropLeft": 272, + "CropTop": 3896, + "CropWidth": 588, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Strike to foe\u0027s forehead. Foe is", + "blinded, until the bleeding is stopped.", + "Foe is off guard trying to stop the", + "bleeding. Now is your chance.", + "3\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "BaseLines": [ + "Strike to foe\u0027s forehead. Foe is", + "blinded, until the bleeding is stopped.", + "Foe is off guard trying to stop the", + "bleeding. Now is your chance.", + "3\u2211\u220F \u2013 3\u222B \u2013 (-40)" + ], + "RawCellText": "Strike to foe\u0027s forehead. Foe is\nblinded, until the bleeding is stopped.\nFoe is off guard trying to stop the\nbleeding. Now is your chance.\n3\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "DescriptionText": "Strike to foe\u0027s forehead. Foe is blinded, until the bleeding is stopped. Foe is off guard trying to stop the bleeding. Now is your chance.", + "RawAffixText": "3\u2211\u220F \u2013 3\u222B \u2013 (-40)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 982, + "Width": 140, + "Height": 68 + }, + "SourceImagePath": "tiny/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 3928, + "BoundsWidth": 560, + "BoundsHeight": 272, + "CropLeft": 788, + "CropTop": 3896, + "CropWidth": 656, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Epic slash to foe\u0027s Achilles tendon. Foe", + "falls down. He is almost helpless. His", + "attempts to crawl away fail. You have", + "him now.", + "\u002B5H \u2013 6\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Epic slash to foe\u0027s Achilles tendon. Foe", + "falls down. He is almost helpless. His", + "attempts to crawl away fail. You have", + "him now.", + "\u002B5H \u2013 6\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Epic slash to foe\u0027s Achilles tendon. Foe\nfalls down. He is almost helpless. His\nattempts to crawl away fail. You have\nhim now.\n\u002B5H \u2013 6\u2211\u220F \u2013 (-75)", + "DescriptionText": "Epic slash to foe\u0027s Achilles tendon. Foe falls down. He is almost helpless. His attempts to crawl away fail. You have him now.", + "RawAffixText": "\u002B5H \u2013 6\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 982, + "Width": 139, + "Height": 68 + }, + "SourceImagePath": "tiny/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 3928, + "BoundsWidth": 556, + "BoundsHeight": 272, + "CropLeft": 1376, + "CropTop": 3896, + "CropWidth": 652, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Strike foe in face. If foe has a visored", + "helm, he is blinded and helpless for a", + "week while the swelling lasts. If foe does", + "not have a visored helm, he loses 1 eye", + "and is blind in the other.", + "(-100)" + ], + "BaseLines": [ + "Strike foe in face. If foe has a visored", + "helm, he is blinded and helpless for a", + "week while the swelling lasts. If foe does", + "not have a visored helm, he loses 1 eye", + "and is blind in the other.", + "(-100)" + ], + "RawCellText": "Strike foe in face. If foe has a visored\nhelm, he is blinded and helpless for a\nweek while the swelling lasts. If foe does\nnot have a visored helm, he loses 1 eye\nand is blind in the other.\n(-100)", + "DescriptionText": "Strike foe in face. If foe has a visored helm, he is blinded and helpless for a week while the swelling lasts. If foe does not have a visored helm, he loses 1 eye and is blind in the other.", + "RawAffixText": "(-100)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -100, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-100)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 982, + "Width": 142, + "Height": 68 + }, + "SourceImagePath": "tiny/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 3928, + "BoundsWidth": 568, + "BoundsHeight": 272, + "CropLeft": 1964, + "CropTop": 3896, + "CropWidth": 664, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Head strike is deadly. Slash open foe\u0027s", + "head and send him down. He hits hard.", + "The shock of your strike and the", + "concussion of the fall is too much for him", + "to handle. He dies in 9 rounds.", + "\u2014" + ], + "BaseLines": [ + "Head strike is deadly. Slash open foe\u0027s", + "head and send him down. He hits hard.", + "The shock of your strike and the", + "concussion of the fall is too much for him", + "to handle. He dies in 9 rounds.", + "\u2014" + ], + "RawCellText": "Head strike is deadly. Slash open foe\u0027s\nhead and send him down. He hits hard.\nThe shock of your strike and the\nconcussion of the fall is too much for him\nto handle. He dies in 9 rounds.\n\u2014", + "DescriptionText": "Head strike is deadly. Slash open foe\u0027s head and send him down. He hits hard. The shock of your strike and the concussion of the fall is too much for him to handle. He dies in 9 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 982, + "Width": 145, + "Height": 68 + }, + "SourceImagePath": "tiny/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 3928, + "BoundsWidth": 580, + "BoundsHeight": 272, + "CropLeft": 2548, + "CropTop": 3896, + "CropWidth": 676, + "CropHeight": 336, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Strike at foe\u0027s eyes. Without a", + "visored helm, foe loses one of his", + "eyes.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (-75)" + ], + "BaseLines": [ + "Strike at foe\u0027s eyes. Without a", + "visored helm, foe loses one of his", + "eyes.", + "\u002B15H \u2013 3\u2211\u220F \u2013 (-75)" + ], + "RawCellText": "Strike at foe\u0027s eyes. Without a\nvisored helm, foe loses one of his\neyes.\n\u002B15H \u2013 3\u2211\u220F \u2013 (-75)", + "DescriptionText": "Strike at foe\u0027s eyes. Without a visored helm, foe loses one of his eyes.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F \u2013 (-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 80, + "Top": 1057, + "Width": 123, + "Height": 66 + }, + "SourceImagePath": "tiny/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 320, + "BoundsTop": 4228, + "BoundsWidth": 492, + "BoundsHeight": 264, + "CropLeft": 272, + "CropTop": 4196, + "CropWidth": 588, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Foe leaps back to avoid a slash to the", + "throat, too late. He falls down. You", + "expose some muscle and make a mess.", + "6\u2211\u220F \u2013 3\u222B \u2013 (-50)" + ], + "BaseLines": [ + "Foe leaps back to avoid a slash to the", + "throat, too late. He falls down. You", + "expose some muscle and make a mess.", + "6\u2211\u220F \u2013 3\u222B \u2013 (-50)" + ], + "RawCellText": "Foe leaps back to avoid a slash to the\nthroat, too late. He falls down. You\nexpose some muscle and make a mess.\n6\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "DescriptionText": "Foe leaps back to avoid a slash to the throat, too late. He falls down. You expose some muscle and make a mess.", + "RawAffixText": "6\u2211\u220F \u2013 3\u222B \u2013 (-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 3, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 209, + "Top": 1057, + "Width": 140, + "Height": 66 + }, + "SourceImagePath": "tiny/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 836, + "BoundsTop": 4228, + "BoundsWidth": 560, + "BoundsHeight": 264, + "CropLeft": 788, + "CropTop": 4196, + "CropWidth": 656, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Severe head strike. If foe has a helm he", + "is unconscious for 1-10 days. Without a", + "helm, foe is dead.", + "\u002B25H \u2013 \u222B" + ], + "BaseLines": [ + "Severe head strike. If foe has a helm he", + "is unconscious for 1-10 days. Without a", + "helm, foe is dead.", + "\u002B25H \u2013 \u222B" + ], + "RawCellText": "Severe head strike. If foe has a helm he\nis unconscious for 1-10 days. Without a\nhelm, foe is dead.\n\u002B25H \u2013 \u222B", + "DescriptionText": "Severe head strike. If foe has a helm he is unconscious for 1-10 days. Without a helm, foe is dead.", + "RawAffixText": "\u002B25H \u2013 \u222B", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 25, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B25H" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 1, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 356, + "Top": 1057, + "Width": 140, + "Height": 66 + }, + "SourceImagePath": "tiny/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1424, + "BoundsTop": 4228, + "BoundsWidth": 560, + "BoundsHeight": 264, + "CropLeft": 1376, + "CropTop": 4196, + "CropWidth": 656, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Strike to foe\u0027s eyes. Foe is blinded", + "permanently. Foe is at your mercy.", + "\u002B10H \u2013 6\u2211\u220F \u2013 2\u222B \u2013 (-95)" + ], + "BaseLines": [ + "Strike to foe\u0027s eyes. Foe is blinded", + "permanently. Foe is at your mercy.", + "\u002B10H \u2013 6\u2211\u220F \u2013 2\u222B \u2013 (-95)" + ], + "RawCellText": "Strike to foe\u0027s eyes. Foe is blinded\npermanently. Foe is at your mercy.\n\u002B10H \u2013 6\u2211\u220F \u2013 2\u222B \u2013 (-95)", + "DescriptionText": "Strike to foe\u0027s eyes. Foe is blinded permanently. Foe is at your mercy.", + "RawAffixText": "\u002B10H \u2013 6\u2211\u220F \u2013 2\u222B \u2013 (-95)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 2, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u222B" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -95, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-95)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 503, + "Top": 1057, + "Width": 139, + "Height": 66 + }, + "SourceImagePath": "tiny/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2012, + "BoundsTop": 4228, + "BoundsWidth": 556, + "BoundsHeight": 264, + "CropLeft": 1964, + "CropTop": 4196, + "CropWidth": 652, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Unbelievable strike to foe\u0027s neck. Vein and", + "artery severed. Foe dies after 6 rounds of", + "inactivity.", + "20\u222B" + ], + "BaseLines": [ + "Unbelievable strike to foe\u0027s neck. Vein and", + "artery severed. Foe dies after 6 rounds of", + "inactivity.", + "20\u222B" + ], + "RawCellText": "Unbelievable strike to foe\u0027s neck. Vein and\nartery severed. Foe dies after 6 rounds of\ninactivity.\n20\u222B", + "DescriptionText": "Unbelievable strike to foe\u0027s neck. Vein and artery severed. Foe dies after 6 rounds of inactivity.", + "RawAffixText": "20\u222B", + "Effects": [ + { + "EffectCode": "bleed_per_round", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": 20, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "20\u222B" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 649, + "Top": 1057, + "Width": 147, + "Height": 66 + }, + "SourceImagePath": "tiny/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2596, + "BoundsTop": 4228, + "BoundsWidth": 588, + "BoundsHeight": 264, + "CropLeft": 2548, + "CropTop": 4196, + "CropWidth": 684, + "CropHeight": 328, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/source.xml b/src/RolemasterDb.App/import-artifacts/critical/tiny/source.xml new file mode 100644 index 0000000..c8202fb --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/tiny/source.xml @@ -0,0 +1,389 @@ + + + + + + + + + + + + + +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +104 +01-05 +Dubious strike. +You throw up some dust. +You're not very good, are you? +Get it right next time! +You did very poorly. ++0H ++0H ++0H ++0H ++1H +06-10 +Zip. Less than effective. +You leap. Foe moves. You land. It had +good form. +Look over there! Baby eagles! +Your slash tears off a piece of fur or +cloth. +Strike is not solid or well placed. ++0H ++0H ++0H ++1H ++2H +11-15 +Feeble. +You almost got a real grip. +You really tear up foe's garments. Try +his skin next time. +Slash to neck, pulls off any necklaces +foe is wearing. +Entangle your claws in foe's clothes. +You struggle to pull free. ++0H ++0H ++1H ++1H ++2H +16-20 +Victory to the oppressed! +Your lunge for foe's throat was blocked +by his arm. +Glance off foe and grip the air. He steps +out of your strike. +Solid chest strike yields a bruise. +Light cutting strike. It has a little effect, +but you taste blood. ++1H ++1H ++1H ++2H ++2H – ∫ +21-35 +Jolly deadly attack. +You get in close, but foe kicks you clear +before your strike turns deadly. +Strike catches foe in waist. His +equipment blocks some damage. +The recoil from a missed strike lands +against foe's back. It is a mild scratch. +Scratch foe in calf. It turns into a bleeder +and you are very pleased. ++1H ++2H ++2H ++3H + +2H – ∫ +36-45 +Cruel blow for nature. +Attempt to disembowel falls short. +Foe guards his stomach well. +Light grip. Foe breaks free, damaging +himself. You are pleased. +Strike to foe's lower leg. If foe has +no leg armor, you cause him pain. +Solid shot to leg. Foe watches you break +the skin on his thigh. ++2H ++3H ++2H – ∫ +w/o leg greaves: +5H – ∫ ++3H – ∫ +46-50 +Poor follow through. You lose a +claw. Your attack is dubious. +Slash to foe's side does no cut deep. +He turns to avoid the worst. +Solid strike to side does not break the +skin. Foe turns to face you better. +Unexpected puncture in foe's side. +You are pleased. Foe grips his side. +You bring a powerful blow around +against foe's back. He leaps back away. ++4H – 2(-5) ++3H ++4H ++3H – ∫ ++5H – π – ∫ +51-55 +Leaping chest strike yields some +measurable damage. +Good little gash, produces an effective +wound. +Mild strike to chest catches in a soft +spot. You are surprised at its effect. +Slash foe's stomach. If foe's has no +metal armor, you tear him open badly. +Grip to foe's shield arm garments. Foe is +unable to use his shield arm for 1 round. ++3H ++3H – ∫ ++4H – 2∫ +w/o abdomen armor: +5H – 3∫ ++6H – 1∫ +56-60 +Light wound to thigh. Garments +are torn. Promises are made. +Scratch foe's skin, but you do not +break the skin. +Your original strike misses, but foe's +thigh is available as a consolation. +Your strike catches the back of foe's +thigh. Foe is unbalanced for a moment. +You rip open foe's thigh. The look on his +face tells you victory is near. ++1H – ∫ ++6H ++4H – ∑ – 2∫ ++6H – ∑ – 2∫ ++7H – ∑ – 3∫ +61-65 +Mild forearm wound. You are doing +very well, keep it up. +Raking forearm strike leaves a nasty +scar. It bites deep enough to bleed. +Foe blocks you with his arm and you +tear it up as payment. The damage is +substantial, before foe breaks free. +Grip to foe's forearm. Foe flails his arm +around trying to shake you off. You let +go and move to a better position. +Slash across foe's chest and upper arm. +Strike causes a bruise and then opens up +a gaping wound on foe's shield arm. ++2H – 2∫ ++3H – 2∫ ++3H – 2π – 2∫ ++5H – 2π – 2∫ – (+10) ++6H – 2∑ – 3∫ +66 +You find a nice vulnerable spot +to rip open. Foe leaps back from +your cluches. He unbalances +himself to escape your assault. +Your strike grips foe's calf. He pulls +away from you violently. His actions +further damage the wound. You do your +best, before he breaks free. +Violent move assaults foe's arm, wrist +and shoulder. Foe is shaken by the +vicious strike. He drops his weapon and +leaps back 10 feet. You stay with your +quarry looking for an advantage. +Astounding head strike. If foe has no +helm, you make a bloody mess of foe's +scalp. To further your advantage you +push foe's head sideways. +Bizarre strike to eyes destroys 1 eye and +leaves the other blind for 2 days. Foe is +down and helpless for an hour. He will +need assistance to even stand. His +appearance is modified by -20. ++4h – 2∑∏ – 2∫ ++5H – 2∑ – (-20) ++4H – ∑ – (+10) +with helm: +4H +w/o helm: +7H – 6∏ ++15H – 24∑ – (-95) +67-70 +Slash to foe's shoulder. It's not +deadly, but it is a start. +Claw scratches acrossed a piece of +metal. That screeching sound! +Pull foe off balance with a grasp to his +shoulder. He steps away and stumbles. +Graceful slash to foe's shoulder sweeps +blood onto foe's face. Foe is unsteady. +Inspired shoulder strike sends foe +reeling. You tear tendons and cause pain. ++3H – π –∫ ++4H – ∑ – ∫ ++5H – ∑ – 2∫ – 1(-20) ++6H – ∑∏ – 2∫ ++7H – 2∑∏ – (-20) +71-75 +You attempt to assault foe's lower +leg. You have the initiative. +Assault foe's shin. If foe has no armor, +you tear his shin up. Foe struggles to +throw you off. +You slash into a muscle on foe's calf. +You have the initiative next round. +Lower leg strike. If foe has no leg armor, +heavy bruise. Foe stumbles back to +avoid you. +Vicious leg wound bleeds hard. Foe's +attempt to stop the bleeding gets it all +over his hands. +with leg armor: +4H +w/o leg armor: +1H – 2∫ +with leg armor: +6H +w/o leg armor: +3H – 2π – 2∫ +2∑ – 2∫ – (-20) +with leg armor: +3H – ∑ +w/o leg armor: 2∑ – ∏ ++5H – 3∑ – 4∫ +76-80 +Weak, but precise strike to foe's +arm. Foe shakes you off, but you +do some damage anyway. +Strong, but imprecise arm strike. The +wound is of moderate size. You are +proud to have created it. +You take a shot at foe's forearm. It lands +well. A muscle and tendon are slashed. +He holds on to his weapon. +Grab foe's arm. Foe struggles violently +to make you let go. You rend his arm +without mercy. He gets free and +stumbles back. You win this round. +Sly arm strike gives foe a troublesome +wound. What looks like a tiny wound is +producing much blood. Foe does not fall +down, but he stumbles much. ++3H – ∑ – ∫ ++5H – 2∫ – (-15) ++5H – 2∑ – 2∫ – (-25) ++5H – 3∑ – 2∫ – (-25) +2∑∏ – 3∫ +81-85 +Strike at foe's face. He panics and +stumbles back 5 feet. You fall clear +and prepare for another strike. +Flying face strike. +Head strike. Foe's helm is knocked off. If +foe has no helm, he has a vicious cut +to his scalp. +Acrobatic face strike. If foe has no facial +armor he will get some, when his nose +heals. +Slash between foe's fingers. If foe has +a metal gauntlet on, he is fine. ++4H – ∑ –2∫ +with facial armor: +3H – π +w/o facial armor: 3∑ – 3∫ +with helmet: +3H – ∑ +w/o helmet: +2H – ∑ – 3∫ – (-40) +with facial armor: +5H +w/o facial armor: 3∑ – 3∫ – (-40) ++8H – 9∑ –3∫ +86-90 +Sudden well placed blow makes you +feel you are mighty in battle. +Your foe is convinced. +Slash foe's neck. He thinks you just +killed him. The wound is not mortal. +Foe stumbles away fearful of death. +Shoulder strike unbalances foe and +spins him around. He is frantic to turn +around and face you. You move the +other direction to prolong the effect. +Strong grip to foe's weapon arm. He +tries to throw you clear, but cannot. +He finally drops his weapon . You lose +your grip on him at the same time. +Rend open foe's lower back with a quick +double slash. Both wounds are deep and +nasty. Blood pours out all over you and +foe, making the combat seem brutal. ++6H – 2∑ ++5H – 3∑ – 2∫ ++6H – 2∑∏ ++5H – ∑ ++4H – 3∑ – ∏ – 3∫ – (-40) +91-95 +Leaping head stike. If foe has no +helm, face and left ear is slashed. +Foe blocks your attack with his arm +so you slash it in place of your original +target. Foe realizes his mistake. +Strike lands near neck and cheek. Foe is +disoriented and recoils from your +onslaught. +Clean strike, you cleave the thumb on +foe's weapon arm. His arm is less than +useful. Foe drops his weapon. +Dazzling leap knocks foe down. Foe hits +on his back. Foe is disarmed and +unconscious. ++3H – 2∑ – (-30) ++5H – 3∑∏ – 2∫ ++3H – 2∑∏ – 2∫ – (-20) +2∑∏ – (-50) ++9H +96-99 +Insulting strike to foe's nose. +If foe has no nose guard, his nose +is shredded. Foe reels from your +onslaught. +Strike to foe's forehead. Foe is +blinded, until the bleeding is stopped. +Foe is off guard trying to stop the +bleeding. Now is your chance. +Epic slash to foe's Achilles tendon. Foe +falls down. He is almost helpless. His +attempts to crawl away fail. You have +him now. +Strike foe in face. If foe has a visored +helm, he is blinded and helpless for a +week while the swelling lasts. If foe does +not have a visored helm, he loses 1 eye +and is blind in the other. +Head strike is deadly. Slash open foe's +head and send him down. He hits hard. +The shock of your strike and the +concussion of the fall is too much for him +to handle. He dies in 9 rounds. +9∑ – 3∫ +3∑∏ – 3∫ – (-40) ++5H – 6∑∏ – (-75) +(-100) + +100 +Strike at foe's eyes. Without a +visored helm, foe loses one of his +eyes. +Foe leaps back to avoid a slash to the +throat, too late. He falls down. You +expose some muscle and make a mess. +Severe head strike. If foe has a helm he +is unconscious for 1-10 days. Without a +helm, foe is dead. +Strike to foe's eyes. Foe is blinded +permanently. Foe is at your mercy. +Unbelievable strike to foe's neck. Vein and +artery severed. Foe dies after 6 rounds of +inactivity. ++15H – 3∑∏ – (-75) +6∑∏ – 3∫ – (-50) ++25H – ∫ ++10H – 6∑∏ – 2∫ – (-95) +20∫ +4.11 tiny critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/tiny/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/tiny/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/tiny/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__01-05.png new file mode 100644 index 0000000..a9300aa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__06-10.png new file mode 100644 index 0000000..92ac44f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__100.png new file mode 100644 index 0000000..2cc3c8a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__11-15.png new file mode 100644 index 0000000..1f4a33a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__16-20.png new file mode 100644 index 0000000..0f46065 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__21-35.png new file mode 100644 index 0000000..cb8235c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__36-45.png new file mode 100644 index 0000000..bdd3275 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__46-50.png new file mode 100644 index 0000000..7544eb7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__51-55.png new file mode 100644 index 0000000..f39a5be Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__56-60.png new file mode 100644 index 0000000..b87d176 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__61-65.png new file mode 100644 index 0000000..27d02d9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__66.png new file mode 100644 index 0000000..5fd6f56 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__67-70.png new file mode 100644 index 0000000..e8b66da Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__71-75.png new file mode 100644 index 0000000..90ecfb2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__76-80.png new file mode 100644 index 0000000..82bba67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__81-85.png new file mode 100644 index 0000000..d160753 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__86-90.png new file mode 100644 index 0000000..14c680b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__91-95.png new file mode 100644 index 0000000..d662a9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__96-99.png new file mode 100644 index 0000000..95f3b62 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__01-05.png new file mode 100644 index 0000000..2210c38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__06-10.png new file mode 100644 index 0000000..8090f7a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__100.png new file mode 100644 index 0000000..82e322a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__11-15.png new file mode 100644 index 0000000..1d7acbe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__16-20.png new file mode 100644 index 0000000..790655d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__21-35.png new file mode 100644 index 0000000..b2139c5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__36-45.png new file mode 100644 index 0000000..d0d60d5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__46-50.png new file mode 100644 index 0000000..bc247af Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__51-55.png new file mode 100644 index 0000000..6c59f44 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__56-60.png new file mode 100644 index 0000000..33d3a67 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__61-65.png new file mode 100644 index 0000000..fa0e391 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__66.png new file mode 100644 index 0000000..68d0bcd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__67-70.png new file mode 100644 index 0000000..31ec794 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__71-75.png new file mode 100644 index 0000000..3bcef9c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__76-80.png new file mode 100644 index 0000000..2149781 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__81-85.png new file mode 100644 index 0000000..e355a38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__86-90.png new file mode 100644 index 0000000..6e83c5e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__91-95.png new file mode 100644 index 0000000..7d7f6a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__96-99.png new file mode 100644 index 0000000..72992df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__01-05.png new file mode 100644 index 0000000..380d46f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__06-10.png new file mode 100644 index 0000000..b79577c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__100.png new file mode 100644 index 0000000..0391bf7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__11-15.png new file mode 100644 index 0000000..53e0bae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__16-20.png new file mode 100644 index 0000000..6e6de38 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__21-35.png new file mode 100644 index 0000000..453c49c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__36-45.png new file mode 100644 index 0000000..5e05cc1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__46-50.png new file mode 100644 index 0000000..8e7dad0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__51-55.png new file mode 100644 index 0000000..b63d823 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__56-60.png new file mode 100644 index 0000000..ebbb1e6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__61-65.png new file mode 100644 index 0000000..f78c0fe Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__66.png new file mode 100644 index 0000000..639040f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__67-70.png new file mode 100644 index 0000000..a1103df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__71-75.png new file mode 100644 index 0000000..6d6ebe4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__76-80.png new file mode 100644 index 0000000..2e7962a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__81-85.png new file mode 100644 index 0000000..db13d66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__86-90.png new file mode 100644 index 0000000..8ab1364 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__91-95.png new file mode 100644 index 0000000..82dbf87 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__96-99.png new file mode 100644 index 0000000..7cc140b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__01-05.png new file mode 100644 index 0000000..c5828d2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__06-10.png new file mode 100644 index 0000000..ba748c2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__100.png new file mode 100644 index 0000000..9e8bdec Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__11-15.png new file mode 100644 index 0000000..3caed0a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__16-20.png new file mode 100644 index 0000000..007b09a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__21-35.png new file mode 100644 index 0000000..d02aa2c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__36-45.png new file mode 100644 index 0000000..4a4013d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__46-50.png new file mode 100644 index 0000000..b3d8000 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__51-55.png new file mode 100644 index 0000000..c087aac Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__56-60.png new file mode 100644 index 0000000..464ae65 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__61-65.png new file mode 100644 index 0000000..df3b588 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__66.png new file mode 100644 index 0000000..225964a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__67-70.png new file mode 100644 index 0000000..bc9940d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__71-75.png new file mode 100644 index 0000000..9072a7b Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__76-80.png new file mode 100644 index 0000000..0d629ae Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__81-85.png new file mode 100644 index 0000000..af55a8e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__86-90.png new file mode 100644 index 0000000..996d934 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__91-95.png new file mode 100644 index 0000000..925a68d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__96-99.png new file mode 100644 index 0000000..1139c6c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__01-05.png new file mode 100644 index 0000000..5a5d3a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__06-10.png new file mode 100644 index 0000000..a236c2f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__100.png new file mode 100644 index 0000000..cccfbb2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__11-15.png new file mode 100644 index 0000000..42a3494 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__16-20.png new file mode 100644 index 0000000..ad10574 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__21-35.png new file mode 100644 index 0000000..3aa8823 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__36-45.png new file mode 100644 index 0000000..56b57b6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__46-50.png new file mode 100644 index 0000000..9e6831a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__51-55.png new file mode 100644 index 0000000..a83a22d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__56-60.png new file mode 100644 index 0000000..6826b90 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__61-65.png new file mode 100644 index 0000000..5d813e4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__66.png new file mode 100644 index 0000000..b629aaa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__67-70.png new file mode 100644 index 0000000..36357fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__71-75.png new file mode 100644 index 0000000..3edd1a6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__76-80.png new file mode 100644 index 0000000..44344c0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__81-85.png new file mode 100644 index 0000000..a7fa765 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__86-90.png new file mode 100644 index 0000000..5a7b696 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__91-95.png new file mode 100644 index 0000000..0ea891d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__96-99.png new file mode 100644 index 0000000..3d82715 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/fragments.json b/src/RolemasterDb.App/import-artifacts/critical/unbalance/fragments.json new file mode 100644 index 0000000..01d01df --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/unbalance/fragments.json @@ -0,0 +1,3712 @@ +[ + { + "PageNumber": 1, + "Top": 1143, + "Left": 848, + "Width": 22, + "Height": 13, + "Text": "105", + "Confidence": null, + "CenterX": 859 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 105, + "Width": 17, + "Height": 9, + "Text": "Key:", + "Confidence": null, + "CenterX": 113.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 132, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 134.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 138, + "Width": 6, + "Height": 10, + "Text": "\u03C0", + "Confidence": null, + "CenterX": 141 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 145, + "Width": 87, + "Height": 9, + "Text": "=must parry \u00DF rounds;", + "Confidence": null, + "CenterX": 188.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 243, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 245.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 248, + "Width": 8, + "Height": 10, + "Text": "\u220F", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 255, + "Width": 93, + "Height": 9, + "Text": "=no parry for \u00DF rounds;", + "Confidence": null, + "CenterX": 301.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 357, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 359.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 363, + "Width": 7, + "Height": 10, + "Text": "\u2211", + "Confidence": null, + "CenterX": 366.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 368, + "Width": 90, + "Height": 9, + "Text": "=stunned for \u00DF rounds;", + "Confidence": null, + "CenterX": 413 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 468, + "Width": 5, + "Height": 9, + "Text": "\u00DF", + "Confidence": null, + "CenterX": 470.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 473, + "Width": 3, + "Height": 10, + "Text": "\u222B", + "Confidence": null, + "CenterX": 474.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 478, + "Width": 95, + "Height": 9, + "Text": "=bleed \u00DF hits per round;", + "Confidence": null, + "CenterX": 525.5 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 583, + "Width": 90, + "Height": 9, + "Text": "(-\u00DF)=foe has -\u00DF penalty;", + "Confidence": null, + "CenterX": 628 + }, + { + "PageNumber": 1, + "Top": 1144, + "Left": 683, + "Width": 132, + "Height": 9, + "Text": "(\u002B\u00DF)=attacker gets \u002B\u00DF next round.", + "Confidence": null, + "CenterX": 749 + }, + { + "PageNumber": 1, + "Top": 111, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "01-05", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 105, + "Left": 148, + "Width": 112, + "Height": 9, + "Text": "You and your foe both stumble.", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 105, + "Left": 282, + "Width": 109, + "Height": 9, + "Text": "You lunge 5 feet past your foe.", + "Confidence": null, + "CenterX": 336.5 + }, + { + "PageNumber": 1, + "Top": 105, + "Left": 433, + "Width": 134, + "Height": 9, + "Text": "Try again. What will your friends say?", + "Confidence": null, + "CenterX": 500 + }, + { + "PageNumber": 1, + "Top": 105, + "Left": 584, + "Width": 114, + "Height": 9, + "Text": "\u0022You\u0027re not very good, are you?\u0022", + "Confidence": null, + "CenterX": 641 + }, + { + "PageNumber": 1, + "Top": 105, + "Left": 736, + "Width": 110, + "Height": 9, + "Text": "You made a good sound effect.", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 124, + "Left": 261, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 124, + "Left": 412, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 124, + "Left": 562, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 569 + }, + { + "PageNumber": 1, + "Top": 124, + "Left": 713, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 124, + "Left": 869, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 876 + }, + { + "PageNumber": 1, + "Top": 153, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "06-10", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 148, + "Width": 117, + "Height": 9, + "Text": "Foe recognizes this assault from", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 151, + "Left": 148, + "Width": 48, + "Height": 9, + "Text": "grade school.", + "Confidence": null, + "CenterX": 172 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 282, + "Width": 141, + "Height": 9, + "Text": "Your opponent stands firmly in front of", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 151, + "Left": 282, + "Width": 17, + "Height": 9, + "Text": "you.", + "Confidence": null, + "CenterX": 290.5 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 433, + "Width": 132, + "Height": 9, + "Text": "When your attempt starts to fail, you", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 151, + "Left": 433, + "Width": 56, + "Height": 9, + "Text": "slip in a punch.", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 584, + "Width": 129, + "Height": 9, + "Text": "Your grip is neither firm or effective.", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 151, + "Left": 584, + "Width": 58, + "Height": 9, + "Text": "Foe breaks free.", + "Confidence": null, + "CenterX": 613 + }, + { + "PageNumber": 1, + "Top": 141, + "Left": 736, + "Width": 128, + "Height": 9, + "Text": "It is solid, even if randomly placed.", + "Confidence": null, + "CenterX": 800 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 261, + "Width": 14, + "Height": 9, + "Text": "\u002B0H", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 412, + "Width": 14, + "Height": 9, + "Text": "\u002B1H", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 562, + "Width": 14, + "Height": 9, + "Text": "\u002B2H", + "Confidence": null, + "CenterX": 569 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 713, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 171, + "Left": 869, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 876 + }, + { + "PageNumber": 1, + "Top": 198, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "11-15", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 148, + "Width": 118, + "Height": 9, + "Text": "Powerful strike fails to land solid.", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 148, + "Width": 95, + "Height": 9, + "Text": "It still does some damage.", + "Confidence": null, + "CenterX": 195.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 282, + "Width": 130, + "Height": 9, + "Text": "Weak side strike glances off kidneys.", + "Confidence": null, + "CenterX": 347 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 282, + "Width": 87, + "Height": 9, + "Text": "It could have been great.", + "Confidence": null, + "CenterX": 325.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 433, + "Width": 138, + "Height": 9, + "Text": "Knuckle foe\u0027s arm. You will need to do", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 433, + "Width": 56, + "Height": 9, + "Text": "better than this.", + "Confidence": null, + "CenterX": 461 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 584, + "Width": 145, + "Height": 9, + "Text": "Back strike. It has little imagination. You", + "Confidence": null, + "CenterX": 656.5 + }, + { + "PageNumber": 1, + "Top": 196, + "Left": 584, + "Width": 73, + "Height": 9, + "Text": "might as well punch.", + "Confidence": null, + "CenterX": 620.5 + }, + { + "PageNumber": 1, + "Top": 186, + "Left": 736, + "Width": 110, + "Height": 9, + "Text": "Strike lands on shoulder blade.", + "Confidence": null, + "CenterX": 791 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 261, + "Width": 14, + "Height": 9, + "Text": "\u002B3H", + "Confidence": null, + "CenterX": 268 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 412, + "Width": 14, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 562, + "Width": 14, + "Height": 9, + "Text": "\u002B5H", + "Confidence": null, + "CenterX": 569 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 713, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 720 + }, + { + "PageNumber": 1, + "Top": 216, + "Left": 869, + "Width": 14, + "Height": 9, + "Text": "\u002B7H", + "Confidence": null, + "CenterX": 876 + }, + { + "PageNumber": 1, + "Top": 244, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "16-20", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 148, + "Width": 115, + "Height": 9, + "Text": "Foe seeks to push you away. He", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 148, + "Width": 112, + "Height": 9, + "Text": "lashes out in defensive manner.", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 282, + "Width": 144, + "Height": 9, + "Text": "Glancing side blow. You unbalance your", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 282, + "Width": 87, + "Height": 9, + "Text": "foe. He recovers quickly.", + "Confidence": null, + "CenterX": 325.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 433, + "Width": 131, + "Height": 9, + "Text": "Strike side. Foe moves back to block", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 433, + "Width": 59, + "Height": 9, + "Text": "your next attack.", + "Confidence": null, + "CenterX": 462.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 584, + "Width": 130, + "Height": 9, + "Text": "Blow to foe\u0027s side sends him reeling.", + "Confidence": null, + "CenterX": 649 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 584, + "Width": 123, + "Height": 9, + "Text": "Foe checks wound for the damage.", + "Confidence": null, + "CenterX": 645.5 + }, + { + "PageNumber": 1, + "Top": 232, + "Left": 736, + "Width": 138, + "Height": 9, + "Text": "Blow to foe\u0027s side unbalances him and", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 243, + "Left": 736, + "Width": 95, + "Height": 9, + "Text": "destroys equipment there.", + "Confidence": null, + "CenterX": 783.5 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 244, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 259 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 396, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 411 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 545, + "Width": 30, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0", + "Confidence": null, + "CenterX": 560 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 686, + "Width": 41, + "Height": 9, + "Text": "\u002B7H \u2013 (-10)", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 262, + "Left": 838, + "Width": 46, + "Height": 9, + "Text": "\u002B8H \u2013 1(-20)", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 295, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "21-35", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 148, + "Width": 123, + "Height": 9, + "Text": "On line strike, but weak. Foe steps", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 148, + "Width": 121, + "Height": 9, + "Text": "back and feigns an attack to draw", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 300, + "Left": 148, + "Width": 57, + "Height": 9, + "Text": "off your assault.", + "Confidence": null, + "CenterX": 176.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 282, + "Width": 113, + "Height": 9, + "Text": "Your strike makes foe\u0027s footing", + "Confidence": null, + "CenterX": 338.5 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 282, + "Width": 127, + "Height": 9, + "Text": "uncertain. He pushes you clear and", + "Confidence": null, + "CenterX": 345.5 + }, + { + "PageNumber": 1, + "Top": 300, + "Left": 282, + "Width": 84, + "Height": 9, + "Text": "begins to right himself.", + "Confidence": null, + "CenterX": 324 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 433, + "Width": 143, + "Height": 9, + "Text": "Shot to foe\u0027s chest. His lungs hesitate.", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 433, + "Width": 121, + "Height": 9, + "Text": "He coughs it off and regains his", + "Confidence": null, + "CenterX": 493.5 + }, + { + "PageNumber": 1, + "Top": 300, + "Left": 433, + "Width": 27, + "Height": 9, + "Text": "footing.", + "Confidence": null, + "CenterX": 446.5 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 584, + "Width": 120, + "Height": 9, + "Text": "Quick shot to chest causes foe to", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 584, + "Width": 132, + "Height": 9, + "Text": "hesitate in pain.He still knows you\u0027re", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 300, + "Left": 584, + "Width": 22, + "Height": 9, + "Text": "there.", + "Confidence": null, + "CenterX": 595 + }, + { + "PageNumber": 1, + "Top": 279, + "Left": 736, + "Width": 139, + "Height": 9, + "Text": "Crack! Foe\u0027s rib reports damage to him", + "Confidence": null, + "CenterX": 805.5 + }, + { + "PageNumber": 1, + "Top": 289, + "Left": 736, + "Width": 117, + "Height": 9, + "Text": "in an unsubtle way. He is in pain.", + "Confidence": null, + "CenterX": 794.5 + }, + { + "PageNumber": 1, + "Top": 319, + "Left": 244, + "Width": 30, + "Height": 9, + "Text": "\u002B4H \u2013 \u03C0", + "Confidence": null, + "CenterX": 259 + }, + { + "PageNumber": 1, + "Top": 319, + "Left": 381, + "Width": 46, + "Height": 9, + "Text": "\u002B5H \u2013 1(-20)", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 319, + "Left": 544, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 560 + }, + { + "PageNumber": 1, + "Top": 319, + "Left": 695, + "Width": 32, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211", + "Confidence": null, + "CenterX": 711 + }, + { + "PageNumber": 1, + "Top": 319, + "Left": 820, + "Width": 64, + "Height": 9, + "Text": "\u002B9H \u2013 \u2211 \u2013 1(-10)", + "Confidence": null, + "CenterX": 852 + }, + { + "PageNumber": 1, + "Top": 351, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "36-45", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 148, + "Width": 125, + "Height": 9, + "Text": "Light bash breaks foe\u0027s focus. You", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 148, + "Width": 104, + "Height": 9, + "Text": "have the initiative next round.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 282, + "Width": 140, + "Height": 9, + "Text": "You salvage your attack by tripping foe.", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 282, + "Width": 123, + "Height": 9, + "Text": "You have the initiative next round.", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 433, + "Width": 131, + "Height": 9, + "Text": "Grab foe\u0027s shoulder, while you bring", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 433, + "Width": 116, + "Height": 9, + "Text": "your knee up to knock him over.", + "Confidence": null, + "CenterX": 491 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 584, + "Width": 125, + "Height": 9, + "Text": "Strike to calf. Wound impairs foe\u0027s", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 345, + "Left": 584, + "Width": 126, + "Height": 9, + "Text": "movements. You have the initiative.", + "Confidence": null, + "CenterX": 647 + }, + { + "PageNumber": 1, + "Top": 334, + "Left": 736, + "Width": 112, + "Height": 9, + "Text": "Hard glancing blow to foe\u0027s leg.", + "Confidence": null, + "CenterX": 792 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 258, + "Width": 17, + "Height": 9, + "Text": "\u002B4H", + "Confidence": null, + "CenterX": 266.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 385, + "Width": 41, + "Height": 9, + "Text": "\u002B5H \u2013 2(-5)", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 530, + "Width": 46, + "Height": 9, + "Text": "\u002B5H \u2013 1(-40)", + "Confidence": null, + "CenterX": 553 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 686, + "Width": 41, + "Height": 9, + "Text": "\u002B7H \u2013 (-25)", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 364, + "Left": 809, + "Width": 75, + "Height": 9, + "Text": "with leg armor: \u002B12H", + "Confidence": null, + "CenterX": 846.5 + }, + { + "PageNumber": 1, + "Top": 375, + "Left": 793, + "Width": 91, + "Height": 9, + "Text": "w/o leg armor: \u002B8H \u2013 2\u2211", + "Confidence": null, + "CenterX": 838.5 + }, + { + "PageNumber": 1, + "Top": 406, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "46-50", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 148, + "Width": 103, + "Height": 9, + "Text": "Attempt to spin foe\u0027s around", + "Confidence": null, + "CenterX": 199.5 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 148, + "Width": 130, + "Height": 9, + "Text": "almost succeeds. Weak grip to side.", + "Confidence": null, + "CenterX": 213 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 282, + "Width": 124, + "Height": 9, + "Text": "Your assault threatens to succeed.", + "Confidence": null, + "CenterX": 344 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 282, + "Width": 136, + "Height": 9, + "Text": "Your foe goes defensive to avoid your", + "Confidence": null, + "CenterX": 350 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 282, + "Width": 23, + "Height": 9, + "Text": "attack.", + "Confidence": null, + "CenterX": 293.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 433, + "Width": 130, + "Height": 9, + "Text": "Boom! Foe is hit in the face. He reels", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 433, + "Width": 139, + "Height": 9, + "Text": "back 5 feet trying to regain his footing.", + "Confidence": null, + "CenterX": 502.5 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 433, + "Width": 69, + "Height": 9, + "Text": "His guard is down.", + "Confidence": null, + "CenterX": 467.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 584, + "Width": 142, + "Height": 9, + "Text": "Double strike to both arms breaks foe\u0027s", + "Confidence": null, + "CenterX": 655 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 584, + "Width": 128, + "Height": 9, + "Text": "defense. He is open to attack and is", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 584, + "Width": 95, + "Height": 9, + "Text": "having trouble recovering.", + "Confidence": null, + "CenterX": 631.5 + }, + { + "PageNumber": 1, + "Top": 390, + "Left": 736, + "Width": 141, + "Height": 9, + "Text": "Shot in back staggers foe for an instant.", + "Confidence": null, + "CenterX": 806.5 + }, + { + "PageNumber": 1, + "Top": 400, + "Left": 736, + "Width": 114, + "Height": 9, + "Text": "His guard drops and he is sadly", + "Confidence": null, + "CenterX": 793 + }, + { + "PageNumber": 1, + "Top": 411, + "Left": 736, + "Width": 47, + "Height": 9, + "Text": "unprotected.", + "Confidence": null, + "CenterX": 759.5 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 226, + "Width": 48, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0(-10)", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 378, + "Width": 48, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0(-20)", + "Confidence": null, + "CenterX": 402 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 536, + "Width": 40, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 556 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 688, + "Width": 40, + "Height": 9, + "Text": "\u002B8H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 708 + }, + { + "PageNumber": 1, + "Top": 430, + "Left": 839, + "Width": 44, + "Height": 9, + "Text": "\u002B12H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 459, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "51-55", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 148, + "Width": 121, + "Height": 9, + "Text": "Firm press to foe\u0027s chest. He give", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 148, + "Width": 125, + "Height": 9, + "Text": "ground happily. Watch his weapon.", + "Confidence": null, + "CenterX": 210.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 282, + "Width": 133, + "Height": 9, + "Text": "Grab foe and bring knee up to cause", + "Confidence": null, + "CenterX": 348.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 282, + "Width": 137, + "Height": 9, + "Text": "damage. Foe blocks some of the force.", + "Confidence": null, + "CenterX": 350.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 433, + "Width": 116, + "Height": 9, + "Text": "Push foe\u0027s knee backwards. Foe", + "Confidence": null, + "CenterX": 491 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 433, + "Width": 98, + "Height": 9, + "Text": "struggles to avoid the pain.", + "Confidence": null, + "CenterX": 482 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 584, + "Width": 132, + "Height": 9, + "Text": "Strike to chest takes wind out of foe.", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 584, + "Width": 87, + "Height": 9, + "Text": "Foe\u0027s guard goes down.", + "Confidence": null, + "CenterX": 627.5 + }, + { + "PageNumber": 1, + "Top": 447, + "Left": 736, + "Width": 133, + "Height": 9, + "Text": "Knock foe over as if he was a sack of", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 457, + "Left": 736, + "Width": 132, + "Height": 9, + "Text": "beans. He hits and starts to stand up.", + "Confidence": null, + "CenterX": 802 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 225, + "Width": 50, + "Height": 9, + "Text": "\u002B5H \u2013 \u03C0(-20)", + "Confidence": null, + "CenterX": 250 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 394, + "Width": 32, + "Height": 9, + "Text": "\u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 410 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 536, + "Width": 40, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 556 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 683, + "Width": 44, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 477, + "Left": 839, + "Width": 44, + "Height": 9, + "Text": "\u002B12H \u2013 \u2211\u220F", + "Confidence": null, + "CenterX": 861 + }, + { + "PageNumber": 1, + "Top": 510, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "56-60", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 493, + "Left": 148, + "Width": 115, + "Height": 9, + "Text": "Strike thigh. Foe is pushed back.", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 493, + "Left": 282, + "Width": 146, + "Height": 9, + "Text": "Foe bumps his thigh while blocking your", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 282, + "Width": 77, + "Height": 9, + "Text": "attack. He steps back.", + "Confidence": null, + "CenterX": 320.5 + }, + { + "PageNumber": 1, + "Top": 493, + "Left": 433, + "Width": 136, + "Height": 9, + "Text": "Skipping calf strike. Foe does not give", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 433, + "Width": 28, + "Height": 9, + "Text": "ground.", + "Confidence": null, + "CenterX": 447 + }, + { + "PageNumber": 1, + "Top": 493, + "Left": 584, + "Width": 144, + "Height": 9, + "Text": "Miss foe\u0027s side and strike his thigh. You", + "Confidence": null, + "CenterX": 656 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 584, + "Width": 97, + "Height": 9, + "Text": "have initiative for 3 rounds.", + "Confidence": null, + "CenterX": 632.5 + }, + { + "PageNumber": 1, + "Top": 493, + "Left": 736, + "Width": 148, + "Height": 9, + "Text": "Strike causes foe to fumble his stride. He", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 504, + "Left": 736, + "Width": 130, + "Height": 9, + "Text": "almost falls down. Foe is recovering.", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 522, + "Left": 198, + "Width": 78, + "Height": 9, + "Text": "with thigh armor: \u002B7H", + "Confidence": null, + "CenterX": 237 + }, + { + "PageNumber": 1, + "Top": 532, + "Left": 181, + "Width": 94, + "Height": 9, + "Text": "w/o thigh armor: \u002B5H \u2013 \u2211", + "Confidence": null, + "CenterX": 228 + }, + { + "PageNumber": 1, + "Top": 532, + "Left": 378, + "Width": 48, + "Height": 9, + "Text": "\u002B6H \u2013 \u03C0(-30)", + "Confidence": null, + "CenterX": 402 + }, + { + "PageNumber": 1, + "Top": 522, + "Left": 506, + "Width": 70, + "Height": 9, + "Text": "with leg armor: \u002B9H", + "Confidence": null, + "CenterX": 541 + }, + { + "PageNumber": 1, + "Top": 532, + "Left": 459, + "Width": 118, + "Height": 9, + "Text": "w/o leg armor: \u002B7H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 518 + }, + { + "PageNumber": 1, + "Top": 532, + "Left": 686, + "Width": 41, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 532, + "Left": 842, + "Width": 41, + "Height": 9, + "Text": "\u002B14H \u2013 3\u2211", + "Confidence": null, + "CenterX": 862.5 + }, + { + "PageNumber": 1, + "Top": 561, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "61-65", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 148, + "Width": 124, + "Height": 9, + "Text": "Foe\u0027s arm is pinned for a moment.", + "Confidence": null, + "CenterX": 210 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 148, + "Width": 112, + "Height": 9, + "Text": "He recovers by twisting you off.", + "Confidence": null, + "CenterX": 204 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 282, + "Width": 113, + "Height": 9, + "Text": "Bend weapon arm in the wrong", + "Confidence": null, + "CenterX": 338.5 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 282, + "Width": 118, + "Height": 9, + "Text": "direction. Foe drops his weapon.", + "Confidence": null, + "CenterX": 341 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 433, + "Width": 136, + "Height": 9, + "Text": "Excellent placement. Strike to weapon", + "Confidence": null, + "CenterX": 501 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 433, + "Width": 132, + "Height": 9, + "Text": "arm disarms foe. Foe is in great peril.", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 584, + "Width": 125, + "Height": 9, + "Text": "You catch foe\u0027s counter thrust and", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 584, + "Width": 124, + "Height": 9, + "Text": "disarm him with a bash to the arm.", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 549, + "Left": 736, + "Width": 138, + "Height": 9, + "Text": "Bash foe in shoulder making him spin.", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 559, + "Left": 736, + "Width": 119, + "Height": 9, + "Text": "You push him for good measure.", + "Confidence": null, + "CenterX": 795.5 + }, + { + "PageNumber": 1, + "Top": 579, + "Left": 243, + "Width": 32, + "Height": 9, + "Text": "\u002B6H \u2013 \u2211", + "Confidence": null, + "CenterX": 259 + }, + { + "PageNumber": 1, + "Top": 579, + "Left": 412, + "Width": 14, + "Height": 9, + "Text": "\u002B6H", + "Confidence": null, + "CenterX": 419 + }, + { + "PageNumber": 1, + "Top": 579, + "Left": 539, + "Width": 37, + "Height": 9, + "Text": "\u002B6H \u2013 2\u2211", + "Confidence": null, + "CenterX": 557.5 + }, + { + "PageNumber": 1, + "Top": 579, + "Left": 662, + "Width": 65, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 694.5 + }, + { + "PageNumber": 1, + "Top": 579, + "Left": 833, + "Width": 51, + "Height": 9, + "Text": "\u002B13H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 858.5 + }, + { + "PageNumber": 1, + "Top": 610, + "Left": 111, + "Width": 17, + "Height": 14, + "Text": "66", + "Confidence": null, + "CenterX": 119.5 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 148, + "Width": 127, + "Height": 9, + "Text": "Shoulder strike sends foe spinning.", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 148, + "Width": 129, + "Height": 9, + "Text": "He comes all the way around before", + "Confidence": null, + "CenterX": 212.5 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 148, + "Width": 96, + "Height": 9, + "Text": "stopping. Well placed shot.", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 282, + "Width": 145, + "Height": 9, + "Text": "Stirke to foe\u0027s elbow numbs it. He drops", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 282, + "Width": 128, + "Height": 9, + "Text": "his weapon and grips his elbow. He", + "Confidence": null, + "CenterX": 346 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 282, + "Width": 120, + "Height": 9, + "Text": "forgets you are still attacking him.", + "Confidence": null, + "CenterX": 342 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 433, + "Width": 127, + "Height": 9, + "Text": "Strike to foe\u0027s leg sends him down.", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 433, + "Width": 142, + "Height": 9, + "Text": "Foe\u0027s knee is broken and his doom is at", + "Confidence": null, + "CenterX": 504 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 433, + "Width": 132, + "Height": 9, + "Text": "hand. He falls to the ground helpless.", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 584, + "Width": 140, + "Height": 9, + "Text": "Hard strike to head. If foe has no helm,", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 584, + "Width": 146, + "Height": 9, + "Text": "he is knocked out for 24 hours. If he has", + "Confidence": null, + "CenterX": 657 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 584, + "Width": 124, + "Height": 9, + "Text": "a helm, he is knocked back 10 feet.", + "Confidence": null, + "CenterX": 646 + }, + { + "PageNumber": 1, + "Top": 594, + "Left": 736, + "Width": 138, + "Height": 9, + "Text": "Knock foe back with a blow to the jaw.", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 604, + "Left": 736, + "Width": 138, + "Height": 9, + "Text": "Foe loses balance and falls. he hits his", + "Confidence": null, + "CenterX": 805 + }, + { + "PageNumber": 1, + "Top": 615, + "Left": 736, + "Width": 101, + "Height": 9, + "Text": "head and goes unconscious.", + "Confidence": null, + "CenterX": 786.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 231, + "Width": 44, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 253 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 382, + "Width": 44, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 404 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 505, + "Width": 71, + "Height": 9, + "Text": "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "Confidence": null, + "CenterX": 540.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 713, + "Width": 13, + "Height": 9, + "Text": "6\u2211", + "Confidence": null, + "CenterX": 719.5 + }, + { + "PageNumber": 1, + "Top": 634, + "Left": 865, + "Width": 19, + "Height": 9, + "Text": "\u002B30H", + "Confidence": null, + "CenterX": 874.5 + }, + { + "PageNumber": 1, + "Top": 667, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "67-70", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 148, + "Width": 105, + "Height": 9, + "Text": "Hasty press upon foe\u0027s chest", + "Confidence": null, + "CenterX": 200.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 148, + "Width": 120, + "Height": 9, + "Text": "produces excellent results. Foe is", + "Confidence": null, + "CenterX": 208 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 148, + "Width": 45, + "Height": 9, + "Text": "unbalanced.", + "Confidence": null, + "CenterX": 170.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 282, + "Width": 141, + "Height": 9, + "Text": "Grab loose piece of foe\u0027s garments and", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 282, + "Width": 122, + "Height": 9, + "Text": "use it to throw him around. Foe is", + "Confidence": null, + "CenterX": 343 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 282, + "Width": 37, + "Height": 9, + "Text": "confused.", + "Confidence": null, + "CenterX": 300.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 433, + "Width": 143, + "Height": 9, + "Text": "Strike to foe\u0027s ribs. Foe\u0027s ribs crack and", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 433, + "Width": 130, + "Height": 9, + "Text": "foe shows the pain. His war effort is", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 433, + "Width": 35, + "Height": 9, + "Text": "impaired.", + "Confidence": null, + "CenterX": 450.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 584, + "Width": 119, + "Height": 9, + "Text": "Break foe\u0027s collar bone. Spin foe", + "Confidence": null, + "CenterX": 643.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 584, + "Width": 129, + "Height": 9, + "Text": "around. He is disoriented and out of", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 584, + "Width": 33, + "Height": 9, + "Text": "position.", + "Confidence": null, + "CenterX": 600.5 + }, + { + "PageNumber": 1, + "Top": 651, + "Left": 736, + "Width": 149, + "Height": 9, + "Text": "Shoulder strike blasts foe down. He lands", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 661, + "Left": 736, + "Width": 133, + "Height": 9, + "Text": "on his stomach and tries to roll over.", + "Confidence": null, + "CenterX": 802.5 + }, + { + "PageNumber": 1, + "Top": 672, + "Left": 736, + "Width": 55, + "Height": 9, + "Text": "Minor fracture.", + "Confidence": null, + "CenterX": 763.5 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 229, + "Width": 46, + "Height": 9, + "Text": "\u002B6H \u2013 2(-50)", + "Confidence": null, + "CenterX": 252 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 397, + "Width": 29, + "Height": 9, + "Text": "\u002B7H - \u220F", + "Confidence": null, + "CenterX": 411.5 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 512, + "Width": 64, + "Height": 9, + "Text": "\u002B8H \u2013 2\u2211 \u2013 (-20)", + "Confidence": null, + "CenterX": 544 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 656, + "Width": 71, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-25)", + "Confidence": null, + "CenterX": 691.5 + }, + { + "PageNumber": 1, + "Top": 691, + "Left": 836, + "Width": 48, + "Height": 9, + "Text": "2\u2211\u220F \u2013 (-10)", + "Confidence": null, + "CenterX": 860 + }, + { + "PageNumber": 1, + "Top": 724, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "71-75", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 148, + "Width": 115, + "Height": 9, + "Text": "Hammer foe\u0027s lower leg. He has", + "Confidence": null, + "CenterX": 205.5 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 148, + "Width": 110, + "Height": 9, + "Text": "trouble standing, but manages.", + "Confidence": null, + "CenterX": 203 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 282, + "Width": 143, + "Height": 9, + "Text": "Solid damage to foe\u0027s calf. His attempts", + "Confidence": null, + "CenterX": 353.5 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 282, + "Width": 132, + "Height": 9, + "Text": "to avoid the pain make him an easier", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 282, + "Width": 25, + "Height": 9, + "Text": "target.", + "Confidence": null, + "CenterX": 294.5 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 433, + "Width": 144, + "Height": 9, + "Text": "Bruise foe\u0027s leg. Muscles suffer damage", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 433, + "Width": 106, + "Height": 9, + "Text": "and foe limps back from your", + "Confidence": null, + "CenterX": 486 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 433, + "Width": 22, + "Height": 9, + "Text": "reach.", + "Confidence": null, + "CenterX": 444 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 584, + "Width": 132, + "Height": 9, + "Text": "Lift foe up into the air. You send him", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 584, + "Width": 138, + "Height": 9, + "Text": "sprawling on the ground. He drops his", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 584, + "Width": 30, + "Height": 9, + "Text": "weapon.", + "Confidence": null, + "CenterX": 599 + }, + { + "PageNumber": 1, + "Top": 708, + "Left": 736, + "Width": 145, + "Height": 9, + "Text": "Knock foe down with a blow to the thigh.", + "Confidence": null, + "CenterX": 808.5 + }, + { + "PageNumber": 1, + "Top": 718, + "Left": 736, + "Width": 144, + "Height": 9, + "Text": "He lands on his wespon and takes some", + "Confidence": null, + "CenterX": 808 + }, + { + "PageNumber": 1, + "Top": 729, + "Left": 736, + "Width": 59, + "Height": 9, + "Text": "time to get off it.", + "Confidence": null, + "CenterX": 765.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 238, + "Width": 37, + "Height": 9, + "Text": "\u002B7H \u2013 2\u2211", + "Confidence": null, + "CenterX": 256.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 385, + "Width": 41, + "Height": 9, + "Text": "\u002B9H \u2013 (-10)", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 505, + "Width": 73, + "Height": 9, + "Text": "\u002B10H \u2013 \u2211\u220F \u2013 (-20)", + "Confidence": null, + "CenterX": 541.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 659, + "Width": 69, + "Height": 9, + "Text": "\u002B12H \u2013 \u2211\u220F \u2013(-75)", + "Confidence": null, + "CenterX": 693.5 + }, + { + "PageNumber": 1, + "Top": 748, + "Left": 835, + "Width": 49, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211\u220F", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 775, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "76-80", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 148, + "Width": 124, + "Height": 9, + "Text": "Blow to foe\u0027s shield side. If foe has", + "Confidence": null, + "CenterX": 210 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 148, + "Width": 84, + "Height": 9, + "Text": "a shield, it is torn away.", + "Confidence": null, + "CenterX": 190 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 282, + "Width": 141, + "Height": 9, + "Text": "Grab foe\u0027s shield arm for leverage. You", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 282, + "Width": 134, + "Height": 9, + "Text": "treat it badly, trying to unbalance foe.", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 433, + "Width": 138, + "Height": 9, + "Text": "Heavy blow to foe\u0027s weapon arm. Mild", + "Confidence": null, + "CenterX": 502 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 433, + "Width": 127, + "Height": 9, + "Text": "fracture. Foe is knocked back 5 feet.", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 584, + "Width": 132, + "Height": 9, + "Text": "Sweep foe to the side and knock him", + "Confidence": null, + "CenterX": 650 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 584, + "Width": 91, + "Height": 9, + "Text": "over. He breaks his ankle.", + "Confidence": null, + "CenterX": 629.5 + }, + { + "PageNumber": 1, + "Top": 763, + "Left": 736, + "Width": 149, + "Height": 9, + "Text": "Strike to foe\u0027s shield arm. Foe stumbles 3", + "Confidence": null, + "CenterX": 810.5 + }, + { + "PageNumber": 1, + "Top": 774, + "Left": 736, + "Width": 129, + "Height": 9, + "Text": "feet and falls down. Foe is disarmed.", + "Confidence": null, + "CenterX": 800.5 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 234, + "Width": 41, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211", + "Confidence": null, + "CenterX": 254.5 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 358, + "Width": 68, + "Height": 9, + "Text": "\u002B10H \u2013 2\u2211 \u2013 (-10)", + "Confidence": null, + "CenterX": 392 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 508, + "Width": 68, + "Height": 9, + "Text": "\u002B11H \u2013 3\u2211 \u2013 (-25)", + "Confidence": null, + "CenterX": 542 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 682, + "Width": 46, + "Height": 9, + "Text": "\u002B11H \u2013 (-50)", + "Confidence": null, + "CenterX": 705 + }, + { + "PageNumber": 1, + "Top": 793, + "Left": 835, + "Width": 49, + "Height": 9, + "Text": "\u002B15H \u2013 4\u2211\u220F", + "Confidence": null, + "CenterX": 859.5 + }, + { + "PageNumber": 1, + "Top": 826, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "81-85", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 148, + "Width": 123, + "Height": 9, + "Text": "Side strike. Disoriented foe strikes", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 148, + "Width": 121, + "Height": 9, + "Text": "out for you in the wrong direction.", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 148, + "Width": 102, + "Height": 9, + "Text": "You move to take advantage.", + "Confidence": null, + "CenterX": 199 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 282, + "Width": 123, + "Height": 9, + "Text": "Good shot to foe\u0027s side sends him", + "Confidence": null, + "CenterX": 343.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 282, + "Width": 142, + "Height": 9, + "Text": "stumble to the right 3 feet. It must have", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 282, + "Width": 40, + "Height": 9, + "Text": "really hurt.", + "Confidence": null, + "CenterX": 302 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 433, + "Width": 128, + "Height": 9, + "Text": "Strike to foe\u0027s side. He almost goes", + "Confidence": null, + "CenterX": 497 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 433, + "Width": 115, + "Height": 9, + "Text": "down, but recovers by dropping", + "Confidence": null, + "CenterX": 490.5 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 433, + "Width": 100, + "Height": 9, + "Text": "everything in his shield arm.", + "Confidence": null, + "CenterX": 483 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 584, + "Width": 139, + "Height": 9, + "Text": "Brutal strike sends foe down. You step", + "Confidence": null, + "CenterX": 653.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 584, + "Width": 134, + "Height": 9, + "Text": "on his weapon arm and hold it down.", + "Confidence": null, + "CenterX": 651 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 584, + "Width": 80, + "Height": 9, + "Text": "Foe should surrender.", + "Confidence": null, + "CenterX": 624 + }, + { + "PageNumber": 1, + "Top": 810, + "Left": 736, + "Width": 135, + "Height": 9, + "Text": "Awesome side shot sends foe tripping", + "Confidence": null, + "CenterX": 803.5 + }, + { + "PageNumber": 1, + "Top": 820, + "Left": 736, + "Width": 130, + "Height": 9, + "Text": "sideways. He goes down rolling and", + "Confidence": null, + "CenterX": 801 + }, + { + "PageNumber": 1, + "Top": 831, + "Left": 736, + "Width": 47, + "Height": 9, + "Text": "breaks a leg.", + "Confidence": null, + "CenterX": 759.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 201, + "Width": 75, + "Height": 9, + "Text": "\u002B12H \u2013 \u2211\u220F \u2013 (\u002B10)", + "Confidence": null, + "CenterX": 238.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 385, + "Width": 41, + "Height": 9, + "Text": "\u002B15H \u2013 3\u2211", + "Confidence": null, + "CenterX": 405.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 562, + "Width": 13, + "Height": 9, + "Text": "6\u2211", + "Confidence": null, + "CenterX": 568.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 679, + "Width": 49, + "Height": 9, + "Text": "\u002B12H \u2013 6\u2211\u220F", + "Confidence": null, + "CenterX": 703.5 + }, + { + "PageNumber": 1, + "Top": 850, + "Left": 838, + "Width": 45, + "Height": 9, + "Text": "6\u2211\u220F \u2013(-50)", + "Confidence": null, + "CenterX": 860.5 + }, + { + "PageNumber": 1, + "Top": 882, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "86-90", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 148, + "Width": 117, + "Height": 9, + "Text": "Elbow to the back. Foe stumbles", + "Confidence": null, + "CenterX": 206.5 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 148, + "Width": 121, + "Height": 9, + "Text": "5 feet sideways. Foe cannot seem", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 148, + "Width": 74, + "Height": 9, + "Text": "to get his head clear.", + "Confidence": null, + "CenterX": 185 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 282, + "Width": 146, + "Height": 9, + "Text": "You really hammer foe. He reels back 10", + "Confidence": null, + "CenterX": 355 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 282, + "Width": 145, + "Height": 9, + "Text": "feet. He almost went down. You move in", + "Confidence": null, + "CenterX": 354.5 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 282, + "Width": 49, + "Height": 9, + "Text": "to finish him.", + "Confidence": null, + "CenterX": 306.5 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 433, + "Width": 131, + "Height": 9, + "Text": "Precise blow sends foe down. Foe is", + "Confidence": null, + "CenterX": 498.5 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 433, + "Width": 89, + "Height": 9, + "Text": "face down and disarmed.", + "Confidence": null, + "CenterX": 477.5 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 584, + "Width": 149, + "Height": 9, + "Text": "Strike foe\u0027s shield arm. If foe has a shield", + "Confidence": null, + "CenterX": 658.5 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 584, + "Width": 129, + "Height": 9, + "Text": "it is broken. If not the arm is broken.", + "Confidence": null, + "CenterX": 648.5 + }, + { + "PageNumber": 1, + "Top": 865, + "Left": 736, + "Width": 150, + "Height": 9, + "Text": "Cruel blow to foe\u0027s head.... Foe sees stars.", + "Confidence": null, + "CenterX": 811 + }, + { + "PageNumber": 1, + "Top": 876, + "Left": 736, + "Width": 147, + "Height": 9, + "Text": "Foe is knocked back 10 feet, but remains", + "Confidence": null, + "CenterX": 809.5 + }, + { + "PageNumber": 1, + "Top": 886, + "Left": 736, + "Width": 35, + "Height": 9, + "Text": "standing.", + "Confidence": null, + "CenterX": 753.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 205, + "Width": 70, + "Height": 9, + "Text": "\u002B13H \u2013 3\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 240 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 378, + "Width": 49, + "Height": 9, + "Text": "\u002B12H \u2013 2\u2211\u220F", + "Confidence": null, + "CenterX": 402.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 508, + "Width": 68, + "Height": 9, + "Text": "\u002B14H \u20136\u2211 \u2013 (\u002B20)", + "Confidence": null, + "CenterX": 542 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 686, + "Width": 41, + "Height": 9, + "Text": "\u002B10H \u2013 9\u2211", + "Confidence": null, + "CenterX": 706.5 + }, + { + "PageNumber": 1, + "Top": 906, + "Left": 829, + "Width": 55, + "Height": 9, + "Text": "\u002B20H \u2013 12\u2211\u220F", + "Confidence": null, + "CenterX": 856.5 + }, + { + "PageNumber": 1, + "Top": 939, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "91-95", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 148, + "Width": 121, + "Height": 9, + "Text": "Head strike. If foe has no helm, he", + "Confidence": null, + "CenterX": 208.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 148, + "Width": 118, + "Height": 9, + "Text": "is knocked out for 2 hours. If foe", + "Confidence": null, + "CenterX": 207 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 148, + "Width": 96, + "Height": 9, + "Text": "has a helm, he is better off.", + "Confidence": null, + "CenterX": 196 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 282, + "Width": 119, + "Height": 9, + "Text": "Blow to side of foe\u0027s head. Strike", + "Confidence": null, + "CenterX": 341.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 282, + "Width": 132, + "Height": 9, + "Text": "damages his ear and balance. Foe is", + "Confidence": null, + "CenterX": 348 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 282, + "Width": 76, + "Height": 9, + "Text": "impaired for 3 weeks.", + "Confidence": null, + "CenterX": 320 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 433, + "Width": 127, + "Height": 9, + "Text": "Spin foe around. He ends up 10 feet", + "Confidence": null, + "CenterX": 496.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 433, + "Width": 111, + "Height": 9, + "Text": "from you and facing the wrong", + "Confidence": null, + "CenterX": 488.5 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 433, + "Width": 123, + "Height": 9, + "Text": "direction. Foe fumbles his weapon.", + "Confidence": null, + "CenterX": 494.5 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 584, + "Width": 131, + "Height": 9, + "Text": "Foe stumbles back from you 10 feet", + "Confidence": null, + "CenterX": 649.5 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 584, + "Width": 128, + "Height": 9, + "Text": "and takes a full round to fall. He hits", + "Confidence": null, + "CenterX": 648 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 584, + "Width": 138, + "Height": 9, + "Text": "hard and fractures an arm. He is down.", + "Confidence": null, + "CenterX": 653 + }, + { + "PageNumber": 1, + "Top": 922, + "Left": 736, + "Width": 154, + "Height": 9, + "Text": "Blow to foe\u0027s shield shoulder. If foe has no", + "Confidence": null, + "CenterX": 813 + }, + { + "PageNumber": 1, + "Top": 933, + "Left": 736, + "Width": 148, + "Height": 9, + "Text": "shield, he is knocked down,has a useless", + "Confidence": null, + "CenterX": 810 + }, + { + "PageNumber": 1, + "Top": 943, + "Left": 736, + "Width": 76, + "Height": 9, + "Text": "arm, and passes out.", + "Confidence": null, + "CenterX": 774 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 261, + "Width": 13, + "Height": 9, + "Text": "3\u2211", + "Confidence": null, + "CenterX": 267.5 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 363, + "Width": 64, + "Height": 9, + "Text": "\u002B9H \u2013 6\u2211 \u2013 (-50)", + "Confidence": null, + "CenterX": 395 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 652, + "Width": 76, + "Height": 9, + "Text": "\u002B10H \u2013 8\u2211\u220F \u2013 (-30)", + "Confidence": null, + "CenterX": 690 + }, + { + "PageNumber": 1, + "Top": 963, + "Left": 869, + "Width": 13, + "Height": 9, + "Text": "6\u2211", + "Confidence": null, + "CenterX": 875.5 + }, + { + "PageNumber": 1, + "Top": 1002, + "Left": 100, + "Width": 38, + "Height": 14, + "Text": "96-99", + "Confidence": null, + "CenterX": 119 + }, + { + "PageNumber": 1, + "Top": 979, + "Left": 148, + "Width": 122, + "Height": 9, + "Text": "Strike to foe\u0027s stomach. He bends", + "Confidence": null, + "CenterX": 209 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 148, + "Width": 113, + "Height": 9, + "Text": "down in pain and you send him", + "Confidence": null, + "CenterX": 204.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 148, + "Width": 107, + "Height": 9, + "Text": "sprawling on his face. He hits", + "Confidence": null, + "CenterX": 201.5 + }, + { + "PageNumber": 1, + "Top": 1011, + "Left": 148, + "Width": 123, + "Height": 9, + "Text": "harder than you could have hoped.", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 979, + "Left": 282, + "Width": 139, + "Height": 9, + "Text": "Bash foe in his side. His legs forget to", + "Confidence": null, + "CenterX": 351.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 282, + "Width": 135, + "Height": 9, + "Text": "follow as he steps back. He falls in an", + "Confidence": null, + "CenterX": 349.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 282, + "Width": 144, + "Height": 9, + "Text": "embarrassing prone position. He has no", + "Confidence": null, + "CenterX": 354 + }, + { + "PageNumber": 1, + "Top": 1011, + "Left": 282, + "Width": 82, + "Height": 9, + "Text": "clue to what happened.", + "Confidence": null, + "CenterX": 323 + }, + { + "PageNumber": 1, + "Top": 979, + "Left": 433, + "Width": 129, + "Height": 9, + "Text": "Smooth and snazzy strike sends foe", + "Confidence": null, + "CenterX": 497.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 433, + "Width": 133, + "Height": 9, + "Text": "down on his knees. His weapon goes", + "Confidence": null, + "CenterX": 499.5 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 433, + "Width": 132, + "Height": 9, + "Text": "flying. Foe has blacked out. He stares", + "Confidence": null, + "CenterX": 499 + }, + { + "PageNumber": 1, + "Top": 1011, + "Left": 433, + "Width": 111, + "Height": 9, + "Text": "straight ahead without blinking.", + "Confidence": null, + "CenterX": 488.5 + }, + { + "PageNumber": 1, + "Top": 979, + "Left": 584, + "Width": 125, + "Height": 9, + "Text": "Strike head and shatter foe\u0027s helm.", + "Confidence": null, + "CenterX": 646.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 584, + "Width": 140, + "Height": 9, + "Text": "Pieces fly in all diections. If foe has no", + "Confidence": null, + "CenterX": 654 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 584, + "Width": 120, + "Height": 9, + "Text": "helm he is in a coma foe 4 weeks.", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 979, + "Left": 736, + "Width": 153, + "Height": 9, + "Text": "Solid strike snaps foe\u0027s neck. He falls back", + "Confidence": null, + "CenterX": 812.5 + }, + { + "PageNumber": 1, + "Top": 990, + "Left": 736, + "Width": 146, + "Height": 9, + "Text": "5 feet, spins, and tumbles to the ground.", + "Confidence": null, + "CenterX": 809 + }, + { + "PageNumber": 1, + "Top": 1000, + "Left": 736, + "Width": 136, + "Height": 9, + "Text": "He dies of shock and suffocation in 3", + "Confidence": null, + "CenterX": 804 + }, + { + "PageNumber": 1, + "Top": 1011, + "Left": 736, + "Width": 27, + "Height": 9, + "Text": "rounds.", + "Confidence": null, + "CenterX": 749.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 235, + "Width": 42, + "Height": 9, + "Text": "\u002B10H \u2013 3\u220F", + "Confidence": null, + "CenterX": 256 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 406, + "Width": 21, + "Height": 9, + "Text": "6\u2211\u220F", + "Confidence": null, + "CenterX": 416.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 566, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 691, + "Width": 37, + "Height": 9, + "Text": "\u002B9H \u2013 6\u2211", + "Confidence": null, + "CenterX": 709.5 + }, + { + "PageNumber": 1, + "Top": 1030, + "Left": 874, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 878.5 + }, + { + "PageNumber": 1, + "Top": 1068, + "Left": 106, + "Width": 25, + "Height": 14, + "Text": "100", + "Confidence": null, + "CenterX": 118.5 + }, + { + "PageNumber": 1, + "Top": 1045, + "Left": 148, + "Width": 123, + "Height": 9, + "Text": "Brutal hip strike knocks foe down.", + "Confidence": null, + "CenterX": 209.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 148, + "Width": 116, + "Height": 9, + "Text": "Fall tears tendons, and fractures", + "Confidence": null, + "CenterX": 206 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 148, + "Width": 109, + "Height": 9, + "Text": "bone in leg. The pain his great.", + "Confidence": null, + "CenterX": 202.5 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 148, + "Width": 104, + "Height": 9, + "Text": "Foe is incoherent for 9 hours.", + "Confidence": null, + "CenterX": 200 + }, + { + "PageNumber": 1, + "Top": 1045, + "Left": 282, + "Width": 141, + "Height": 9, + "Text": "Send foe flying 10 feet. He lands on his", + "Confidence": null, + "CenterX": 352.5 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 282, + "Width": 134, + "Height": 9, + "Text": "face. The twisting of his neck causes", + "Confidence": null, + "CenterX": 349 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 282, + "Width": 142, + "Height": 9, + "Text": "nerve damage. He is paralyzed from the", + "Confidence": null, + "CenterX": 353 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 282, + "Width": 42, + "Height": 9, + "Text": "waist down.", + "Confidence": null, + "CenterX": 303 + }, + { + "PageNumber": 1, + "Top": 1045, + "Left": 433, + "Width": 126, + "Height": 9, + "Text": "Powerful strike flips foe into the air", + "Confidence": null, + "CenterX": 496 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 433, + "Width": 130, + "Height": 9, + "Text": "before smashing him to the ground.", + "Confidence": null, + "CenterX": 498 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 433, + "Width": 144, + "Height": 9, + "Text": "Foe breaks both arms and hits his head.", + "Confidence": null, + "CenterX": 505 + }, + { + "PageNumber": 1, + "Top": 1077, + "Left": 433, + "Width": 108, + "Height": 9, + "Text": "Foe is in a coma for 2 months.", + "Confidence": null, + "CenterX": 487 + }, + { + "PageNumber": 1, + "Top": 1045, + "Left": 584, + "Width": 120, + "Height": 9, + "Text": "Savage blow to foe\u0027s head. Foe is", + "Confidence": null, + "CenterX": 644 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 584, + "Width": 143, + "Height": 9, + "Text": "knocked down. He falls into a coma and", + "Confidence": null, + "CenterX": 655.5 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 584, + "Width": 141, + "Height": 9, + "Text": "dies in 12 rounds due to a severed vein.", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 1045, + "Left": 736, + "Width": 142, + "Height": 9, + "Text": "Frightening strike to foe\u0027s head. Temple", + "Confidence": null, + "CenterX": 807 + }, + { + "PageNumber": 1, + "Top": 1056, + "Left": 736, + "Width": 143, + "Height": 9, + "Text": "crushed, neck broken. Foe lands 20 feet", + "Confidence": null, + "CenterX": 807.5 + }, + { + "PageNumber": 1, + "Top": 1066, + "Left": 736, + "Width": 83, + "Height": 9, + "Text": "away. He dies instantly.", + "Confidence": null, + "CenterX": 777.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 258, + "Width": 18, + "Height": 9, + "Text": "(-90)", + "Confidence": null, + "CenterX": 267 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 417, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 421.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 566, + "Width": 9, + "Height": 9, + "Text": "\u2014", + "Confidence": null, + "CenterX": 570.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 709, + "Width": 19, + "Height": 9, + "Text": "(\u002B20)", + "Confidence": null, + "CenterX": 718.5 + }, + { + "PageNumber": 1, + "Top": 1096, + "Left": 860, + "Width": 24, + "Height": 9, + "Text": "3(\u002B20)", + "Confidence": null, + "CenterX": 872 + }, + { + "PageNumber": 1, + "Top": 48, + "Left": 274, + "Width": 437, + "Height": 14, + "Text": "4.12 unbalance critical strike table", + "Confidence": null, + "CenterX": 492.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 205, + "Width": 13, + "Height": 13, + "Text": "A", + "Confidence": null, + "CenterX": 211.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 346, + "Width": 12, + "Height": 13, + "Text": "b", + "Confidence": null, + "CenterX": 352 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 497, + "Width": 15, + "Height": 13, + "Text": "c", + "Confidence": null, + "CenterX": 504.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 646, + "Width": 17, + "Height": 13, + "Text": "d", + "Confidence": null, + "CenterX": 654.5 + }, + { + "PageNumber": 1, + "Top": 81, + "Left": 807, + "Width": 11, + "Height": 13, + "Text": "e", + "Confidence": null, + "CenterX": 812.5 + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/unbalance/pages/page-001.png new file mode 100644 index 0000000..4b4f1ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/unbalance/pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/parsed-cells.json b/src/RolemasterDb.App/import-artifacts/critical/unbalance/parsed-cells.json new file mode 100644 index 0000000..0bd490b --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/unbalance/parsed-cells.json @@ -0,0 +1,6914 @@ +[ + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "A", + "Lines": [ + "You and your foe both stumble.", + "\u002B0H" + ], + "BaseLines": [ + "You and your foe both stumble.", + "\u002B0H" + ], + "RawCellText": "You and your foe both stumble.\n\u002B0H", + "DescriptionText": "You and your foe both stumble.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 105, + "Width": 127, + "Height": 28 + }, + "SourceImagePath": "unbalance/cells/none__a__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 420, + "BoundsWidth": 508, + "BoundsHeight": 112, + "CropLeft": 544, + "CropTop": 388, + "CropWidth": 604, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "B", + "Lines": [ + "You lunge 5 feet past your foe.", + "\u002B0H" + ], + "BaseLines": [ + "You lunge 5 feet past your foe.", + "\u002B0H" + ], + "RawCellText": "You lunge 5 feet past your foe.\n\u002B0H", + "DescriptionText": "You lunge 5 feet past your foe.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 105, + "Width": 144, + "Height": 28 + }, + "SourceImagePath": "unbalance/cells/none__b__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 420, + "BoundsWidth": 576, + "BoundsHeight": 112, + "CropLeft": 1080, + "CropTop": 388, + "CropWidth": 672, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "C", + "Lines": [ + "Try again. What will your friends say?", + "\u002B0H" + ], + "BaseLines": [ + "Try again. What will your friends say?", + "\u002B0H" + ], + "RawCellText": "Try again. What will your friends say?\n\u002B0H", + "DescriptionText": "Try again. What will your friends say?", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 105, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "unbalance/cells/none__c__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 420, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 1684, + "CropTop": 388, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "D", + "Lines": [ + "\u0022You\u0027re not very good, are you?\u0022", + "\u002B1H" + ], + "BaseLines": [ + "\u0022You\u0027re not very good, are you?\u0022", + "\u002B1H" + ], + "RawCellText": "\u0022You\u0027re not very good, are you?\u0022\n\u002B1H", + "DescriptionText": "\u0022You\u0027re not very good, are you?\u0022", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 105, + "Width": 143, + "Height": 28 + }, + "SourceImagePath": "unbalance/cells/none__d__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 420, + "BoundsWidth": 572, + "BoundsHeight": 112, + "CropLeft": 2288, + "CropTop": 388, + "CropWidth": 668, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "01-05", + "ColumnKey": "E", + "Lines": [ + "You made a good sound effect.", + "\u002B2H" + ], + "BaseLines": [ + "You made a good sound effect.", + "\u002B2H" + ], + "RawCellText": "You made a good sound effect.\n\u002B2H", + "DescriptionText": "You made a good sound effect.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 105, + "Width": 147, + "Height": 28 + }, + "SourceImagePath": "unbalance/cells/none__e__01-05.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 420, + "BoundsWidth": 588, + "BoundsHeight": 112, + "CropLeft": 2896, + "CropTop": 388, + "CropWidth": 684, + "CropHeight": 176, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "A", + "Lines": [ + "Foe recognizes this assault from", + "grade school.", + "\u002B0H" + ], + "BaseLines": [ + "Foe recognizes this assault from", + "grade school.", + "\u002B0H" + ], + "RawCellText": "Foe recognizes this assault from\ngrade school.\n\u002B0H", + "DescriptionText": "Foe recognizes this assault from grade school.", + "RawAffixText": "\u002B0H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 0, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B0H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 141, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 564, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 532, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "B", + "Lines": [ + "Your opponent stands firmly in front of", + "you.", + "\u002B1H" + ], + "BaseLines": [ + "Your opponent stands firmly in front of", + "you.", + "\u002B1H" + ], + "RawCellText": "Your opponent stands firmly in front of\nyou.\n\u002B1H", + "DescriptionText": "Your opponent stands firmly in front of you.", + "RawAffixText": "\u002B1H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 1, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B1H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 141, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 564, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 532, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "C", + "Lines": [ + "When your attempt starts to fail, you", + "slip in a punch.", + "\u002B2H" + ], + "BaseLines": [ + "When your attempt starts to fail, you", + "slip in a punch.", + "\u002B2H" + ], + "RawCellText": "When your attempt starts to fail, you\nslip in a punch.\n\u002B2H", + "DescriptionText": "When your attempt starts to fail, you slip in a punch.", + "RawAffixText": "\u002B2H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 2, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B2H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 141, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 564, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 532, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "D", + "Lines": [ + "Your grip is neither firm or effective.", + "Foe breaks free.", + "\u002B3H" + ], + "BaseLines": [ + "Your grip is neither firm or effective.", + "Foe breaks free.", + "\u002B3H" + ], + "RawCellText": "Your grip is neither firm or effective.\nFoe breaks free.\n\u002B3H", + "DescriptionText": "Your grip is neither firm or effective. Foe breaks free.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 141, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 564, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 532, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "06-10", + "ColumnKey": "E", + "Lines": [ + "It is solid, even if randomly placed.", + "\u002B5H" + ], + "BaseLines": [ + "It is solid, even if randomly placed.", + "\u002B5H" + ], + "RawCellText": "It is solid, even if randomly placed.\n\u002B5H", + "DescriptionText": "It is solid, even if randomly placed.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 141, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__06-10.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 564, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 532, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "A", + "Lines": [ + "Powerful strike fails to land solid.", + "It still does some damage.", + "\u002B3H" + ], + "BaseLines": [ + "Powerful strike fails to land solid.", + "It still does some damage.", + "\u002B3H" + ], + "RawCellText": "Powerful strike fails to land solid.\nIt still does some damage.\n\u002B3H", + "DescriptionText": "Powerful strike fails to land solid. It still does some damage.", + "RawAffixText": "\u002B3H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 3, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B3H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 186, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 744, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 712, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "B", + "Lines": [ + "Weak side strike glances off kidneys.", + "It could have been great.", + "\u002B4H" + ], + "BaseLines": [ + "Weak side strike glances off kidneys.", + "It could have been great.", + "\u002B4H" + ], + "RawCellText": "Weak side strike glances off kidneys.\nIt could have been great.\n\u002B4H", + "DescriptionText": "Weak side strike glances off kidneys. It could have been great.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 186, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 744, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 712, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "C", + "Lines": [ + "Knuckle foe\u0027s arm. You will need to do", + "better than this.", + "\u002B5H" + ], + "BaseLines": [ + "Knuckle foe\u0027s arm. You will need to do", + "better than this.", + "\u002B5H" + ], + "RawCellText": "Knuckle foe\u0027s arm. You will need to do\nbetter than this.\n\u002B5H", + "DescriptionText": "Knuckle foe\u0027s arm. You will need to do better than this.", + "RawAffixText": "\u002B5H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 186, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 744, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 712, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "D", + "Lines": [ + "Back strike. It has little imagination. You", + "might as well punch.", + "\u002B6H" + ], + "BaseLines": [ + "Back strike. It has little imagination. You", + "might as well punch.", + "\u002B6H" + ], + "RawCellText": "Back strike. It has little imagination. You\nmight as well punch.\n\u002B6H", + "DescriptionText": "Back strike. It has little imagination. You might as well punch.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 186, + "Width": 145, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 744, + "BoundsWidth": 580, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 712, + "CropWidth": 676, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "11-15", + "ColumnKey": "E", + "Lines": [ + "Strike lands on shoulder blade.", + "\u002B7H" + ], + "BaseLines": [ + "Strike lands on shoulder blade.", + "\u002B7H" + ], + "RawCellText": "Strike lands on shoulder blade.\n\u002B7H", + "DescriptionText": "Strike lands on shoulder blade.", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 186, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__11-15.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 744, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 712, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "A", + "Lines": [ + "Foe seeks to push you away. He", + "lashes out in defensive manner.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Foe seeks to push you away. He", + "lashes out in defensive manner.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Foe seeks to push you away. He\nlashes out in defensive manner.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Foe seeks to push you away. He lashes out in defensive manner.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 232, + "Width": 126, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 928, + "BoundsWidth": 504, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 896, + "CropWidth": 600, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "B", + "Lines": [ + "Glancing side blow. You unbalance your", + "foe. He recovers quickly.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "Glancing side blow. You unbalance your", + "foe. He recovers quickly.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "Glancing side blow. You unbalance your\nfoe. He recovers quickly.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "Glancing side blow. You unbalance your foe. He recovers quickly.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 232, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 928, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 896, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "C", + "Lines": [ + "Strike side. Foe moves back to block", + "your next attack.", + "\u002B5H \u2013 \u03C0" + ], + "BaseLines": [ + "Strike side. Foe moves back to block", + "your next attack.", + "\u002B5H \u2013 \u03C0" + ], + "RawCellText": "Strike side. Foe moves back to block\nyour next attack.\n\u002B5H \u2013 \u03C0", + "DescriptionText": "Strike side. Foe moves back to block your next attack.", + "RawAffixText": "\u002B5H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 232, + "Width": 142, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 928, + "BoundsWidth": 568, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 896, + "CropWidth": 664, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "D", + "Lines": [ + "Blow to foe\u0027s side sends him reeling.", + "Foe checks wound for the damage.", + "\u002B7H \u2013 (-10)" + ], + "BaseLines": [ + "Blow to foe\u0027s side sends him reeling.", + "Foe checks wound for the damage.", + "\u002B7H \u2013 (-10)" + ], + "RawCellText": "Blow to foe\u0027s side sends him reeling.\nFoe checks wound for the damage.\n\u002B7H \u2013 (-10)", + "DescriptionText": "Blow to foe\u0027s side sends him reeling. Foe checks wound for the damage.", + "RawAffixText": "\u002B7H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 232, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 928, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 896, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "16-20", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s side unbalances him and", + "destroys equipment there.", + "\u002B8H \u2013 1(-20)" + ], + "BaseLines": [ + "Blow to foe\u0027s side unbalances him and", + "destroys equipment there.", + "\u002B8H \u2013 1(-20)" + ], + "RawCellText": "Blow to foe\u0027s side unbalances him and\ndestroys equipment there.\n\u002B8H \u2013 1(-20)", + "DescriptionText": "Blow to foe\u0027s side unbalances him and destroys equipment there.", + "RawAffixText": "\u002B8H \u2013 1(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 232, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__16-20.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 928, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 896, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "A", + "Lines": [ + "On line strike, but weak. Foe steps", + "back and feigns an attack to draw", + "off your assault.", + "\u002B4H \u2013 \u03C0" + ], + "BaseLines": [ + "On line strike, but weak. Foe steps", + "back and feigns an attack to draw", + "off your assault.", + "\u002B4H \u2013 \u03C0" + ], + "RawCellText": "On line strike, but weak. Foe steps\nback and feigns an attack to draw\noff your assault.\n\u002B4H \u2013 \u03C0", + "DescriptionText": "On line strike, but weak. Foe steps back and feigns an attack to draw off your assault.", + "RawAffixText": "\u002B4H \u2013 \u03C0", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 279, + "Width": 126, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 1116, + "BoundsWidth": 504, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 1084, + "CropWidth": 600, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "B", + "Lines": [ + "Your strike makes foe\u0027s footing", + "uncertain. He pushes you clear and", + "begins to right himself.", + "\u002B5H \u2013 1(-20)" + ], + "BaseLines": [ + "Your strike makes foe\u0027s footing", + "uncertain. He pushes you clear and", + "begins to right himself.", + "\u002B5H \u2013 1(-20)" + ], + "RawCellText": "Your strike makes foe\u0027s footing\nuncertain. He pushes you clear and\nbegins to right himself.\n\u002B5H \u2013 1(-20)", + "DescriptionText": "Your strike makes foe\u0027s footing uncertain. He pushes you clear and begins to right himself.", + "RawAffixText": "\u002B5H \u2013 1(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 279, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 1116, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 1084, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "C", + "Lines": [ + "Shot to foe\u0027s chest. His lungs hesitate.", + "He coughs it off and regains his", + "footing.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Shot to foe\u0027s chest. His lungs hesitate.", + "He coughs it off and regains his", + "footing.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Shot to foe\u0027s chest. His lungs hesitate.\nHe coughs it off and regains his\nfooting.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Shot to foe\u0027s chest. His lungs hesitate. He coughs it off and regains his footing.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 279, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1116, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 1084, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "D", + "Lines": [ + "Quick shot to chest causes foe to", + "hesitate in pain.He still knows you\u0027re", + "there.", + "\u002B8H \u2013 \u2211" + ], + "BaseLines": [ + "Quick shot to chest causes foe to", + "hesitate in pain.He still knows you\u0027re", + "there.", + "\u002B8H \u2013 \u2211" + ], + "RawCellText": "Quick shot to chest causes foe to\nhesitate in pain.He still knows you\u0027re\nthere.\n\u002B8H \u2013 \u2211", + "DescriptionText": "Quick shot to chest causes foe to hesitate in pain.He still knows you\u0027re there.", + "RawAffixText": "\u002B8H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 279, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1116, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 1084, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "21-35", + "ColumnKey": "E", + "Lines": [ + "Crack! Foe\u0027s rib reports damage to him", + "in an unsubtle way. He is in pain.", + "\u002B9H \u2013 \u2211 \u2013 1(-10)" + ], + "BaseLines": [ + "Crack! Foe\u0027s rib reports damage to him", + "in an unsubtle way. He is in pain.", + "\u002B9H \u2013 \u2211 \u2013 1(-10)" + ], + "RawCellText": "Crack! Foe\u0027s rib reports damage to him\nin an unsubtle way. He is in pain.\n\u002B9H \u2013 \u2211 \u2013 1(-10)", + "DescriptionText": "Crack! Foe\u0027s rib reports damage to him in an unsubtle way. He is in pain.", + "RawAffixText": "\u002B9H \u2013 \u2211 \u2013 1(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 279, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__21-35.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1116, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 1084, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "A", + "Lines": [ + "Light bash breaks foe\u0027s focus. You", + "have the initiative next round.", + "\u002B4H" + ], + "BaseLines": [ + "Light bash breaks foe\u0027s focus. You", + "have the initiative next round.", + "\u002B4H" + ], + "RawCellText": "Light bash breaks foe\u0027s focus. You\nhave the initiative next round.\n\u002B4H", + "DescriptionText": "Light bash breaks foe\u0027s focus. You have the initiative next round.", + "RawAffixText": "\u002B4H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 4, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B4H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 334, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__a__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 1336, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 544, + "CropTop": 1304, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "B", + "Lines": [ + "You salvage your attack by tripping foe.", + "You have the initiative next round.", + "\u002B5H \u2013 2(-5)" + ], + "BaseLines": [ + "You salvage your attack by tripping foe.", + "You have the initiative next round.", + "\u002B5H \u2013 2(-5)" + ], + "RawCellText": "You salvage your attack by tripping foe.\nYou have the initiative next round.\n\u002B5H \u2013 2(-5)", + "DescriptionText": "You salvage your attack by tripping foe. You have the initiative next round.", + "RawAffixText": "\u002B5H \u2013 2(-5)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -5, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-5)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 334, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__b__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 1336, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 1080, + "CropTop": 1304, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "C", + "Lines": [ + "Grab foe\u0027s shoulder, while you bring", + "your knee up to knock him over.", + "\u002B5H \u2013 1(-40)" + ], + "BaseLines": [ + "Grab foe\u0027s shoulder, while you bring", + "your knee up to knock him over.", + "\u002B5H \u2013 1(-40)" + ], + "RawCellText": "Grab foe\u0027s shoulder, while you bring\nyour knee up to knock him over.\n\u002B5H \u2013 1(-40)", + "DescriptionText": "Grab foe\u0027s shoulder, while you bring your knee up to knock him over.", + "RawAffixText": "\u002B5H \u2013 1(-40)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -40, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-40)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 334, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__c__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1336, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1684, + "CropTop": 1304, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "D", + "Lines": [ + "Strike to calf. Wound impairs foe\u0027s", + "movements. You have the initiative.", + "\u002B7H \u2013 (-25)" + ], + "BaseLines": [ + "Strike to calf. Wound impairs foe\u0027s", + "movements. You have the initiative.", + "\u002B7H \u2013 (-25)" + ], + "RawCellText": "Strike to calf. Wound impairs foe\u0027s\nmovements. You have the initiative.\n\u002B7H \u2013 (-25)", + "DescriptionText": "Strike to calf. Wound impairs foe\u0027s movements. You have the initiative.", + "RawAffixText": "\u002B7H \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 334, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__d__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1336, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 2288, + "CropTop": 1304, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "36-45", + "ColumnKey": "E", + "Lines": [ + "Hard glancing blow to foe\u0027s leg.", + "with leg armor: \u002B12H", + "w/o leg armor: \u002B8H \u2013 2\u2211" + ], + "BaseLines": [ + "Hard glancing blow to foe\u0027s leg." + ], + "RawCellText": "Hard glancing blow to foe\u0027s leg.", + "DescriptionText": "Hard glancing blow to foe\u0027s leg.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B12H", + "DescriptionText": "", + "RawAffixText": "\u002B12H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B8H \u2013 2\u2211", + "DescriptionText": "", + "RawAffixText": "\u002B8H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 334, + "Width": 148, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__e__36-45.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1336, + "BoundsWidth": 592, + "BoundsHeight": 200, + "CropLeft": 2896, + "CropTop": 1304, + "CropWidth": 688, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "A", + "Lines": [ + "Attempt to spin foe\u0027s around", + "almost succeeds. Weak grip to side.", + "\u002B5H \u2013 \u03C0(-10)" + ], + "BaseLines": [ + "Attempt to spin foe\u0027s around", + "almost succeeds. Weak grip to side.", + "\u002B5H \u2013 \u03C0(-10)" + ], + "RawCellText": "Attempt to spin foe\u0027s around\nalmost succeeds. Weak grip to side.\n\u002B5H \u2013 \u03C0(-10)", + "DescriptionText": "Attempt to spin foe\u0027s around almost succeeds. Weak grip to side.", + "RawAffixText": "\u002B5H \u2013 \u03C0(-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 390, + "Width": 130, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 1560, + "BoundsWidth": 520, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 1528, + "CropWidth": 616, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "B", + "Lines": [ + "Your assault threatens to succeed.", + "Your foe goes defensive to avoid your", + "attack.", + "\u002B5H \u2013 \u03C0(-20)" + ], + "BaseLines": [ + "Your assault threatens to succeed.", + "Your foe goes defensive to avoid your", + "attack.", + "\u002B5H \u2013 \u03C0(-20)" + ], + "RawCellText": "Your assault threatens to succeed.\nYour foe goes defensive to avoid your\nattack.\n\u002B5H \u2013 \u03C0(-20)", + "DescriptionText": "Your assault threatens to succeed. Your foe goes defensive to avoid your attack.", + "RawAffixText": "\u002B5H \u2013 \u03C0(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 390, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 1560, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 1528, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "C", + "Lines": [ + "Boom! Foe is hit in the face. He reels", + "back 5 feet trying to regain his footing.", + "His guard is down.", + "\u002B6H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Boom! Foe is hit in the face. He reels", + "back 5 feet trying to regain his footing.", + "His guard is down.", + "\u002B6H \u2013 \u2211\u220F" + ], + "RawCellText": "Boom! Foe is hit in the face. He reels\nback 5 feet trying to regain his footing.\nHis guard is down.\n\u002B6H \u2013 \u2211\u220F", + "DescriptionText": "Boom! Foe is hit in the face. He reels back 5 feet trying to regain his footing. His guard is down.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 390, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1560, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 1528, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "D", + "Lines": [ + "Double strike to both arms breaks foe\u0027s", + "defense. He is open to attack and is", + "having trouble recovering.", + "\u002B8H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Double strike to both arms breaks foe\u0027s", + "defense. He is open to attack and is", + "having trouble recovering.", + "\u002B8H \u2013 \u2211\u220F" + ], + "RawCellText": "Double strike to both arms breaks foe\u0027s\ndefense. He is open to attack and is\nhaving trouble recovering.\n\u002B8H \u2013 \u2211\u220F", + "DescriptionText": "Double strike to both arms breaks foe\u0027s defense. He is open to attack and is having trouble recovering.", + "RawAffixText": "\u002B8H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 390, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1560, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 1528, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "46-50", + "ColumnKey": "E", + "Lines": [ + "Shot in back staggers foe for an instant.", + "His guard drops and he is sadly", + "unprotected.", + "\u002B12H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Shot in back staggers foe for an instant.", + "His guard drops and he is sadly", + "unprotected.", + "\u002B12H \u2013 \u2211\u220F" + ], + "RawCellText": "Shot in back staggers foe for an instant.\nHis guard drops and he is sadly\nunprotected.\n\u002B12H \u2013 \u2211\u220F", + "DescriptionText": "Shot in back staggers foe for an instant. His guard drops and he is sadly unprotected.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 390, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__46-50.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1560, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 1528, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "A", + "Lines": [ + "Firm press to foe\u0027s chest. He give", + "ground happily. Watch his weapon.", + "\u002B5H \u2013 \u03C0(-20)" + ], + "BaseLines": [ + "Firm press to foe\u0027s chest. He give", + "ground happily. Watch his weapon.", + "\u002B5H \u2013 \u03C0(-20)" + ], + "RawCellText": "Firm press to foe\u0027s chest. He give\nground happily. Watch his weapon.\n\u002B5H \u2013 \u03C0(-20)", + "DescriptionText": "Firm press to foe\u0027s chest. He give ground happily. Watch his weapon.", + "RawAffixText": "\u002B5H \u2013 \u03C0(-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 447, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 1788, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 1756, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "B", + "Lines": [ + "Grab foe and bring knee up to cause", + "damage. Foe blocks some of the force.", + "\u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Grab foe and bring knee up to cause", + "damage. Foe blocks some of the force.", + "\u002B5H \u2013 \u2211" + ], + "RawCellText": "Grab foe and bring knee up to cause\ndamage. Foe blocks some of the force.\n\u002B5H \u2013 \u2211", + "DescriptionText": "Grab foe and bring knee up to cause damage. Foe blocks some of the force.", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 447, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 1788, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 1756, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "C", + "Lines": [ + "Push foe\u0027s knee backwards. Foe", + "struggles to avoid the pain.", + "\u002B6H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Push foe\u0027s knee backwards. Foe", + "struggles to avoid the pain.", + "\u002B6H \u2013 \u2211\u220F" + ], + "RawCellText": "Push foe\u0027s knee backwards. Foe\nstruggles to avoid the pain.\n\u002B6H \u2013 \u2211\u220F", + "DescriptionText": "Push foe\u0027s knee backwards. Foe struggles to avoid the pain.", + "RawAffixText": "\u002B6H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 447, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1788, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 1756, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "D", + "Lines": [ + "Strike to chest takes wind out of foe.", + "Foe\u0027s guard goes down.", + "\u002B10H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Strike to chest takes wind out of foe.", + "Foe\u0027s guard goes down.", + "\u002B10H \u2013 \u2211\u220F" + ], + "RawCellText": "Strike to chest takes wind out of foe.\nFoe\u0027s guard goes down.\n\u002B10H \u2013 \u2211\u220F", + "DescriptionText": "Strike to chest takes wind out of foe. Foe\u0027s guard goes down.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 447, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1788, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 1756, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "51-55", + "ColumnKey": "E", + "Lines": [ + "Knock foe over as if he was a sack of", + "beans. He hits and starts to stand up.", + "\u002B12H \u2013 \u2211\u220F" + ], + "BaseLines": [ + "Knock foe over as if he was a sack of", + "beans. He hits and starts to stand up.", + "\u002B12H \u2013 \u2211\u220F" + ], + "RawCellText": "Knock foe over as if he was a sack of\nbeans. He hits and starts to stand up.\n\u002B12H \u2013 \u2211\u220F", + "DescriptionText": "Knock foe over as if he was a sack of beans. He hits and starts to stand up.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 447, + "Width": 147, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__51-55.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1788, + "BoundsWidth": 588, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 1756, + "CropWidth": 684, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "A", + "Lines": [ + "Strike thigh. Foe is pushed back.", + "with thigh armor: \u002B7H", + "w/o thigh armor: \u002B5H \u2013 \u2211" + ], + "BaseLines": [ + "Strike thigh. Foe is pushed back." + ], + "RawCellText": "Strike thigh. Foe is pushed back.", + "DescriptionText": "Strike thigh. Foe is pushed back.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_thigh_armor", + "ConditionText": "with thigh armor", + "RawText": "with thigh armor: \u002B7H", + "DescriptionText": "", + "RawAffixText": "\u002B7H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_thigh_armor", + "ConditionText": "w/o thigh armor", + "RawText": "w/o thigh armor: \u002B5H \u2013 \u2211", + "DescriptionText": "", + "RawAffixText": "\u002B5H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 5, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B5H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 493, + "Width": 128, + "Height": 48 + }, + "SourceImagePath": "unbalance/cells/none__a__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 1972, + "BoundsWidth": 512, + "BoundsHeight": 192, + "CropLeft": 544, + "CropTop": 1940, + "CropWidth": 608, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "B", + "Lines": [ + "Foe bumps his thigh while blocking your", + "attack. He steps back.", + "\u002B6H \u2013 \u03C0(-30)" + ], + "BaseLines": [ + "Foe bumps his thigh while blocking your", + "attack. He steps back.", + "\u002B6H \u2013 \u03C0(-30)" + ], + "RawCellText": "Foe bumps his thigh while blocking your\nattack. He steps back.\n\u002B6H \u2013 \u03C0(-30)", + "DescriptionText": "Foe bumps his thigh while blocking your attack. He steps back.", + "RawAffixText": "\u002B6H \u2013 \u03C0(-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "must_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u03C0" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 493, + "Width": 146, + "Height": 48 + }, + "SourceImagePath": "unbalance/cells/none__b__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 1972, + "BoundsWidth": 584, + "BoundsHeight": 192, + "CropLeft": 1080, + "CropTop": 1940, + "CropWidth": 680, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "C", + "Lines": [ + "Skipping calf strike. Foe does not give", + "ground.", + "with leg armor: \u002B9H", + "w/o leg armor: \u002B7H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Skipping calf strike. Foe does not give", + "ground." + ], + "RawCellText": "Skipping calf strike. Foe does not give\nground.", + "DescriptionText": "Skipping calf strike. Foe does not give ground.", + "RawAffixText": null, + "Effects": [], + "Branches": [ + { + "BranchKind": "conditional", + "ConditionKey": "with_leg_armor", + "ConditionText": "with leg armor", + "RawText": "with leg armor: \u002B9H", + "DescriptionText": "", + "RawAffixText": "\u002B9H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + } + ], + "SortOrder": 1 + }, + { + "BranchKind": "conditional", + "ConditionKey": "without_leg_armor", + "ConditionText": "w/o leg armor", + "RawText": "w/o leg armor: \u002B7H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "SortOrder": 2 + } + ], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 493, + "Width": 144, + "Height": 48 + }, + "SourceImagePath": "unbalance/cells/none__c__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 1972, + "BoundsWidth": 576, + "BoundsHeight": 192, + "CropLeft": 1684, + "CropTop": 1940, + "CropWidth": 672, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "D", + "Lines": [ + "Miss foe\u0027s side and strike his thigh. You", + "have initiative for 3 rounds.", + "\u002B12H \u2013 2\u2211" + ], + "BaseLines": [ + "Miss foe\u0027s side and strike his thigh. You", + "have initiative for 3 rounds.", + "\u002B12H \u2013 2\u2211" + ], + "RawCellText": "Miss foe\u0027s side and strike his thigh. You\nhave initiative for 3 rounds.\n\u002B12H \u2013 2\u2211", + "DescriptionText": "Miss foe\u0027s side and strike his thigh. You have initiative for 3 rounds.", + "RawAffixText": "\u002B12H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 493, + "Width": 144, + "Height": 48 + }, + "SourceImagePath": "unbalance/cells/none__d__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 1972, + "BoundsWidth": 576, + "BoundsHeight": 192, + "CropLeft": 2288, + "CropTop": 1940, + "CropWidth": 672, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "56-60", + "ColumnKey": "E", + "Lines": [ + "Strike causes foe to fumble his stride. He", + "almost falls down. Foe is recovering.", + "\u002B14H \u2013 3\u2211" + ], + "BaseLines": [ + "Strike causes foe to fumble his stride. He", + "almost falls down. Foe is recovering.", + "\u002B14H \u2013 3\u2211" + ], + "RawCellText": "Strike causes foe to fumble his stride. He\nalmost falls down. Foe is recovering.\n\u002B14H \u2013 3\u2211", + "DescriptionText": "Strike causes foe to fumble his stride. He almost falls down. Foe is recovering.", + "RawAffixText": "\u002B14H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 493, + "Width": 148, + "Height": 48 + }, + "SourceImagePath": "unbalance/cells/none__e__56-60.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 1972, + "BoundsWidth": 592, + "BoundsHeight": 192, + "CropLeft": 2896, + "CropTop": 1940, + "CropWidth": 688, + "CropHeight": 256, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "A", + "Lines": [ + "Foe\u0027s arm is pinned for a moment.", + "He recovers by twisting you off.", + "\u002B6H \u2013 \u2211" + ], + "BaseLines": [ + "Foe\u0027s arm is pinned for a moment.", + "He recovers by twisting you off.", + "\u002B6H \u2013 \u2211" + ], + "RawCellText": "Foe\u0027s arm is pinned for a moment.\nHe recovers by twisting you off.\n\u002B6H \u2013 \u2211", + "DescriptionText": "Foe\u0027s arm is pinned for a moment. He recovers by twisting you off.", + "RawAffixText": "\u002B6H \u2013 \u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 549, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 2196, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 2164, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "B", + "Lines": [ + "Bend weapon arm in the wrong", + "direction. Foe drops his weapon.", + "\u002B6H" + ], + "BaseLines": [ + "Bend weapon arm in the wrong", + "direction. Foe drops his weapon.", + "\u002B6H" + ], + "RawCellText": "Bend weapon arm in the wrong\ndirection. Foe drops his weapon.\n\u002B6H", + "DescriptionText": "Bend weapon arm in the wrong direction. Foe drops his weapon.", + "RawAffixText": "\u002B6H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 549, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 2196, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 2164, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "C", + "Lines": [ + "Excellent placement. Strike to weapon", + "arm disarms foe. Foe is in great peril.", + "\u002B6H \u2013 2\u2211" + ], + "BaseLines": [ + "Excellent placement. Strike to weapon", + "arm disarms foe. Foe is in great peril.", + "\u002B6H \u2013 2\u2211" + ], + "RawCellText": "Excellent placement. Strike to weapon\narm disarms foe. Foe is in great peril.\n\u002B6H \u2013 2\u2211", + "DescriptionText": "Excellent placement. Strike to weapon arm disarms foe. Foe is in great peril.", + "RawAffixText": "\u002B6H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 549, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2196, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 2164, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "D", + "Lines": [ + "You catch foe\u0027s counter thrust and", + "disarm him with a bash to the arm.", + "\u002B7H \u2013 2\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "You catch foe\u0027s counter thrust and", + "disarm him with a bash to the arm.", + "\u002B7H \u2013 2\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "You catch foe\u0027s counter thrust and\ndisarm him with a bash to the arm.\n\u002B7H \u2013 2\u2211 \u2013 (\u002B20)", + "DescriptionText": "You catch foe\u0027s counter thrust and disarm him with a bash to the arm.", + "RawAffixText": "\u002B7H \u2013 2\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 549, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2196, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 2164, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "61-65", + "ColumnKey": "E", + "Lines": [ + "Bash foe in shoulder making him spin.", + "You push him for good measure.", + "\u002B13H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Bash foe in shoulder making him spin.", + "You push him for good measure.", + "\u002B13H \u2013 2\u2211\u220F" + ], + "RawCellText": "Bash foe in shoulder making him spin.\nYou push him for good measure.\n\u002B13H \u2013 2\u2211\u220F", + "DescriptionText": "Bash foe in shoulder making him spin. You push him for good measure.", + "RawAffixText": "\u002B13H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 549, + "Width": 148, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__61-65.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2196, + "BoundsWidth": 592, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 2164, + "CropWidth": 688, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "A", + "Lines": [ + "Shoulder strike sends foe spinning.", + "He comes all the way around before", + "stopping. Well placed shot.", + "\u002B7H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Shoulder strike sends foe spinning.", + "He comes all the way around before", + "stopping. Well placed shot.", + "\u002B7H \u2013 2\u2211\u220F" + ], + "RawCellText": "Shoulder strike sends foe spinning.\nHe comes all the way around before\nstopping. Well placed shot.\n\u002B7H \u2013 2\u2211\u220F", + "DescriptionText": "Shoulder strike sends foe spinning. He comes all the way around before stopping. Well placed shot.", + "RawAffixText": "\u002B7H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 594, + "Width": 129, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 2376, + "BoundsWidth": 516, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 2344, + "CropWidth": 612, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "B", + "Lines": [ + "Stirke to foe\u0027s elbow numbs it. He drops", + "his weapon and grips his elbow. He", + "forgets you are still attacking him.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "Stirke to foe\u0027s elbow numbs it. He drops", + "his weapon and grips his elbow. He", + "forgets you are still attacking him.", + "\u002B8H \u2013 2\u2211\u220F" + ], + "RawCellText": "Stirke to foe\u0027s elbow numbs it. He drops\nhis weapon and grips his elbow. He\nforgets you are still attacking him.\n\u002B8H \u2013 2\u2211\u220F", + "DescriptionText": "Stirke to foe\u0027s elbow numbs it. He drops his weapon and grips his elbow. He forgets you are still attacking him.", + "RawAffixText": "\u002B8H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 594, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 2376, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 2344, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s leg sends him down.", + "Foe\u0027s knee is broken and his doom is at", + "hand. He falls to the ground helpless.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)" + ], + "BaseLines": [ + "Strike to foe\u0027s leg sends him down.", + "Foe\u0027s knee is broken and his doom is at", + "hand. He falls to the ground helpless.", + "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)" + ], + "RawCellText": "Strike to foe\u0027s leg sends him down.\nFoe\u0027s knee is broken and his doom is at\nhand. He falls to the ground helpless.\n\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "DescriptionText": "Strike to foe\u0027s leg sends him down. Foe\u0027s knee is broken and his doom is at hand. He falls to the ground helpless.", + "RawAffixText": "\u002B9H \u2013 3\u2211\u220F \u2013 (-90)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 594, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2376, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 2344, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "D", + "Lines": [ + "Hard strike to head. If foe has no helm,", + "he is knocked out for 24 hours. If he has", + "a helm, he is knocked back 10 feet.", + "6\u2211" + ], + "BaseLines": [ + "Hard strike to head. If foe has no helm,", + "he is knocked out for 24 hours. If he has", + "a helm, he is knocked back 10 feet.", + "6\u2211" + ], + "RawCellText": "Hard strike to head. If foe has no helm,\nhe is knocked out for 24 hours. If he has\na helm, he is knocked back 10 feet.\n6\u2211", + "DescriptionText": "Hard strike to head. If foe has no helm, he is knocked out for 24 hours. If he has a helm, he is knocked back 10 feet.", + "RawAffixText": "6\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 594, + "Width": 146, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2376, + "BoundsWidth": 584, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 2344, + "CropWidth": 680, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "66", + "ColumnKey": "E", + "Lines": [ + "Knock foe back with a blow to the jaw.", + "Foe loses balance and falls. he hits his", + "head and goes unconscious.", + "\u002B30H" + ], + "BaseLines": [ + "Knock foe back with a blow to the jaw.", + "Foe loses balance and falls. he hits his", + "head and goes unconscious.", + "\u002B30H" + ], + "RawCellText": "Knock foe back with a blow to the jaw.\nFoe loses balance and falls. he hits his\nhead and goes unconscious.\n\u002B30H", + "DescriptionText": "Knock foe back with a blow to the jaw. Foe loses balance and falls. he hits his head and goes unconscious.", + "RawAffixText": "\u002B30H", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 30, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B30H" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 594, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__66.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2376, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 2344, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "A", + "Lines": [ + "Hasty press upon foe\u0027s chest", + "produces excellent results. Foe is", + "unbalanced.", + "\u002B6H \u2013 2(-50)" + ], + "BaseLines": [ + "Hasty press upon foe\u0027s chest", + "produces excellent results. Foe is", + "unbalanced.", + "\u002B6H \u2013 2(-50)" + ], + "RawCellText": "Hasty press upon foe\u0027s chest\nproduces excellent results. Foe is\nunbalanced.\n\u002B6H \u2013 2(-50)", + "DescriptionText": "Hasty press upon foe\u0027s chest produces excellent results. Foe is unbalanced.", + "RawAffixText": "\u002B6H \u2013 2(-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 6, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B6H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 651, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 2604, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 2572, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "B", + "Lines": [ + "Grab loose piece of foe\u0027s garments and", + "use it to throw him around. Foe is", + "confused.", + "\u002B7H - \u220F" + ], + "BaseLines": [ + "Grab loose piece of foe\u0027s garments and", + "use it to throw him around. Foe is", + "confused.", + "\u002B7H - \u220F" + ], + "RawCellText": "Grab loose piece of foe\u0027s garments and\nuse it to throw him around. Foe is\nconfused.\n\u002B7H - \u220F", + "DescriptionText": "Grab loose piece of foe\u0027s garments and use it to throw him around. Foe is confused.", + "RawAffixText": "\u002B7H - \u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 651, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 2604, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 2572, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s ribs. Foe\u0027s ribs crack and", + "foe shows the pain. His war effort is", + "impaired.", + "\u002B8H \u2013 2\u2211 \u2013 (-20)" + ], + "BaseLines": [ + "Strike to foe\u0027s ribs. Foe\u0027s ribs crack and", + "foe shows the pain. His war effort is", + "impaired.", + "\u002B8H \u2013 2\u2211 \u2013 (-20)" + ], + "RawCellText": "Strike to foe\u0027s ribs. Foe\u0027s ribs crack and\nfoe shows the pain. His war effort is\nimpaired.\n\u002B8H \u2013 2\u2211 \u2013 (-20)", + "DescriptionText": "Strike to foe\u0027s ribs. Foe\u0027s ribs crack and foe shows the pain. His war effort is impaired.", + "RawAffixText": "\u002B8H \u2013 2\u2211 \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 8, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B8H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 651, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2604, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 2572, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "D", + "Lines": [ + "Break foe\u0027s collar bone. Spin foe", + "around. He is disoriented and out of", + "position.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-25)" + ], + "BaseLines": [ + "Break foe\u0027s collar bone. Spin foe", + "around. He is disoriented and out of", + "position.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-25)" + ], + "RawCellText": "Break foe\u0027s collar bone. Spin foe\naround. He is disoriented and out of\nposition.\n\u002B10H \u2013 \u2211\u220F \u2013 (-25)", + "DescriptionText": "Break foe\u0027s collar bone. Spin foe around. He is disoriented and out of position.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 651, + "Width": 143, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2604, + "BoundsWidth": 572, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 2572, + "CropWidth": 668, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "67-70", + "ColumnKey": "E", + "Lines": [ + "Shoulder strike blasts foe down. He lands", + "on his stomach and tries to roll over.", + "Minor fracture.", + "2\u2211\u220F \u2013 (-10)" + ], + "BaseLines": [ + "Shoulder strike blasts foe down. He lands", + "on his stomach and tries to roll over.", + "Minor fracture.", + "2\u2211\u220F \u2013 (-10)" + ], + "RawCellText": "Shoulder strike blasts foe down. He lands\non his stomach and tries to roll over.\nMinor fracture.\n2\u2211\u220F \u2013 (-10)", + "DescriptionText": "Shoulder strike blasts foe down. He lands on his stomach and tries to roll over. Minor fracture.", + "RawAffixText": "2\u2211\u220F \u2013 (-10)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 651, + "Width": 149, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__67-70.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2604, + "BoundsWidth": 596, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 2572, + "CropWidth": 692, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "A", + "Lines": [ + "Hammer foe\u0027s lower leg. He has", + "trouble standing, but manages.", + "\u002B7H \u2013 2\u2211" + ], + "BaseLines": [ + "Hammer foe\u0027s lower leg. He has", + "trouble standing, but manages.", + "\u002B7H \u2013 2\u2211" + ], + "RawCellText": "Hammer foe\u0027s lower leg. He has\ntrouble standing, but manages.\n\u002B7H \u2013 2\u2211", + "DescriptionText": "Hammer foe\u0027s lower leg. He has trouble standing, but manages.", + "RawAffixText": "\u002B7H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 7, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B7H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 708, + "Width": 127, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 2832, + "BoundsWidth": 508, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 2800, + "CropWidth": 604, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "B", + "Lines": [ + "Solid damage to foe\u0027s calf. His attempts", + "to avoid the pain make him an easier", + "target.", + "\u002B9H \u2013 (-10)" + ], + "BaseLines": [ + "Solid damage to foe\u0027s calf. His attempts", + "to avoid the pain make him an easier", + "target.", + "\u002B9H \u2013 (-10)" + ], + "RawCellText": "Solid damage to foe\u0027s calf. His attempts\nto avoid the pain make him an easier\ntarget.\n\u002B9H \u2013 (-10)", + "DescriptionText": "Solid damage to foe\u0027s calf. His attempts to avoid the pain make him an easier target.", + "RawAffixText": "\u002B9H \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 708, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 2832, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 2800, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "C", + "Lines": [ + "Bruise foe\u0027s leg. Muscles suffer damage", + "and foe limps back from your", + "reach.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-20)" + ], + "BaseLines": [ + "Bruise foe\u0027s leg. Muscles suffer damage", + "and foe limps back from your", + "reach.", + "\u002B10H \u2013 \u2211\u220F \u2013 (-20)" + ], + "RawCellText": "Bruise foe\u0027s leg. Muscles suffer damage\nand foe limps back from your\nreach.\n\u002B10H \u2013 \u2211\u220F \u2013 (-20)", + "DescriptionText": "Bruise foe\u0027s leg. Muscles suffer damage and foe limps back from your reach.", + "RawAffixText": "\u002B10H \u2013 \u2211\u220F \u2013 (-20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 708, + "Width": 145, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 2832, + "BoundsWidth": 580, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 2800, + "CropWidth": 676, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "D", + "Lines": [ + "Lift foe up into the air. You send him", + "sprawling on the ground. He drops his", + "weapon.", + "\u002B12H \u2013 \u2211\u220F \u2013(-75)" + ], + "BaseLines": [ + "Lift foe up into the air. You send him", + "sprawling on the ground. He drops his", + "weapon.", + "\u002B12H \u2013 \u2211\u220F \u2013(-75)" + ], + "RawCellText": "Lift foe up into the air. You send him\nsprawling on the ground. He drops his\nweapon.\n\u002B12H \u2013 \u2211\u220F \u2013(-75)", + "DescriptionText": "Lift foe up into the air. You send him sprawling on the ground. He drops his weapon.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F \u2013(-75)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -75, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-75)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 708, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 2832, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 2800, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "71-75", + "ColumnKey": "E", + "Lines": [ + "Knock foe down with a blow to the thigh.", + "He lands on his wespon and takes some", + "time to get off it.", + "\u002B15H \u2013 3\u2211\u220F" + ], + "BaseLines": [ + "Knock foe down with a blow to the thigh.", + "He lands on his wespon and takes some", + "time to get off it.", + "\u002B15H \u2013 3\u2211\u220F" + ], + "RawCellText": "Knock foe down with a blow to the thigh.\nHe lands on his wespon and takes some\ntime to get off it.\n\u002B15H \u2013 3\u2211\u220F", + "DescriptionText": "Knock foe down with a blow to the thigh. He lands on his wespon and takes some time to get off it.", + "RawAffixText": "\u002B15H \u2013 3\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 708, + "Width": 148, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__71-75.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 2832, + "BoundsWidth": 592, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 2800, + "CropWidth": 688, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "A", + "Lines": [ + "Blow to foe\u0027s shield side. If foe has", + "a shield, it is torn away.", + "\u002B12H \u2013 2\u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s shield side. If foe has", + "a shield, it is torn away.", + "\u002B12H \u2013 2\u2211" + ], + "RawCellText": "Blow to foe\u0027s shield side. If foe has\na shield, it is torn away.\n\u002B12H \u2013 2\u2211", + "DescriptionText": "Blow to foe\u0027s shield side. If foe has a shield, it is torn away.", + "RawAffixText": "\u002B12H \u2013 2\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 763, + "Width": 127, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__a__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 3052, + "BoundsWidth": 508, + "BoundsHeight": 156, + "CropLeft": 544, + "CropTop": 3020, + "CropWidth": 604, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "B", + "Lines": [ + "Grab foe\u0027s shield arm for leverage. You", + "treat it badly, trying to unbalance foe.", + "\u002B10H \u2013 2\u2211 \u2013 (-10)" + ], + "BaseLines": [ + "Grab foe\u0027s shield arm for leverage. You", + "treat it badly, trying to unbalance foe.", + "\u002B10H \u2013 2\u2211 \u2013 (-10)" + ], + "RawCellText": "Grab foe\u0027s shield arm for leverage. You\ntreat it badly, trying to unbalance foe.\n\u002B10H \u2013 2\u2211 \u2013 (-10)", + "DescriptionText": "Grab foe\u0027s shield arm for leverage. You treat it badly, trying to unbalance foe.", + "RawAffixText": "\u002B10H \u2013 2\u2211 \u2013 (-10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 763, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__b__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3052, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 1080, + "CropTop": 3020, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "C", + "Lines": [ + "Heavy blow to foe\u0027s weapon arm. Mild", + "fracture. Foe is knocked back 5 feet.", + "\u002B11H \u2013 3\u2211 \u2013 (-25)" + ], + "BaseLines": [ + "Heavy blow to foe\u0027s weapon arm. Mild", + "fracture. Foe is knocked back 5 feet.", + "\u002B11H \u2013 3\u2211 \u2013 (-25)" + ], + "RawCellText": "Heavy blow to foe\u0027s weapon arm. Mild\nfracture. Foe is knocked back 5 feet.\n\u002B11H \u2013 3\u2211 \u2013 (-25)", + "DescriptionText": "Heavy blow to foe\u0027s weapon arm. Mild fracture. Foe is knocked back 5 feet.", + "RawAffixText": "\u002B11H \u2013 3\u2211 \u2013 (-25)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -25, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-25)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 763, + "Width": 143, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__c__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3052, + "BoundsWidth": 572, + "BoundsHeight": 156, + "CropLeft": 1684, + "CropTop": 3020, + "CropWidth": 668, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "D", + "Lines": [ + "Sweep foe to the side and knock him", + "over. He breaks his ankle.", + "\u002B11H \u2013 (-50)" + ], + "BaseLines": [ + "Sweep foe to the side and knock him", + "over. He breaks his ankle.", + "\u002B11H \u2013 (-50)" + ], + "RawCellText": "Sweep foe to the side and knock him\nover. He breaks his ankle.\n\u002B11H \u2013 (-50)", + "DescriptionText": "Sweep foe to the side and knock him over. He breaks his ankle.", + "RawAffixText": "\u002B11H \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 11, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B11H" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 763, + "Width": 144, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__d__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3052, + "BoundsWidth": 576, + "BoundsHeight": 156, + "CropLeft": 2288, + "CropTop": 3020, + "CropWidth": 672, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "76-80", + "ColumnKey": "E", + "Lines": [ + "Strike to foe\u0027s shield arm. Foe stumbles 3", + "feet and falls down. Foe is disarmed.", + "\u002B15H \u2013 4\u2211\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s shield arm. Foe stumbles 3", + "feet and falls down. Foe is disarmed.", + "\u002B15H \u2013 4\u2211\u220F" + ], + "RawCellText": "Strike to foe\u0027s shield arm. Foe stumbles 3\nfeet and falls down. Foe is disarmed.\n\u002B15H \u2013 4\u2211\u220F", + "DescriptionText": "Strike to foe\u0027s shield arm. Foe stumbles 3 feet and falls down. Foe is disarmed.", + "RawAffixText": "\u002B15H \u2013 4\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 4, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "4\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 763, + "Width": 149, + "Height": 39 + }, + "SourceImagePath": "unbalance/cells/none__e__76-80.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3052, + "BoundsWidth": 596, + "BoundsHeight": 156, + "CropLeft": 2896, + "CropTop": 3020, + "CropWidth": 692, + "CropHeight": 220, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "A", + "Lines": [ + "Side strike. Disoriented foe strikes", + "out for you in the wrong direction.", + "You move to take advantage.", + "\u002B12H \u2013 \u2211\u220F \u2013 (\u002B10)" + ], + "BaseLines": [ + "Side strike. Disoriented foe strikes", + "out for you in the wrong direction.", + "You move to take advantage.", + "\u002B12H \u2013 \u2211\u220F \u2013 (\u002B10)" + ], + "RawCellText": "Side strike. Disoriented foe strikes\nout for you in the wrong direction.\nYou move to take advantage.\n\u002B12H \u2013 \u2211\u220F \u2013 (\u002B10)", + "DescriptionText": "Side strike. Disoriented foe strikes out for you in the wrong direction. You move to take advantage.", + "RawAffixText": "\u002B12H \u2013 \u2211\u220F \u2013 (\u002B10)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 1, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u2211\u220F" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 10, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B10)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 810, + "Width": 128, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__a__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 3240, + "BoundsWidth": 512, + "BoundsHeight": 196, + "CropLeft": 544, + "CropTop": 3208, + "CropWidth": 608, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "B", + "Lines": [ + "Good shot to foe\u0027s side sends him", + "stumble to the right 3 feet. It must have", + "really hurt.", + "\u002B15H \u2013 3\u2211" + ], + "BaseLines": [ + "Good shot to foe\u0027s side sends him", + "stumble to the right 3 feet. It must have", + "really hurt.", + "\u002B15H \u2013 3\u2211" + ], + "RawCellText": "Good shot to foe\u0027s side sends him\nstumble to the right 3 feet. It must have\nreally hurt.\n\u002B15H \u2013 3\u2211", + "DescriptionText": "Good shot to foe\u0027s side sends him stumble to the right 3 feet. It must have really hurt.", + "RawAffixText": "\u002B15H \u2013 3\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 15, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B15H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 810, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__b__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3240, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 1080, + "CropTop": 3208, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "C", + "Lines": [ + "Strike to foe\u0027s side. He almost goes", + "down, but recovers by dropping", + "everything in his shield arm.", + "6\u2211" + ], + "BaseLines": [ + "Strike to foe\u0027s side. He almost goes", + "down, but recovers by dropping", + "everything in his shield arm.", + "6\u2211" + ], + "RawCellText": "Strike to foe\u0027s side. He almost goes\ndown, but recovers by dropping\neverything in his shield arm.\n6\u2211", + "DescriptionText": "Strike to foe\u0027s side. He almost goes down, but recovers by dropping everything in his shield arm.", + "RawAffixText": "6\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 810, + "Width": 142, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__c__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3240, + "BoundsWidth": 568, + "BoundsHeight": 196, + "CropLeft": 1684, + "CropTop": 3208, + "CropWidth": 664, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "D", + "Lines": [ + "Brutal strike sends foe down. You step", + "on his weapon arm and hold it down.", + "Foe should surrender.", + "\u002B12H \u2013 6\u2211\u220F" + ], + "BaseLines": [ + "Brutal strike sends foe down. You step", + "on his weapon arm and hold it down.", + "Foe should surrender.", + "\u002B12H \u2013 6\u2211\u220F" + ], + "RawCellText": "Brutal strike sends foe down. You step\non his weapon arm and hold it down.\nFoe should surrender.\n\u002B12H \u2013 6\u2211\u220F", + "DescriptionText": "Brutal strike sends foe down. You step on his weapon arm and hold it down. Foe should surrender.", + "RawAffixText": "\u002B12H \u2013 6\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 810, + "Width": 144, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__d__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3240, + "BoundsWidth": 576, + "BoundsHeight": 196, + "CropLeft": 2288, + "CropTop": 3208, + "CropWidth": 672, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "81-85", + "ColumnKey": "E", + "Lines": [ + "Awesome side shot sends foe tripping", + "sideways. He goes down rolling and", + "breaks a leg.", + "6\u2211\u220F \u2013(-50)" + ], + "BaseLines": [ + "Awesome side shot sends foe tripping", + "sideways. He goes down rolling and", + "breaks a leg.", + "6\u2211\u220F \u2013(-50)" + ], + "RawCellText": "Awesome side shot sends foe tripping\nsideways. He goes down rolling and\nbreaks a leg.\n6\u2211\u220F \u2013(-50)", + "DescriptionText": "Awesome side shot sends foe tripping sideways. He goes down rolling and breaks a leg.", + "RawAffixText": "6\u2211\u220F \u2013(-50)", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 810, + "Width": 147, + "Height": 49 + }, + "SourceImagePath": "unbalance/cells/none__e__81-85.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3240, + "BoundsWidth": 588, + "BoundsHeight": 196, + "CropLeft": 2896, + "CropTop": 3208, + "CropWidth": 684, + "CropHeight": 260, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "A", + "Lines": [ + "Elbow to the back. Foe stumbles", + "5 feet sideways. Foe cannot seem", + "to get his head clear.", + "\u002B13H \u2013 3\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "Elbow to the back. Foe stumbles", + "5 feet sideways. Foe cannot seem", + "to get his head clear.", + "\u002B13H \u2013 3\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "Elbow to the back. Foe stumbles\n5 feet sideways. Foe cannot seem\nto get his head clear.\n\u002B13H \u2013 3\u2211 \u2013 (\u002B20)", + "DescriptionText": "Elbow to the back. Foe stumbles 5 feet sideways. Foe cannot seem to get his head clear.", + "RawAffixText": "\u002B13H \u2013 3\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 13, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B13H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 865, + "Width": 127, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__a__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 3460, + "BoundsWidth": 508, + "BoundsHeight": 200, + "CropLeft": 544, + "CropTop": 3428, + "CropWidth": 604, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "B", + "Lines": [ + "You really hammer foe. He reels back 10", + "feet. He almost went down. You move in", + "to finish him.", + "\u002B12H \u2013 2\u2211\u220F" + ], + "BaseLines": [ + "You really hammer foe. He reels back 10", + "feet. He almost went down. You move in", + "to finish him.", + "\u002B12H \u2013 2\u2211\u220F" + ], + "RawCellText": "You really hammer foe. He reels back 10\nfeet. He almost went down. You move in\nto finish him.\n\u002B12H \u2013 2\u2211\u220F", + "DescriptionText": "You really hammer foe. He reels back 10 feet. He almost went down. You move in to finish him.", + "RawAffixText": "\u002B12H \u2013 2\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 12, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B12H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 2, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "2\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 865, + "Width": 146, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__b__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3460, + "BoundsWidth": 584, + "BoundsHeight": 200, + "CropLeft": 1080, + "CropTop": 3428, + "CropWidth": 680, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "C", + "Lines": [ + "Precise blow sends foe down. Foe is", + "face down and disarmed.", + "\u002B14H \u20136\u2211 \u2013 (\u002B20)" + ], + "BaseLines": [ + "Precise blow sends foe down. Foe is", + "face down and disarmed.", + "\u002B14H \u20136\u2211 \u2013 (\u002B20)" + ], + "RawCellText": "Precise blow sends foe down. Foe is\nface down and disarmed.\n\u002B14H \u20136\u2211 \u2013 (\u002B20)", + "DescriptionText": "Precise blow sends foe down. Foe is face down and disarmed.", + "RawAffixText": "\u002B14H \u20136\u2211 \u2013 (\u002B20)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 14, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B14H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 865, + "Width": 143, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__c__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3460, + "BoundsWidth": 572, + "BoundsHeight": 200, + "CropLeft": 1684, + "CropTop": 3428, + "CropWidth": 668, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "D", + "Lines": [ + "Strike foe\u0027s shield arm. If foe has a shield", + "it is broken. If not the arm is broken.", + "\u002B10H \u2013 9\u2211" + ], + "BaseLines": [ + "Strike foe\u0027s shield arm. If foe has a shield", + "it is broken. If not the arm is broken.", + "\u002B10H \u2013 9\u2211" + ], + "RawCellText": "Strike foe\u0027s shield arm. If foe has a shield\nit is broken. If not the arm is broken.\n\u002B10H \u2013 9\u2211", + "DescriptionText": "Strike foe\u0027s shield arm. If foe has a shield it is broken. If not the arm is broken.", + "RawAffixText": "\u002B10H \u2013 9\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 9, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "9\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 865, + "Width": 149, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__d__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3460, + "BoundsWidth": 596, + "BoundsHeight": 200, + "CropLeft": 2288, + "CropTop": 3428, + "CropWidth": 692, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "86-90", + "ColumnKey": "E", + "Lines": [ + "Cruel blow to foe\u0027s head.... Foe sees stars.", + "Foe is knocked back 10 feet, but remains", + "standing.", + "\u002B20H \u2013 12\u2211\u220F" + ], + "BaseLines": [ + "Cruel blow to foe\u0027s head.... Foe sees stars.", + "Foe is knocked back 10 feet, but remains", + "standing.", + "\u002B20H \u2013 12\u2211\u220F" + ], + "RawCellText": "Cruel blow to foe\u0027s head.... Foe sees stars.\nFoe is knocked back 10 feet, but remains\nstanding.\n\u002B20H \u2013 12\u2211\u220F", + "DescriptionText": "Cruel blow to foe\u0027s head.... Foe sees stars. Foe is knocked back 10 feet, but remains standing.", + "RawAffixText": "\u002B20H \u2013 12\u2211\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 20, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B20H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 12, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "12\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 865, + "Width": 150, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__e__86-90.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3460, + "BoundsWidth": 600, + "BoundsHeight": 200, + "CropLeft": 2896, + "CropTop": 3428, + "CropWidth": 696, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "A", + "Lines": [ + "Head strike. If foe has no helm, he", + "is knocked out for 2 hours. If foe", + "has a helm, he is better off.", + "3\u2211" + ], + "BaseLines": [ + "Head strike. If foe has no helm, he", + "is knocked out for 2 hours. If foe", + "has a helm, he is better off.", + "3\u2211" + ], + "RawCellText": "Head strike. If foe has no helm, he\nis knocked out for 2 hours. If foe\nhas a helm, he is better off.\n3\u2211", + "DescriptionText": "Head strike. If foe has no helm, he is knocked out for 2 hours. If foe has a helm, he is better off.", + "RawAffixText": "3\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 922, + "Width": 126, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__a__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 3688, + "BoundsWidth": 504, + "BoundsHeight": 200, + "CropLeft": 544, + "CropTop": 3656, + "CropWidth": 600, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "B", + "Lines": [ + "Blow to side of foe\u0027s head. Strike", + "damages his ear and balance. Foe is", + "impaired for 3 weeks.", + "\u002B9H \u2013 6\u2211 \u2013 (-50)" + ], + "BaseLines": [ + "Blow to side of foe\u0027s head. Strike", + "damages his ear and balance. Foe is", + "impaired for 3 weeks.", + "\u002B9H \u2013 6\u2211 \u2013 (-50)" + ], + "RawCellText": "Blow to side of foe\u0027s head. Strike\ndamages his ear and balance. Foe is\nimpaired for 3 weeks.\n\u002B9H \u2013 6\u2211 \u2013 (-50)", + "DescriptionText": "Blow to side of foe\u0027s head. Strike damages his ear and balance. Foe is impaired for 3 weeks.", + "RawAffixText": "\u002B9H \u2013 6\u2211 \u2013 (-50)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -50, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-50)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 922, + "Width": 145, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__b__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3688, + "BoundsWidth": 580, + "BoundsHeight": 200, + "CropLeft": 1080, + "CropTop": 3656, + "CropWidth": 676, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "C", + "Lines": [ + "Spin foe around. He ends up 10 feet", + "from you and facing the wrong", + "direction. Foe fumbles his weapon." + ], + "BaseLines": [ + "Spin foe around. He ends up 10 feet", + "from you and facing the wrong", + "direction. Foe fumbles his weapon." + ], + "RawCellText": "Spin foe around. He ends up 10 feet\nfrom you and facing the wrong\ndirection. Foe fumbles his weapon.", + "DescriptionText": "Spin foe around. He ends up 10 feet from you and facing the wrong direction. Foe fumbles his weapon.", + "RawAffixText": null, + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 922, + "Width": 127, + "Height": 30 + }, + "SourceImagePath": "unbalance/cells/none__c__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3688, + "BoundsWidth": 508, + "BoundsHeight": 120, + "CropLeft": 1684, + "CropTop": 3656, + "CropWidth": 604, + "CropHeight": 184, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "D", + "Lines": [ + "Foe stumbles back from you 10 feet", + "and takes a full round to fall. He hits", + "hard and fractures an arm. He is down.", + "\u002B10H \u2013 8\u2211\u220F \u2013 (-30)" + ], + "BaseLines": [ + "Foe stumbles back from you 10 feet", + "and takes a full round to fall. He hits", + "hard and fractures an arm. He is down.", + "\u002B10H \u2013 8\u2211\u220F \u2013 (-30)" + ], + "RawCellText": "Foe stumbles back from you 10 feet\nand takes a full round to fall. He hits\nhard and fractures an arm. He is down.\n\u002B10H \u2013 8\u2211\u220F \u2013 (-30)", + "DescriptionText": "Foe stumbles back from you 10 feet and takes a full round to fall. He hits hard and fractures an arm. He is down.", + "RawAffixText": "\u002B10H \u2013 8\u2211\u220F \u2013 (-30)", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 8, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "8\u2211\u220F" + }, + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -30, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-30)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 922, + "Width": 144, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__d__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3688, + "BoundsWidth": 576, + "BoundsHeight": 200, + "CropLeft": 2288, + "CropTop": 3656, + "CropWidth": 672, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "91-95", + "ColumnKey": "E", + "Lines": [ + "Blow to foe\u0027s shield shoulder. If foe has no", + "shield, he is knocked down,has a useless", + "arm, and passes out.", + "6\u2211" + ], + "BaseLines": [ + "Blow to foe\u0027s shield shoulder. If foe has no", + "shield, he is knocked down,has a useless", + "arm, and passes out.", + "6\u2211" + ], + "RawCellText": "Blow to foe\u0027s shield shoulder. If foe has no\nshield, he is knocked down,has a useless\narm, and passes out.\n6\u2211", + "DescriptionText": "Blow to foe\u0027s shield shoulder. If foe has no shield, he is knocked down,has a useless arm, and passes out.", + "RawAffixText": "6\u2211", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 922, + "Width": 154, + "Height": 50 + }, + "SourceImagePath": "unbalance/cells/none__e__91-95.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3688, + "BoundsWidth": 616, + "BoundsHeight": 200, + "CropLeft": 2896, + "CropTop": 3656, + "CropWidth": 712, + "CropHeight": 264, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "A", + "Lines": [ + "Strike to foe\u0027s stomach. He bends", + "down in pain and you send him", + "sprawling on his face. He hits", + "harder than you could have hoped.", + "\u002B10H \u2013 3\u220F" + ], + "BaseLines": [ + "Strike to foe\u0027s stomach. He bends", + "down in pain and you send him", + "sprawling on his face. He hits", + "harder than you could have hoped.", + "\u002B10H \u2013 3\u220F" + ], + "RawCellText": "Strike to foe\u0027s stomach. He bends\ndown in pain and you send him\nsprawling on his face. He hits\nharder than you could have hoped.\n\u002B10H \u2013 3\u220F", + "DescriptionText": "Strike to foe\u0027s stomach. He bends down in pain and you send him sprawling on his face. He hits harder than you could have hoped.", + "RawAffixText": "\u002B10H \u2013 3\u220F", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 10, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B10H" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 3, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "3\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 979, + "Width": 129, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__a__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 3916, + "BoundsWidth": 516, + "BoundsHeight": 240, + "CropLeft": 544, + "CropTop": 3884, + "CropWidth": 612, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "B", + "Lines": [ + "Bash foe in his side. His legs forget to", + "follow as he steps back. He falls in an", + "embarrassing prone position. He has no", + "clue to what happened.", + "6\u2211\u220F" + ], + "BaseLines": [ + "Bash foe in his side. His legs forget to", + "follow as he steps back. He falls in an", + "embarrassing prone position. He has no", + "clue to what happened.", + "6\u2211\u220F" + ], + "RawCellText": "Bash foe in his side. His legs forget to\nfollow as he steps back. He falls in an\nembarrassing prone position. He has no\nclue to what happened.\n6\u2211\u220F", + "DescriptionText": "Bash foe in his side. His legs forget to follow as he steps back. He falls in an embarrassing prone position. He has no clue to what happened.", + "RawAffixText": "6\u2211\u220F", + "Effects": [ + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + }, + { + "EffectCode": "no_parry_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211\u220F" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 979, + "Width": 145, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__b__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 3916, + "BoundsWidth": 580, + "BoundsHeight": 240, + "CropLeft": 1080, + "CropTop": 3884, + "CropWidth": 676, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "C", + "Lines": [ + "Smooth and snazzy strike sends foe", + "down on his knees. His weapon goes", + "flying. Foe has blacked out. He stares", + "straight ahead without blinking.", + "\u2014" + ], + "BaseLines": [ + "Smooth and snazzy strike sends foe", + "down on his knees. His weapon goes", + "flying. Foe has blacked out. He stares", + "straight ahead without blinking.", + "\u2014" + ], + "RawCellText": "Smooth and snazzy strike sends foe\ndown on his knees. His weapon goes\nflying. Foe has blacked out. He stares\nstraight ahead without blinking.\n\u2014", + "DescriptionText": "Smooth and snazzy strike sends foe down on his knees. His weapon goes flying. Foe has blacked out. He stares straight ahead without blinking.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 979, + "Width": 142, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__c__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 3916, + "BoundsWidth": 568, + "BoundsHeight": 240, + "CropLeft": 1684, + "CropTop": 3884, + "CropWidth": 664, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "D", + "Lines": [ + "Strike head and shatter foe\u0027s helm.", + "Pieces fly in all diections. If foe has no", + "helm he is in a coma foe 4 weeks.", + "\u002B9H \u2013 6\u2211" + ], + "BaseLines": [ + "Strike head and shatter foe\u0027s helm.", + "Pieces fly in all diections. If foe has no", + "helm he is in a coma foe 4 weeks.", + "\u002B9H \u2013 6\u2211" + ], + "RawCellText": "Strike head and shatter foe\u0027s helm.\nPieces fly in all diections. If foe has no\nhelm he is in a coma foe 4 weeks.\n\u002B9H \u2013 6\u2211", + "DescriptionText": "Strike head and shatter foe\u0027s helm. Pieces fly in all diections. If foe has no helm he is in a coma foe 4 weeks.", + "RawAffixText": "\u002B9H \u2013 6\u2211", + "Effects": [ + { + "EffectCode": "direct_hits", + "Target": "foe", + "ValueInteger": 9, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "\u002B9H" + }, + { + "EffectCode": "stunned_rounds", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": 6, + "PerRound": null, + "Modifier": null, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "6\u2211" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 979, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__d__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 3916, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2288, + "CropTop": 3884, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "96-99", + "ColumnKey": "E", + "Lines": [ + "Solid strike snaps foe\u0027s neck. He falls back", + "5 feet, spins, and tumbles to the ground.", + "He dies of shock and suffocation in 3", + "rounds.", + "\u2014" + ], + "BaseLines": [ + "Solid strike snaps foe\u0027s neck. He falls back", + "5 feet, spins, and tumbles to the ground.", + "He dies of shock and suffocation in 3", + "rounds.", + "\u2014" + ], + "RawCellText": "Solid strike snaps foe\u0027s neck. He falls back\n5 feet, spins, and tumbles to the ground.\nHe dies of shock and suffocation in 3\nrounds.\n\u2014", + "DescriptionText": "Solid strike snaps foe\u0027s neck. He falls back 5 feet, spins, and tumbles to the ground. He dies of shock and suffocation in 3 rounds.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 979, + "Width": 153, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__e__96-99.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 3916, + "BoundsWidth": 612, + "BoundsHeight": 240, + "CropLeft": 2896, + "CropTop": 3884, + "CropWidth": 708, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "A", + "Lines": [ + "Brutal hip strike knocks foe down.", + "Fall tears tendons, and fractures", + "bone in leg. The pain his great.", + "Foe is incoherent for 9 hours.", + "(-90)" + ], + "BaseLines": [ + "Brutal hip strike knocks foe down.", + "Fall tears tendons, and fractures", + "bone in leg. The pain his great.", + "Foe is incoherent for 9 hours.", + "(-90)" + ], + "RawCellText": "Brutal hip strike knocks foe down.\nFall tears tendons, and fractures\nbone in leg. The pain his great.\nFoe is incoherent for 9 hours.\n(-90)", + "DescriptionText": "Brutal hip strike knocks foe down. Fall tears tendons, and fractures bone in leg. The pain his great. Foe is incoherent for 9 hours.", + "RawAffixText": "(-90)", + "Effects": [ + { + "EffectCode": "foe_penalty", + "Target": "foe", + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": -90, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(-90)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 148, + "Top": 1045, + "Width": 128, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__a__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 592, + "BoundsTop": 4180, + "BoundsWidth": 512, + "BoundsHeight": 240, + "CropLeft": 544, + "CropTop": 4148, + "CropWidth": 608, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "B", + "Lines": [ + "Send foe flying 10 feet. He lands on his", + "face. The twisting of his neck causes", + "nerve damage. He is paralyzed from the", + "waist down.", + "\u2014" + ], + "BaseLines": [ + "Send foe flying 10 feet. He lands on his", + "face. The twisting of his neck causes", + "nerve damage. He is paralyzed from the", + "waist down.", + "\u2014" + ], + "RawCellText": "Send foe flying 10 feet. He lands on his\nface. The twisting of his neck causes\nnerve damage. He is paralyzed from the\nwaist down.\n\u2014", + "DescriptionText": "Send foe flying 10 feet. He lands on his face. The twisting of his neck causes nerve damage. He is paralyzed from the waist down.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 282, + "Top": 1045, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__b__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1128, + "BoundsTop": 4180, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1080, + "CropTop": 4148, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "C", + "Lines": [ + "Powerful strike flips foe into the air", + "before smashing him to the ground.", + "Foe breaks both arms and hits his head.", + "Foe is in a coma for 2 months.", + "\u2014" + ], + "BaseLines": [ + "Powerful strike flips foe into the air", + "before smashing him to the ground.", + "Foe breaks both arms and hits his head.", + "Foe is in a coma for 2 months.", + "\u2014" + ], + "RawCellText": "Powerful strike flips foe into the air\nbefore smashing him to the ground.\nFoe breaks both arms and hits his head.\nFoe is in a coma for 2 months.\n\u2014", + "DescriptionText": "Powerful strike flips foe into the air before smashing him to the ground. Foe breaks both arms and hits his head. Foe is in a coma for 2 months.", + "RawAffixText": "\u2014", + "Effects": [], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 433, + "Top": 1045, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__c__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 1732, + "BoundsTop": 4180, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 1684, + "CropTop": 4148, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "D", + "Lines": [ + "Savage blow to foe\u0027s head. Foe is", + "knocked down. He falls into a coma and", + "dies in 12 rounds due to a severed vein.", + "(\u002B20)" + ], + "BaseLines": [ + "Savage blow to foe\u0027s head. Foe is", + "knocked down. He falls into a coma and", + "dies in 12 rounds due to a severed vein.", + "(\u002B20)" + ], + "RawCellText": "Savage blow to foe\u0027s head. Foe is\nknocked down. He falls into a coma and\ndies in 12 rounds due to a severed vein.\n(\u002B20)", + "DescriptionText": "Savage blow to foe\u0027s head. Foe is knocked down. He falls into a coma and dies in 12 rounds due to a severed vein.", + "RawAffixText": "(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 584, + "Top": 1045, + "Width": 144, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__d__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2336, + "BoundsTop": 4180, + "BoundsWidth": 576, + "BoundsHeight": 240, + "CropLeft": 2288, + "CropTop": 4148, + "CropWidth": 672, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + }, + { + "GroupKey": null, + "RollBandLabel": "100", + "ColumnKey": "E", + "Lines": [ + "Frightening strike to foe\u0027s head. Temple", + "crushed, neck broken. Foe lands 20 feet", + "away. He dies instantly.", + "3(\u002B20)" + ], + "BaseLines": [ + "Frightening strike to foe\u0027s head. Temple", + "crushed, neck broken. Foe lands 20 feet", + "away. He dies instantly.", + "3(\u002B20)" + ], + "RawCellText": "Frightening strike to foe\u0027s head. Temple\ncrushed, neck broken. Foe lands 20 feet\naway. He dies instantly.\n3(\u002B20)", + "DescriptionText": "Frightening strike to foe\u0027s head. Temple crushed, neck broken. Foe lands 20 feet away. He dies instantly.", + "RawAffixText": "3(\u002B20)", + "Effects": [ + { + "EffectCode": "attacker_bonus_next_round", + "Target": null, + "ValueInteger": null, + "ValueExpression": null, + "DurationRounds": null, + "PerRound": null, + "Modifier": 20, + "BodyPart": null, + "IsPermanent": false, + "SourceType": "symbol", + "SourceText": "(\u002B20)" + } + ], + "Branches": [], + "SourceBounds": { + "PageNumber": 1, + "Left": 736, + "Top": 1045, + "Width": 148, + "Height": 60 + }, + "SourceImagePath": "unbalance/cells/none__e__100.png", + "SourceImageCrop": { + "PageNumber": 1, + "PageWidth": 3672, + "PageHeight": 4752, + "BoundsLeft": 2944, + "BoundsTop": 4180, + "BoundsWidth": 592, + "BoundsHeight": 240, + "CropLeft": 2896, + "CropTop": 4148, + "CropWidth": 688, + "CropHeight": 304, + "RenderDpi": 432, + "ScaleFactor": 4 + } + } +] \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/source.xml b/src/RolemasterDb.App/import-artifacts/critical/unbalance/source.xml new file mode 100644 index 0000000..c8c4191 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/unbalance/source.xml @@ -0,0 +1,386 @@ + + + + + + + + + + + + + +105 +Key: +ß +π +=must parry ß rounds; +ß + +=no parry for ß rounds; +ß + +=stunned for ß rounds; +ß + +=bleed ß hits per round; +(-ß)=foe has -ß penalty; +(+ß)=attacker gets +ß next round. +01-05 +You and your foe both stumble. +You lunge 5 feet past your foe. +Try again. What will your friends say? +"You're not very good, are you?" +You made a good sound effect. ++0H ++0H ++0H ++1H ++2H +06-10 +Foe recognizes this assault from +grade school. +Your opponent stands firmly in front of +you. +When your attempt starts to fail, you +slip in a punch. +Your grip is neither firm or effective. +Foe breaks free. +It is solid, even if randomly placed. ++0H ++1H ++2H ++3H ++5H +11-15 +Powerful strike fails to land solid. +It still does some damage. +Weak side strike glances off kidneys. +It could have been great. +Knuckle foe's arm. You will need to do +better than this. +Back strike. It has little imagination. You +might as well punch. +Strike lands on shoulder blade. ++3H ++4H ++5H ++6H ++7H +16-20 +Foe seeks to push you away. He +lashes out in defensive manner. +Glancing side blow. You unbalance your +foe. He recovers quickly. +Strike side. Foe moves back to block +your next attack. +Blow to foe's side sends him reeling. +Foe checks wound for the damage. +Blow to foe's side unbalances him and +destroys equipment there. ++4H – π ++4H – π ++5H – π ++7H – (-10) ++8H – 1(-20) +21-35 +On line strike, but weak. Foe steps +back and feigns an attack to draw +off your assault. +Your strike makes foe's footing +uncertain. He pushes you clear and +begins to right himself. +Shot to foe's chest. His lungs hesitate. +He coughs it off and regains his +footing. +Quick shot to chest causes foe to +hesitate in pain.He still knows you're +there. +Crack! Foe's rib reports damage to him +in an unsubtle way. He is in pain. ++4H – π ++5H – 1(-20) ++6H – ∑ ++8H – ∑ ++9H – ∑ – 1(-10) +36-45 +Light bash breaks foe's focus. You +have the initiative next round. +You salvage your attack by tripping foe. +You have the initiative next round. +Grab foe's shoulder, while you bring +your knee up to knock him over. +Strike to calf. Wound impairs foe's +movements. You have the initiative. +Hard glancing blow to foe's leg. + +4H ++5H – 2(-5) ++5H – 1(-40) ++7H – (-25) +with leg armor: +12H +w/o leg armor: +8H – 2∑ +46-50 +Attempt to spin foe's around +almost succeeds. Weak grip to side. +Your assault threatens to succeed. +Your foe goes defensive to avoid your +attack. +Boom! Foe is hit in the face. He reels +back 5 feet trying to regain his footing. +His guard is down. +Double strike to both arms breaks foe's +defense. He is open to attack and is +having trouble recovering. +Shot in back staggers foe for an instant. +His guard drops and he is sadly +unprotected. ++5H – π(-10) ++5H – π(-20) ++6H – ∑∏ ++8H – ∑∏ ++12H – ∑∏ +51-55 +Firm press to foe's chest. He give +ground happily. Watch his weapon. +Grab foe and bring knee up to cause +damage. Foe blocks some of the force. +Push foe's knee backwards. Foe +struggles to avoid the pain. +Strike to chest takes wind out of foe. +Foe's guard goes down. +Knock foe over as if he was a sack of +beans. He hits and starts to stand up. ++5H – π(-20) ++5H – ∑ ++6H – ∑∏ ++10H – ∑∏ ++12H – ∑∏ +56-60 +Strike thigh. Foe is pushed back. +Foe bumps his thigh while blocking your +attack. He steps back. +Skipping calf strike. Foe does not give +ground. +Miss foe's side and strike his thigh. You +have initiative for 3 rounds. +Strike causes foe to fumble his stride. He +almost falls down. Foe is recovering. +with thigh armor: +7H +w/o thigh armor: +5H – ∑ ++6H – π(-30) +with leg armor: +9H +w/o leg armor: +7H – 2∑ – (-10) ++12H – 2∑ ++14H – 3∑ +61-65 +Foe's arm is pinned for a moment. +He recovers by twisting you off. +Bend weapon arm in the wrong +direction. Foe drops his weapon. +Excellent placement. Strike to weapon +arm disarms foe. Foe is in great peril. +You catch foe's counter thrust and +disarm him with a bash to the arm. +Bash foe in shoulder making him spin. +You push him for good measure. ++6H – ∑ ++6H ++6H – 2∑ ++7H – 2∑ – (+20) ++13H – 2∑∏ +66 +Shoulder strike sends foe spinning. +He comes all the way around before +stopping. Well placed shot. +Stirke to foe's elbow numbs it. He drops +his weapon and grips his elbow. He +forgets you are still attacking him. +Strike to foe's leg sends him down. +Foe's knee is broken and his doom is at +hand. He falls to the ground helpless. +Hard strike to head. If foe has no helm, +he is knocked out for 24 hours. If he has +a helm, he is knocked back 10 feet. +Knock foe back with a blow to the jaw. +Foe loses balance and falls. he hits his +head and goes unconscious. ++7H – 2∑∏ ++8H – 2∑∏ ++9H – 3∑∏ – (-90) +6∑ ++30H +67-70 +Hasty press upon foe's chest +produces excellent results. Foe is +unbalanced. +Grab loose piece of foe's garments and +use it to throw him around. Foe is +confused. +Strike to foe's ribs. Foe's ribs crack and +foe shows the pain. His war effort is +impaired. +Break foe's collar bone. Spin foe +around. He is disoriented and out of +position. +Shoulder strike blasts foe down. He lands +on his stomach and tries to roll over. +Minor fracture. ++6H – 2(-50) ++7H - ∏ ++8H – 2∑ – (-20) ++10H – ∑∏ – (-25) +2∑∏ – (-10) +71-75 +Hammer foe's lower leg. He has +trouble standing, but manages. +Solid damage to foe's calf. His attempts +to avoid the pain make him an easier +target. +Bruise foe's leg. Muscles suffer damage +and foe limps back from your +reach. +Lift foe up into the air. You send him +sprawling on the ground. He drops his +weapon. +Knock foe down with a blow to the thigh. +He lands on his wespon and takes some +time to get off it. ++7H – 2∑ ++9H – (-10) ++10H – ∑∏ – (-20) ++12H – ∑∏ –(-75) ++15H – 3∑∏ +76-80 +Blow to foe's shield side. If foe has +a shield, it is torn away. +Grab foe's shield arm for leverage. You +treat it badly, trying to unbalance foe. +Heavy blow to foe's weapon arm. Mild +fracture. Foe is knocked back 5 feet. +Sweep foe to the side and knock him +over. He breaks his ankle. +Strike to foe's shield arm. Foe stumbles 3 +feet and falls down. Foe is disarmed. ++12H – 2∑ ++10H – 2∑ – (-10) ++11H – 3∑ – (-25) ++11H – (-50) ++15H – 4∑∏ +81-85 +Side strike. Disoriented foe strikes +out for you in the wrong direction. +You move to take advantage. +Good shot to foe's side sends him +stumble to the right 3 feet. It must have +really hurt. +Strike to foe's side. He almost goes +down, but recovers by dropping +everything in his shield arm. +Brutal strike sends foe down. You step +on his weapon arm and hold it down. +Foe should surrender. +Awesome side shot sends foe tripping +sideways. He goes down rolling and +breaks a leg. ++12H – ∑∏ – (+10) ++15H – 3∑ +6∑ ++12H – 6∑∏ +6∑∏ –(-50) +86-90 +Elbow to the back. Foe stumbles +5 feet sideways. Foe cannot seem +to get his head clear. +You really hammer foe. He reels back 10 +feet. He almost went down. You move in +to finish him. +Precise blow sends foe down. Foe is +face down and disarmed. +Strike foe's shield arm. If foe has a shield +it is broken. If not the arm is broken. +Cruel blow to foe's head.... Foe sees stars. +Foe is knocked back 10 feet, but remains +standing. ++13H – 3∑ – (+20) ++12H – 2∑∏ ++14H –6∑ – (+20) ++10H – 9∑ ++20H – 12∑∏ +91-95 +Head strike. If foe has no helm, he +is knocked out for 2 hours. If foe +has a helm, he is better off. +Blow to side of foe's head. Strike +damages his ear and balance. Foe is +impaired for 3 weeks. +Spin foe around. He ends up 10 feet +from you and facing the wrong +direction. Foe fumbles his weapon. +Foe stumbles back from you 10 feet +and takes a full round to fall. He hits +hard and fractures an arm. He is down. +Blow to foe's shield shoulder. If foe has no +shield, he is knocked down,has a useless +arm, and passes out. +3∑ ++9H – 6∑ – (-50) ++10H – 8∑∏ – (-30) +6∑ +96-99 +Strike to foe's stomach. He bends +down in pain and you send him +sprawling on his face. He hits +harder than you could have hoped. +Bash foe in his side. His legs forget to +follow as he steps back. He falls in an +embarrassing prone position. He has no +clue to what happened. +Smooth and snazzy strike sends foe +down on his knees. His weapon goes +flying. Foe has blacked out. He stares +straight ahead without blinking. +Strike head and shatter foe's helm. +Pieces fly in all diections. If foe has no +helm he is in a coma foe 4 weeks. +Solid strike snaps foe's neck. He falls back +5 feet, spins, and tumbles to the ground. +He dies of shock and suffocation in 3 +rounds. ++10H – 3∏ +6∑∏ + ++9H – 6∑ + +100 +Brutal hip strike knocks foe down. +Fall tears tendons, and fractures +bone in leg. The pain his great. +Foe is incoherent for 9 hours. +Send foe flying 10 feet. He lands on his +face. The twisting of his neck causes +nerve damage. He is paralyzed from the +waist down. +Powerful strike flips foe into the air +before smashing him to the ground. +Foe breaks both arms and hits his head. +Foe is in a coma for 2 months. +Savage blow to foe's head. Foe is +knocked down. He falls into a coma and +dies in 12 rounds due to a severed vein. +Frightening strike to foe's head. Temple +crushed, neck broken. Foe lands 20 feet +away. He dies instantly. +(-90) + + +(+20) +3(+20) +4.12 unbalance critical strike table +A +b +c +d +e + + diff --git a/src/RolemasterDb.App/import-artifacts/critical/unbalance/validation-report.json b/src/RolemasterDb.App/import-artifacts/critical/unbalance/validation-report.json new file mode 100644 index 0000000..c2a2ec5 --- /dev/null +++ b/src/RolemasterDb.App/import-artifacts/critical/unbalance/validation-report.json @@ -0,0 +1,7 @@ +{ + "IsValid": true, + "Errors": [], + "Warnings": [], + "RowCount": 19, + "CellCount": 95 +} \ No newline at end of file diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__01-05.png new file mode 100644 index 0000000..24a6025 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__06-10.png new file mode 100644 index 0000000..a0d09c2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__100.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__100.png new file mode 100644 index 0000000..f21b336 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__11-15.png new file mode 100644 index 0000000..5bda945 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__16-20.png new file mode 100644 index 0000000..073b9fa Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__21-35.png new file mode 100644 index 0000000..345b55c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__36-45.png new file mode 100644 index 0000000..85ac217 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__46-50.png new file mode 100644 index 0000000..77be6e3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__51-55.png new file mode 100644 index 0000000..2bf2658 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__56-60.png new file mode 100644 index 0000000..7ee1274 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__61-65.png new file mode 100644 index 0000000..5e2bfbd Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__66.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__66.png new file mode 100644 index 0000000..12ab390 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__67-70.png new file mode 100644 index 0000000..4016d6d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__71-75.png new file mode 100644 index 0000000..3461277 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__76-80.png new file mode 100644 index 0000000..f9fe234 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__81-85.png new file mode 100644 index 0000000..f22a8ef Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__86-90.png new file mode 100644 index 0000000..4a71c66 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__91-95.png new file mode 100644 index 0000000..3a10fa6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__96-99.png new file mode 100644 index 0000000..514b92c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__a__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__01-05.png new file mode 100644 index 0000000..8fc65d4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__06-10.png new file mode 100644 index 0000000..a7d909e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__100.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__100.png new file mode 100644 index 0000000..a574737 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__11-15.png new file mode 100644 index 0000000..216fd5c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__16-20.png new file mode 100644 index 0000000..5e1c69e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__21-35.png new file mode 100644 index 0000000..1b493e0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__36-45.png new file mode 100644 index 0000000..af480df Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__46-50.png new file mode 100644 index 0000000..14d911e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__51-55.png new file mode 100644 index 0000000..f4240a8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__56-60.png new file mode 100644 index 0000000..1f20f5a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__61-65.png new file mode 100644 index 0000000..0e49bcf Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__66.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__66.png new file mode 100644 index 0000000..011c32f Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__67-70.png new file mode 100644 index 0000000..c709ef5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__71-75.png new file mode 100644 index 0000000..81c20ff Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__76-80.png new file mode 100644 index 0000000..f7a050e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__81-85.png new file mode 100644 index 0000000..838873e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__86-90.png new file mode 100644 index 0000000..90014d4 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__91-95.png new file mode 100644 index 0000000..1f6fa13 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__96-99.png new file mode 100644 index 0000000..2b7ee12 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__b__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__01-05.png new file mode 100644 index 0000000..241df0d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__06-10.png new file mode 100644 index 0000000..e2c8a3a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__100.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__100.png new file mode 100644 index 0000000..3d22599 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__11-15.png new file mode 100644 index 0000000..17d589a Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__16-20.png new file mode 100644 index 0000000..dcf3635 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__21-35.png new file mode 100644 index 0000000..94b796c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__36-45.png new file mode 100644 index 0000000..e7687f1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__46-50.png new file mode 100644 index 0000000..06eadad Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__51-55.png new file mode 100644 index 0000000..6d4f1e0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__56-60.png new file mode 100644 index 0000000..eece6db Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__61-65.png new file mode 100644 index 0000000..7f428b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__66.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__66.png new file mode 100644 index 0000000..1aefbba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__67-70.png new file mode 100644 index 0000000..d953d39 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__71-75.png new file mode 100644 index 0000000..d959e46 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__76-80.png new file mode 100644 index 0000000..4035d48 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__81-85.png new file mode 100644 index 0000000..f902f33 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__86-90.png new file mode 100644 index 0000000..9686a9d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__91-95.png new file mode 100644 index 0000000..b2a8b45 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__96-99.png new file mode 100644 index 0000000..35a7ed3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__c__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__01-05.png new file mode 100644 index 0000000..d5b21ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__06-10.png new file mode 100644 index 0000000..e702913 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__100.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__100.png new file mode 100644 index 0000000..5c41980 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__11-15.png new file mode 100644 index 0000000..c6f4b4e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__16-20.png new file mode 100644 index 0000000..b503af1 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__21-35.png new file mode 100644 index 0000000..4bcd4b2 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__36-45.png new file mode 100644 index 0000000..5f6c80e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__46-50.png new file mode 100644 index 0000000..d35074c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__51-55.png new file mode 100644 index 0000000..7a9c4d8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__56-60.png new file mode 100644 index 0000000..924b9fc Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__61-65.png new file mode 100644 index 0000000..9102dd5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__66.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__66.png new file mode 100644 index 0000000..8289aa0 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__67-70.png new file mode 100644 index 0000000..a50706d Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__71-75.png new file mode 100644 index 0000000..4b7ea7c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__76-80.png new file mode 100644 index 0000000..b2e547e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__81-85.png new file mode 100644 index 0000000..5e71286 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__86-90.png new file mode 100644 index 0000000..22c4a7e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__91-95.png new file mode 100644 index 0000000..2ec8b82 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__96-99.png new file mode 100644 index 0000000..35c3cbb Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__d__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__01-05.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__01-05.png new file mode 100644 index 0000000..35ac1d3 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__01-05.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__06-10.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__06-10.png new file mode 100644 index 0000000..f01fdf6 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__06-10.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__100.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__100.png new file mode 100644 index 0000000..a9a06ea Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__100.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__11-15.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__11-15.png new file mode 100644 index 0000000..e3595e8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__11-15.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__16-20.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__16-20.png new file mode 100644 index 0000000..d7a174e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__16-20.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__21-35.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__21-35.png new file mode 100644 index 0000000..7e2d82c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__21-35.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__36-45.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__36-45.png new file mode 100644 index 0000000..af767e7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__36-45.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__46-50.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__46-50.png new file mode 100644 index 0000000..ba6c51e Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__46-50.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__51-55.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__51-55.png new file mode 100644 index 0000000..ce359b9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__51-55.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__56-60.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__56-60.png new file mode 100644 index 0000000..fd995d7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__56-60.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__61-65.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__61-65.png new file mode 100644 index 0000000..0aaee40 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__61-65.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__66.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__66.png new file mode 100644 index 0000000..89884f7 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__66.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__67-70.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__67-70.png new file mode 100644 index 0000000..b80b17c Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__67-70.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__71-75.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__71-75.png new file mode 100644 index 0000000..747b1ba Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__71-75.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__76-80.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__76-80.png new file mode 100644 index 0000000..2b01fb9 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__76-80.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__81-85.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__81-85.png new file mode 100644 index 0000000..cf52fb8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__81-85.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__86-90.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__86-90.png new file mode 100644 index 0000000..4bf2e44 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__86-90.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__91-95.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__91-95.png new file mode 100644 index 0000000..a69a3a5 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__91-95.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__96-99.png b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__96-99.png new file mode 100644 index 0000000..c00fbb8 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/cells/none__e__96-99.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/ocr-pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/void/ocr-pages/page-001.png new file mode 100644 index 0000000..4df6e95 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/ocr-pages/page-001.png differ diff --git a/src/RolemasterDb.App/import-artifacts/critical/void/pages/page-001.png b/src/RolemasterDb.App/import-artifacts/critical/void/pages/page-001.png new file mode 100644 index 0000000..4df6e95 Binary files /dev/null and b/src/RolemasterDb.App/import-artifacts/critical/void/pages/page-001.png differ diff --git a/src/RolemasterDb.App/rolemaster.db b/src/RolemasterDb.App/rolemaster.db index b8141c0..497060a 100644 Binary files a/src/RolemasterDb.App/rolemaster.db and b/src/RolemasterDb.App/rolemaster.db differ diff --git a/src/RolemasterDb.ImportTool/CriticalImageArtifactMetadata.cs b/src/RolemasterDb.ImportTool/CriticalImageArtifactMetadata.cs new file mode 100644 index 0000000..ebdea95 --- /dev/null +++ b/src/RolemasterDb.ImportTool/CriticalImageArtifactMetadata.cs @@ -0,0 +1,13 @@ +using RolemasterDb.ImportTool.Parsing; + +namespace RolemasterDb.ImportTool; + +public sealed class CriticalImageArtifactMetadata( + int resultId, + string relativePath, + CriticalSourceImageCrop crop) +{ + public int ResultId { get; } = resultId; + public string RelativePath { get; } = relativePath; + public CriticalSourceImageCrop Crop { get; } = crop; +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/CriticalImportCommandRunner.cs b/src/RolemasterDb.ImportTool/CriticalImportCommandRunner.cs index 3bcee7c..d0d3fd1 100644 --- a/src/RolemasterDb.ImportTool/CriticalImportCommandRunner.cs +++ b/src/RolemasterDb.ImportTool/CriticalImportCommandRunner.cs @@ -9,6 +9,7 @@ public sealed class CriticalImportCommandRunner private readonly PdfXmlExtractor pdfXmlExtractor = new(); private readonly StandardOcrBootstrapper standardOcrBootstrapper = new(); private readonly CriticalSourceImageArtifactGenerator sourceImageArtifactGenerator; + private readonly CriticalSourceImageArtifactRegenerator sourceImageArtifactRegenerator; private readonly StandardCriticalTableParser standardParser = new(); private readonly VariantColumnCriticalTableParser variantColumnParser = new(); private readonly GroupedVariantCriticalTableParser groupedVariantParser = new(); @@ -16,6 +17,7 @@ public sealed class CriticalImportCommandRunner public CriticalImportCommandRunner() { sourceImageArtifactGenerator = new CriticalSourceImageArtifactGenerator(pdfXmlExtractor); + sourceImageArtifactRegenerator = new CriticalSourceImageArtifactRegenerator(pdfXmlExtractor); } public async Task RunAsync(ResetOptions options) @@ -97,35 +99,70 @@ public sealed class CriticalImportCommandRunner public async Task RunAsync(ReimportImagesOptions options) { - var entry = GetManifestEntry(options.Table); - var artifactPaths = CreateArtifactPaths(entry.Slug); - var extractor = CreateSourceExtractor(entry); - if (!File.Exists(artifactPaths.GetSourceArtifactPath(entry.ExtractionMethod))) + var entries = GetManifestEntries(options).ToList(); + CriticalImportLoader? loader = null; + if (options.UpdateMetadata) { - await extractor.ExtractAsync(ResolveRepositoryPath(entry.PdfPath), artifactPaths, CancellationToken.None); + loader = new CriticalImportLoader(ResolveDatabasePath(options.DatabasePath)); } - var extractedSource = await extractor.LoadAsync(ResolveRepositoryPath(entry.PdfPath), artifactPaths, CancellationToken.None); - var parseResult = Parse(entry, extractedSource); - await sourceImageArtifactGenerator.GenerateAsync( - ResolveRepositoryPath(entry.PdfPath), - artifactPaths, - parseResult, - CancellationToken.None); - await artifactWriter.WriteAsync(artifactPaths, parseResult, CancellationToken.None); - - if (!parseResult.ValidationReport.IsValid) + foreach (var entry in entries) { - throw new InvalidOperationException( - $"Validation failed for '{entry.Slug}'. See {artifactPaths.ValidationReportPath} for details."); + var artifactPaths = CreateArtifactPaths(entry.Slug); + try + { + var extractor = CreateSourceExtractor(entry); + if (!File.Exists(artifactPaths.GetSourceArtifactPath(entry.ExtractionMethod))) + { + await extractor.ExtractAsync(ResolveRepositoryPath(entry.PdfPath), artifactPaths, + CancellationToken.None); + } + + var extractedSource = await extractor.LoadAsync(ResolveRepositoryPath(entry.PdfPath), artifactPaths, + CancellationToken.None); + var parseResult = Parse(entry, extractedSource); + await sourceImageArtifactGenerator.GenerateAsync( + ResolveRepositoryPath(entry.PdfPath), + artifactPaths, + parseResult, + CancellationToken.None); + await artifactWriter.WriteAsync(artifactPaths, parseResult, CancellationToken.None); + + if (!parseResult.ValidationReport.IsValid) + { + throw new InvalidOperationException( + $"Validation failed for '{entry.Slug}'. See {artifactPaths.ValidationReportPath} for details."); + } + + if (loader is null) + { + Console.WriteLine( + $"Refreshed image artifacts for {entry.Slug}: metadata unchanged."); + continue; + } + + var refreshedCount = await loader.RefreshImageArtifactsAsync(parseResult.Table); + Console.WriteLine( + $"Refreshed image artifacts for {entry.Slug}: {refreshedCount} results updated."); + } + catch (Exception exception) when (CanUseDatabaseMetadataFallback(entry, options)) + { + Console.Error.WriteLine( + $"Falling back to database image metadata for {entry.Slug}: {exception.Message}"); + + var metadataLoader = loader ?? new CriticalImportLoader(ResolveDatabasePath(options.DatabasePath)); + var imageArtifacts = await metadataLoader.LoadImageArtifactMetadataAsync(entry.Slug); + await sourceImageArtifactRegenerator.GenerateAsync( + ResolveRepositoryPath(entry.PdfPath), + artifactPaths, + imageArtifacts, + CancellationToken.None); + + Console.WriteLine( + $"Refreshed image artifacts for {entry.Slug}: regenerated {imageArtifacts.Count} images from existing database metadata."); + } } - var loader = new CriticalImportLoader(ResolveDatabasePath(options.DatabasePath)); - var refreshedCount = await loader.RefreshImageArtifactsAsync(parseResult.Table); - - Console.WriteLine( - $"Refreshed image artifacts for {entry.Slug}: {refreshedCount} results updated."); - return 0; } @@ -133,12 +170,47 @@ public sealed class CriticalImportCommandRunner { var manifest = manifestLoader.Load(RepositoryPaths.Discover().ManifestPath); return manifest.Tables - .Where(item => item.Enabled) - .SingleOrDefault(item => string.Equals(item.Slug, tableSlug.Trim(), StringComparison.OrdinalIgnoreCase)) - ?? throw new InvalidOperationException($"No enabled manifest entry was found for '{tableSlug}'."); + .Where(item => item.Enabled) + .SingleOrDefault(item => + string.Equals(item.Slug, tableSlug.Trim(), StringComparison.OrdinalIgnoreCase)) + ?? throw new InvalidOperationException($"No enabled manifest entry was found for '{tableSlug}'."); } - private async Task LoadExtractedSourceAsync(CriticalImportManifestEntry entry, ImportArtifactPaths artifactPaths) + private IReadOnlyList GetManifestEntries(ReimportImagesOptions options) + { + if (options.All) + { + var manifest = manifestLoader.Load(RepositoryPaths.Discover().ManifestPath); + return manifest.Tables.Where(item => item.Enabled).ToList(); + } + + var normalizedTable = NormalizeTableArgument(options.Table); + if (string.IsNullOrWhiteSpace(normalizedTable)) + { + throw new InvalidOperationException("Specify a table slug or pass --all."); + } + + return new[] { GetManifestEntry(normalizedTable) }; + } + + private static string? NormalizeTableArgument(string? table) + { + if (string.IsNullOrWhiteSpace(table)) + { + return null; + } + + var trimmed = table.Trim(); + return trimmed[0] == '-' ? null : trimmed; + } + + private static bool + CanUseDatabaseMetadataFallback(CriticalImportManifestEntry entry, ReimportImagesOptions options) => + !options.UpdateMetadata + && string.Equals(entry.ExtractionMethod, "ocr", StringComparison.OrdinalIgnoreCase); + + private async Task LoadExtractedSourceAsync(CriticalImportManifestEntry entry, + ImportArtifactPaths artifactPaths) { var extractor = CreateSourceExtractor(entry); var sourceArtifactPath = artifactPaths.GetSourceArtifactPath(entry.ExtractionMethod); @@ -190,7 +262,8 @@ public sealed class CriticalImportCommandRunner return new OcrCriticalSourceExtractor(pdfXmlExtractor); } - throw new InvalidOperationException($"Extraction method '{entry.ExtractionMethod}' is not supported by the importer."); + throw new InvalidOperationException( + $"Extraction method '{entry.ExtractionMethod}' is not supported by the importer."); } private static ImportArtifactPaths CreateArtifactPaths(string slug) => @@ -201,4 +274,4 @@ public sealed class CriticalImportCommandRunner private static string ResolveRepositoryPath(string path) => Path.GetFullPath(Path.Combine(RepositoryPaths.Discover().RootPath, path)); -} +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/CriticalImportLoader.cs b/src/RolemasterDb.ImportTool/CriticalImportLoader.cs index 6947fbb..3759286 100644 --- a/src/RolemasterDb.ImportTool/CriticalImportLoader.cs +++ b/src/RolemasterDb.ImportTool/CriticalImportLoader.cs @@ -1,6 +1,5 @@ using Microsoft.EntityFrameworkCore; using System.Text.Json; - using RolemasterDb.App.Data; using RolemasterDb.App.Domain; using RolemasterDb.ImportTool.Parsing; @@ -35,7 +34,8 @@ public sealed class CriticalImportLoader(string databasePath) return removedTableCount; } - public async Task LoadAsync(ParsedCriticalTable table, CancellationToken cancellationToken = default) + public async Task LoadAsync(ParsedCriticalTable table, + CancellationToken cancellationToken = default) { await using var dbContext = CreateDbContext(); await dbContext.Database.EnsureCreatedAsync(cancellationToken); @@ -48,16 +48,16 @@ public sealed class CriticalImportLoader(string databasePath) .Include(item => item.Columns) .Include(item => item.RollBands) .Include(item => item.Results) - .ThenInclude(result => result.CriticalGroup) + .ThenInclude(result => result.CriticalGroup) .Include(item => item.Results) - .ThenInclude(result => result.CriticalColumn) + .ThenInclude(result => result.CriticalColumn) .Include(item => item.Results) - .ThenInclude(result => result.CriticalRollBand) + .ThenInclude(result => result.CriticalRollBand) .Include(item => item.Results) - .ThenInclude(result => result.Effects) + .ThenInclude(result => result.Effects) .Include(item => item.Results) - .ThenInclude(result => result.Branches) - .ThenInclude(branch => branch.Effects) + .ThenInclude(result => result.Branches) + .ThenInclude(branch => branch.Effects) .SingleOrDefaultAsync(item => item.Slug == table.Slug, cancellationToken); if (entity is null) @@ -78,7 +78,8 @@ public sealed class CriticalImportLoader(string databasePath) var columnsByKey = SynchronizeColumns(entity, table); var rollBandsByLabel = SynchronizeRollBands(entity, table); var existingResultsByKey = entity.Results.ToDictionary( - item => CreateResultKey(item.CriticalGroup?.GroupKey, item.CriticalColumn.ColumnKey, item.CriticalRollBand.Label), + item => CreateResultKey(item.CriticalGroup?.GroupKey, item.CriticalColumn.ColumnKey, + item.CriticalRollBand.Label), StringComparer.Ordinal); var importedKeys = new HashSet(StringComparer.Ordinal); @@ -109,7 +110,8 @@ public sealed class CriticalImportLoader(string databasePath) } foreach (var unmatchedResult in entity.Results - .Where(item => !importedKeys.Contains(CreateResultKey(item.CriticalGroup?.GroupKey, item.CriticalColumn.ColumnKey, item.CriticalRollBand.Label))) + .Where(item => !importedKeys.Contains(CreateResultKey(item.CriticalGroup?.GroupKey, + item.CriticalColumn.ColumnKey, item.CriticalRollBand.Label))) .ToList()) { if (unmatchedResult.IsCurated) @@ -128,7 +130,8 @@ public sealed class CriticalImportLoader(string databasePath) return new ImportCommandResult(entity.Slug, entity.Columns.Count, entity.RollBands.Count, entity.Results.Count); } - public async Task RefreshImageArtifactsAsync(ParsedCriticalTable table, CancellationToken cancellationToken = default) + public async Task RefreshImageArtifactsAsync(ParsedCriticalTable table, + CancellationToken cancellationToken = default) { await using var dbContext = CreateDbContext(); await dbContext.Database.EnsureCreatedAsync(cancellationToken); @@ -138,20 +141,22 @@ public sealed class CriticalImportLoader(string databasePath) var entity = await dbContext.CriticalTables .AsSplitQuery() .Include(item => item.Results) - .ThenInclude(result => result.CriticalGroup) + .ThenInclude(result => result.CriticalGroup) .Include(item => item.Results) - .ThenInclude(result => result.CriticalColumn) + .ThenInclude(result => result.CriticalColumn) .Include(item => item.Results) - .ThenInclude(result => result.CriticalRollBand) + .ThenInclude(result => result.CriticalRollBand) .SingleOrDefaultAsync(item => item.Slug == table.Slug, cancellationToken); if (entity is null) { - throw new InvalidOperationException($"Critical table '{table.Slug}' does not exist in the target database."); + throw new InvalidOperationException( + $"Critical table '{table.Slug}' does not exist in the target database."); } var existingResultsByKey = entity.Results.ToDictionary( - item => CreateResultKey(item.CriticalGroup?.GroupKey, item.CriticalColumn.ColumnKey, item.CriticalRollBand.Label), + item => CreateResultKey(item.CriticalGroup?.GroupKey, item.CriticalColumn.ColumnKey, + item.CriticalRollBand.Label), StringComparer.Ordinal); var refreshedCount = 0; @@ -172,6 +177,66 @@ public sealed class CriticalImportLoader(string databasePath) return refreshedCount; } + public async Task> LoadImageArtifactMetadataAsync( + string tableSlug, + CancellationToken cancellationToken = default) + { + await using var dbContext = CreateDbContext(); + await dbContext.Database.EnsureCreatedAsync(cancellationToken); + await RolemasterDbSchemaUpgrader.EnsureLatestAsync(dbContext, cancellationToken); + + var rows = await dbContext.CriticalResults + .AsNoTracking() + .Where(item => item.CriticalTable.Slug == tableSlug) + .OrderBy(item => item.Id) + .Select(item => new + { + item.Id, + item.SourcePageNumber, + item.SourceImagePath, + item.SourceImageCropJson + }) + .ToListAsync(cancellationToken); + + if (rows.Count == 0) + { + throw new InvalidOperationException($"Critical table '{tableSlug}' does not exist in the target database."); + } + + var metadata = new List(rows.Count); + foreach (var row in rows) + { + if (string.IsNullOrWhiteSpace(row.SourceImagePath)) + { + throw new InvalidOperationException( + $"Critical result {row.Id} in table '{tableSlug}' is missing SourceImagePath."); + } + + if (string.IsNullOrWhiteSpace(row.SourceImageCropJson)) + { + throw new InvalidOperationException( + $"Critical result {row.Id} in table '{tableSlug}' is missing SourceImageCropJson."); + } + + var crop = JsonSerializer.Deserialize(row.SourceImageCropJson); + if (crop is null) + { + throw new InvalidOperationException( + $"Critical result {row.Id} in table '{tableSlug}' has invalid SourceImageCropJson."); + } + + if (row.SourcePageNumber is not null && row.SourcePageNumber != crop.PageNumber) + { + throw new InvalidOperationException( + $"Critical result {row.Id} in table '{tableSlug}' has mismatched source page metadata."); + } + + metadata.Add(new CriticalImageArtifactMetadata(row.Id, row.SourceImagePath, crop)); + } + + return metadata; + } + private RolemasterDbContext CreateDbContext() { var options = new DbContextOptionsBuilder() @@ -205,7 +270,8 @@ public sealed class CriticalImportLoader(string databasePath) return groupsByKey; } - private static Dictionary SynchronizeColumns(CriticalTable entity, ParsedCriticalTable table) + private static Dictionary SynchronizeColumns(CriticalTable entity, + ParsedCriticalTable table) { var columnsByKey = entity.Columns.ToDictionary(item => item.ColumnKey, StringComparer.OrdinalIgnoreCase); @@ -230,7 +296,8 @@ public sealed class CriticalImportLoader(string databasePath) return columnsByKey; } - private static Dictionary SynchronizeRollBands(CriticalTable entity, ParsedCriticalTable table) + private static Dictionary SynchronizeRollBands(CriticalTable entity, + ParsedCriticalTable table) { var rollBandsByLabel = entity.RollBands.ToDictionary(item => item.Label, StringComparer.OrdinalIgnoreCase); @@ -300,7 +367,8 @@ public sealed class CriticalImportLoader(string databasePath) : JsonSerializer.Serialize(item.SourceImageCrop, JsonOptions); } - private static void ReplaceResultChildren(RolemasterDbContext dbContext, CriticalResult result, ParsedCriticalResult item) + private static void ReplaceResultChildren(RolemasterDbContext dbContext, CriticalResult result, + ParsedCriticalResult item) { foreach (var branch in result.Branches) { @@ -346,7 +414,8 @@ public sealed class CriticalImportLoader(string databasePath) .ToHashSet(StringComparer.OrdinalIgnoreCase); foreach (var group in entity.Groups - .Where(item => !activeGroupKeys.Contains(item.GroupKey) && !importedGroupKeys.Contains(item.GroupKey)) + .Where(item => + !activeGroupKeys.Contains(item.GroupKey) && !importedGroupKeys.Contains(item.GroupKey)) .ToList()) { dbContext.CriticalGroups.Remove(group); @@ -361,7 +430,8 @@ public sealed class CriticalImportLoader(string databasePath) .ToHashSet(StringComparer.OrdinalIgnoreCase); foreach (var column in entity.Columns - .Where(item => !activeColumnKeys.Contains(item.ColumnKey) && !importedColumnKeys.Contains(item.ColumnKey)) + .Where(item => + !activeColumnKeys.Contains(item.ColumnKey) && !importedColumnKeys.Contains(item.ColumnKey)) .ToList()) { dbContext.CriticalColumns.Remove(column); @@ -376,7 +446,8 @@ public sealed class CriticalImportLoader(string databasePath) .ToHashSet(StringComparer.OrdinalIgnoreCase); foreach (var rollBand in entity.RollBands - .Where(item => !activeRollBandLabels.Contains(item.Label) && !importedRollBandLabels.Contains(item.Label)) + .Where(item => + !activeRollBandLabels.Contains(item.Label) && !importedRollBandLabels.Contains(item.Label)) .ToList()) { dbContext.CriticalRollBands.Remove(rollBand); @@ -437,4 +508,4 @@ public sealed class CriticalImportLoader(string databasePath) private static string NormalizeKey(string? value) => string.IsNullOrWhiteSpace(value) ? string.Empty : value.Trim().ToUpperInvariant(); -} +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/CriticalSourceImageArtifactRegenerator.cs b/src/RolemasterDb.ImportTool/CriticalSourceImageArtifactRegenerator.cs new file mode 100644 index 0000000..253304e --- /dev/null +++ b/src/RolemasterDb.ImportTool/CriticalSourceImageArtifactRegenerator.cs @@ -0,0 +1,60 @@ +namespace RolemasterDb.ImportTool; + +public sealed class CriticalSourceImageArtifactRegenerator(PdfXmlExtractor pdfXmlExtractor) +{ + public async Task GenerateAsync( + string pdfPath, + ImportArtifactPaths artifactPaths, + IReadOnlyList imageArtifacts, + CancellationToken cancellationToken = default) + { + if (imageArtifacts.Count == 0) + { + throw new InvalidOperationException("No image artifact metadata was supplied."); + } + + Directory.CreateDirectory(artifactPaths.PagesDirectoryPath); + Directory.CreateDirectory(artifactPaths.CellsDirectoryPath); + + var renderProfiles = imageArtifacts + .Select(item => (item.Crop.RenderDpi, item.Crop.ScaleFactor)) + .Distinct() + .ToList(); + if (renderProfiles.Count != 1) + { + throw new InvalidOperationException("Image artifact metadata contains inconsistent render settings."); + } + + var renderDpi = renderProfiles[0].RenderDpi; + foreach (var pageNumber in imageArtifacts + .Select(item => item.Crop.PageNumber) + .Distinct() + .OrderBy(item => item)) + { + await pdfXmlExtractor.RenderPagePngAsync( + pdfPath, + pageNumber, + artifactPaths.GetPageImagePath(pageNumber), + renderDpi, + cancellationToken); + } + + foreach (var imageArtifact in imageArtifacts) + { + var crop = imageArtifact.Crop; + var fullPath = artifactPaths.ResolveRelativePath(imageArtifact.RelativePath); + Directory.CreateDirectory(Path.GetDirectoryName(fullPath)!); + + await pdfXmlExtractor.RenderCropPngAsync( + pdfPath, + crop.PageNumber, + crop.CropLeft, + crop.CropTop, + crop.CropWidth, + crop.CropHeight, + fullPath, + crop.RenderDpi, + cancellationToken); + } + } +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/PdfXmlExtractor.cs b/src/RolemasterDb.ImportTool/PdfXmlExtractor.cs index bcc0f63..3a9a2f5 100644 --- a/src/RolemasterDb.ImportTool/PdfXmlExtractor.cs +++ b/src/RolemasterDb.ImportTool/PdfXmlExtractor.cs @@ -32,18 +32,11 @@ public sealed class PdfXmlExtractor startInfo.ArgumentList.Add(pdfPath); startInfo.ArgumentList.Add(outputPath); - using var process = new Process { StartInfo = startInfo }; - process.Start(); - await process.WaitForExitAsync(cancellationToken); - - if (process.ExitCode != 0) - { - var error = await process.StandardError.ReadToEndAsync(cancellationToken); - throw new InvalidOperationException($"pdftohtml failed for '{pdfPath}': {error}"); - } + await RunProcessAsync(startInfo, cancellationToken); } - public async Task ReadDocumentInfoAsync(string pdfPath, CancellationToken cancellationToken = default) + public async Task ReadDocumentInfoAsync(string pdfPath, + CancellationToken cancellationToken = default) { var startInfo = new ProcessStartInfo { @@ -56,16 +49,7 @@ public sealed class PdfXmlExtractor startInfo.ArgumentList.Add(pdfPath); - using var process = new Process { StartInfo = startInfo }; - process.Start(); - var output = await process.StandardOutput.ReadToEndAsync(cancellationToken); - await process.WaitForExitAsync(cancellationToken); - - if (process.ExitCode != 0) - { - var error = await process.StandardError.ReadToEndAsync(cancellationToken); - throw new InvalidOperationException($"pdfinfo failed for '{pdfPath}': {error}"); - } + var (output, error) = await RunProcessAsync(startInfo, cancellationToken); var pageCountMatch = Regex.Match(output, @"Pages:\s*(\d+)", RegexOptions.Multiline); var sizeMatch = Regex.Match(output, @"Page size:\s*([0-9.]+)\s*x\s*([0-9.]+)\s*pts", RegexOptions.Multiline); @@ -104,7 +88,8 @@ public sealed class PdfXmlExtractor int height, string outputPath, CancellationToken cancellationToken = default) => - RenderCropPngAsync(pdfPath, pageNumber, left, top, width, height, outputPath, ScaledRenderDpi, cancellationToken); + RenderCropPngAsync(pdfPath, pageNumber, left, top, width, height, outputPath, ScaledRenderDpi, + cancellationToken); public Task RenderCropPngAsync( string pdfPath, @@ -162,17 +147,10 @@ public sealed class PdfXmlExtractor } startInfo.ArgumentList.Add(pdfPath); - startInfo.ArgumentList.Add(Path.Combine(Path.GetDirectoryName(outputPath)!, Path.GetFileNameWithoutExtension(outputPath))); + startInfo.ArgumentList.Add(Path.Combine(Path.GetDirectoryName(outputPath)!, + Path.GetFileNameWithoutExtension(outputPath))); - using var process = new Process { StartInfo = startInfo }; - process.Start(); - await process.WaitForExitAsync(cancellationToken); - - if (process.ExitCode != 0) - { - var error = await process.StandardError.ReadToEndAsync(cancellationToken); - throw new InvalidOperationException($"pdftoppm failed for '{pdfPath}': {error}"); - } + await RunProcessAsync(startInfo, cancellationToken); if (!File.Exists(outputPath)) { @@ -180,6 +158,34 @@ public sealed class PdfXmlExtractor } } + private static async Task<(string Output, string Error)> RunProcessAsync( + ProcessStartInfo startInfo, + CancellationToken cancellationToken) + { + using var process = new Process { StartInfo = startInfo }; + process.Start(); + + var outputTask = startInfo.RedirectStandardOutput + ? process.StandardOutput.ReadToEndAsync(cancellationToken) + : Task.FromResult(string.Empty); + var errorTask = startInfo.RedirectStandardError + ? process.StandardError.ReadToEndAsync(cancellationToken) + : Task.FromResult(string.Empty); + + await process.WaitForExitAsync(cancellationToken); + var output = await outputTask; + var error = await errorTask; + + if (process.ExitCode != 0) + { + throw new InvalidOperationException(string.IsNullOrWhiteSpace(error) + ? $"{Path.GetFileNameWithoutExtension(startInfo.FileName)} failed with exit code {process.ExitCode}." + : error); + } + + return (output, error); + } + private static string ResolveExecutable(string environmentVariableName, string executableName) { var configuredPath = Environment.GetEnvironmentVariable(environmentVariableName); @@ -196,4 +202,4 @@ public sealed class PdfXmlExtractor return Path.GetFileNameWithoutExtension(executableName); } -} +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/ReimportImagesOptions.cs b/src/RolemasterDb.ImportTool/ReimportImagesOptions.cs index 04e70f2..320b5a0 100644 --- a/src/RolemasterDb.ImportTool/ReimportImagesOptions.cs +++ b/src/RolemasterDb.ImportTool/ReimportImagesOptions.cs @@ -2,12 +2,26 @@ using CommandLine; namespace RolemasterDb.ImportTool; -[Verb("reimport-images", HelpText = "Regenerate critical table page and cell images and refresh only image metadata in SQLite.")] +[Verb("reimport-images", + HelpText = "Regenerate critical table page and cell images, with optional SQLite metadata refresh.")] public sealed class ReimportImagesOptions { - [Value(0, MetaName = "table", Required = true, HelpText = "The manifest slug of the critical table to refresh.")] - public string Table { get; set; } = string.Empty; + [Value(0, MetaName = "table", Required = false, HelpText = "The manifest slug of the critical table to refresh.")] + public string? Table { get; set; } [Option('d', "db", HelpText = "Optional SQLite database path.")] public string? DatabasePath { get; set; } -} + + [Option('a', "all", Default = false, HelpText = "Refresh every enabled manifest entry instead of one table.")] + public bool All { get; set; } + + [Option("update-metadata", Default = "true", + HelpText = + "Pass true or false to control whether SQLite source-image metadata is refreshed after regenerating artifacts.")] + public string UpdateMetadataText { get; set; } = "true"; + + public bool UpdateMetadata => + bool.TryParse(UpdateMetadataText, out var updateMetadata) + ? updateMetadata + : throw new InvalidOperationException("The --update-metadata option must be either 'true' or 'false'."); +} \ No newline at end of file diff --git a/src/RolemasterDb.ImportTool/RepositoryPaths.cs b/src/RolemasterDb.ImportTool/RepositoryPaths.cs index 3a4237d..730d5d3 100644 --- a/src/RolemasterDb.ImportTool/RepositoryPaths.cs +++ b/src/RolemasterDb.ImportTool/RepositoryPaths.cs @@ -7,7 +7,7 @@ public sealed class RepositoryPaths RootPath = rootPath; ManifestPath = Path.Combine(rootPath, "sources", "critical-import-manifest.json"); DefaultDatabasePath = Path.Combine(rootPath, "src", "RolemasterDb.App", "rolemaster.db"); - ArtifactsRootPath = Path.Combine(rootPath, "artifacts", "import", "critical"); + ArtifactsRootPath = Path.Combine(rootPath, "src", "RolemasterDb.App", "import-artifacts", "critical"); } public string RootPath { get; } @@ -31,4 +31,4 @@ public sealed class RepositoryPaths throw new InvalidOperationException("Could not discover the repository root from the current directory."); } -} +} \ No newline at end of file