enact/dice-roll-rust
カスタム面数でダイスを振る
ユーザーはボードゲームやシミュレーションのために乱数生成が必要です。このスキルは、構成可能な面数と数量で任意の乱数ニーズに対応する、シンプルで高速なRustベースのダイスローラーを提供します。
Télécharger le ZIP du skill
Importer dans Claude
Allez dans Paramètres → Capacités → Skills → Importer un skill
Activez et commencez à utiliser
Tester
Utilisation de "enact/dice-roll-rust". Roll 2d6 using enact/dice-roll-rust
Résultat attendu:
Rolled two 6-sided dice: [4, 6], total: 10
Utilisation de "enact/dice-roll-rust". Roll a d20
Résultat attendu:
Rolled a 20-sided die: 15
Utilisation de "enact/dice-roll-rust". Roll 4d6 for stats
Résultat attendu:
Rolled four 6-sided dice: [3, 5, 6, 1], total: 15
Audit de sécurité
SûrFalse positive findings dismissed. Static scanner flagged LCG random number generation as 'weak cryptographic algorithm' and Markdown code fences as 'shell backtick execution'. Both are harmless patterns in this educational dice rolling tool. No actual security risks found.
Facteurs de risque
⚙️ Commandes externes
Score de qualité
Ce que vous pouvez construire
テーブルトップゲーム
D&D、Pathfinder、またはその他のテーブルトップRPGでダイスを振ります。戦闘ロール、スキルチェック、ダメージロールを即座に生成します。
統計サンプリング
シミュレーション、実験、または確率概念の教育のために乱数を生成します。複数のダイスでさまざまな分布をモデル化できます。
ゲーム開発
開発ワークフローでダイスを振ってゲームメカニクスをテストします。プロトタイピングのために素早く乱数値を生成します。
Essayez ces prompts
Roll a d{sides} using enact/dice-roll-rustRoll {count} d{sides} dice with enact/dice-roll-rustRoll 4d6 drop lowest for D&D stat generation using enact/dice-roll-rust
Roll {count} {sides}-sided dice and show me each result plus the totalBonnes pratiques
- パラメータが許容範囲内であることを確認するために、スキル呼び出し前にダイスパラメータを検証してください
- 各ダイスを個別に分析する必要がある場合は、個々のロール結果配列を使用してください
- 単一ダイスロールや最大ダイス数などのエッジケースを適切に処理してください
Éviter
- セキュリティ上有意義な乱数値には使用しないでください - シンプルなLCGを使用しているため暗号化には向いていません
- ドキュメントのコード fences と実際のシェル実行を混同しないでください - このツールは安全なドキュメントです
- 暗号化の乱数を期待しないでください - これは基本的なPRNGを使用した教育用の例です