├── .gitignore ├── 5e ├── all_tokens_passive_perception.js ├── animate_tiny_weapons.js ├── apply_damage.js ├── auto_sort_creatures_by_type.js ├── bane.js ├── bardic_insperation.js ├── bless.js ├── divine_smite.js ├── guidance.js ├── heavy_armor_feat_workaround.js ├── initiative_with_disadvantage.js ├── lay_on_hands.js ├── monk_ki.js ├── npcs_to_coin_piles.js ├── rage.js ├── random_cutting_words.js ├── random_inspiration.js ├── random_mockeries.js ├── show_token_actions.js ├── show_token_actions_fix.js ├── show_tokens_resistances.js ├── stealth_check.js ├── tool_proficiency.js └── wild_magic.js ├── LICENSE.md ├── README.md ├── age └── readme.md ├── archived ├── 5e │ ├── fighter_second_wind.js │ ├── great_weapon_master.js │ ├── reroll_bad_d20_with_modifiers.js │ ├── sharpshooter.js │ ├── sneak_attack.js │ └── speed_factor_initiative.js ├── age │ ├── breather.js │ ├── clear_conditions.js │ ├── clear_cover.js │ ├── ding_fries_are_done.js │ ├── first_aid.js │ └── take_cover.js ├── misc │ ├── award_party_xp.js │ ├── close_all_doors.js │ ├── combat_tracker_ac_hp.js │ ├── convert_compendium_to_table.js │ ├── create_chat_message.js │ ├── create_merchant_stock.js │ ├── folder_permission.js │ ├── hide_video_boxes.js │ ├── journal_update_id_with_name.js │ ├── scene_border_walls.js │ └── share_image_via_url.js ├── module-specific │ ├── gm_secret_skill_check.js │ ├── hex.js │ ├── hit_die.js │ ├── hunters-mark-mark_attack_wrapper.js │ ├── hunters_mark-cast_mark.js │ ├── hunters_mark-gm_conditions.js │ ├── open_beyond_sheet_player.js │ ├── pearl_of_power.js │ ├── resolve_surprise.js │ └── token_vision_config_about_time.js ├── pf1e │ ├── award_xp.js │ ├── channel_positive_healing.js │ ├── roll_knowledge_skill_check.js │ └── wand_of_cure_light_wounds.js ├── pf2e │ ├── action_climb.js │ ├── action_conceal_object.js │ ├── action_demoralize.js │ ├── action_disable_device.js │ ├── action_disarm.js │ ├── action_force_open.js │ ├── action_grapple.js │ ├── action_high_jump.js │ ├── action_long_jump.js │ ├── action_pick_lock.js │ ├── action_sense_motive.js │ ├── action_shove.js │ ├── action_stand_up.js │ ├── action_steal.js │ ├── action_trip.js │ ├── alchemist_bomb.js │ ├── animal_rage.js │ ├── apply_condition.js │ ├── apply_spell_effect.js │ ├── blood_magic_proc.js │ ├── consume_arrow.js │ ├── consume_bolt.js │ ├── consume_bullets.js │ ├── craft_item.js │ ├── double_slice.js │ ├── double_slice_ac_shown_in_roll.js │ ├── double_slice_giff.js │ ├── dreams.js │ ├── dueling_cape.js │ ├── dueling_parry.js │ ├── earn_income.js │ ├── fury_instinct_rage.js │ ├── gm_craft_something.js │ ├── gozreh_sickness.js │ ├── hunted_shot.js │ ├── inspire_courage.js │ ├── oracular_curse.js │ ├── parry.js │ ├── persistent_damage_check.js │ ├── premonition_of_avoidance.js │ ├── print_spell_dc.js │ ├── rage_effect.js │ ├── rain_of_embers_stance.js │ ├── raise_shield.js │ ├── repair_item.js │ ├── rest_for_the_night.js │ ├── specialty_crafting.js │ ├── spell_attack.js │ ├── spell_damage.js │ ├── strike_attack.js │ ├── strike_damage.js │ ├── sweep_attack.js │ ├── take_a_breather.js │ ├── terrifying_resistance.js │ ├── treat_wounds.js │ ├── treat_wounds_(fancy).js │ └── treat_wounds_(improved).js ├── roll │ ├── mass_roll_check.js │ └── token_hp.js ├── token │ ├── selective_select.js │ ├── show_token_artwork.js │ └── token_multi_select.js └── wfrp4e │ └── shopify_actor.js ├── dsa5e └── 3d20_skill_roll.js ├── misc ├── actor_to_combat.js ├── ambient_light_quick_edit.js ├── announce_round_number.js ├── auto_script.js ├── circling_lights.js ├── compendium_set_lock_and_visibility.js ├── create_ambient_light.js ├── delete_all_templates.js ├── delete_items_not_in_folders.js ├── draw-walls-around-drawing.js ├── equip_unequip_shield.js ├── find_lights_by_color.js ├── find_selected_wall_ids.js ├── fine_tile_control.js ├── folder_to_compendium.js ├── folder_to_rollable_table.js ├── format_all_scene_notes.js ├── hex_crawl_helper.js ├── import_from_compendium.js ├── jukebox.js ├── lightning_lights_effect.js ├── lock_all_doors.js ├── lock_and_unlock_players.js ├── log_troubleshooting_msg_to_console.js ├── max_npc_hp.js ├── move_walls.js ├── polygon_drawing_to_walls.js ├── rebind_token_actors.js ├── rolltables.js ├── scale_grid_size_to_inches.js ├── show_modules.js ├── tile_toggle_hidden_status.js ├── tile_toggle_locked_status.js ├── tile_xy_adjust.js ├── toggle_playlist.js └── whisper_players.js ├── module-specific ├── readme.md └── token_favorite_action.js ├── module.json ├── packs ├── macros-5e.db ├── macros-age.db ├── macros-dsa5e.db ├── macros-misc.db ├── macros-module-specific.db ├── macros-pf1e.db ├── macros-pf2e.db ├── macros-roll.db ├── macros-token.db └── macros-wfrp4e.db ├── pf1e └── readme.md ├── pf2e ├── change_initiative_skill.js ├── fall_damage.js └── vision_configuration.js ├── roll ├── average_roll_results.js ├── character_stat_roller.js ├── chartopia_roller.js ├── roll_ammunition_die.js ├── roll_die.js ├── roll_initiatives.js ├── roll_table.js └── wandering_monsters.js ├── token ├── actor_selector.js ├── apply_prototype.js ├── bulk_change_initiative.js ├── change_disposition.js ├── clone_token_actor.js ├── end_turn.js ├── light_picker.js ├── light_picker_color.js ├── link_token_to_actor.js ├── mirror_token_image.js ├── randomize_wildcard_tokens.js ├── remove_conditions.js ├── rename_token_and_actor.js ├── select_token_in_stack.js ├── set_name_and_bars.js ├── shrink_or_enlarge.js ├── switch_images.js ├── token_behavior.js ├── token_reiconize.js ├── token_vision_config.js └── unlink_tokens_from_actor.js └── wfrp4e └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/.gitignore -------------------------------------------------------------------------------- /5e/all_tokens_passive_perception.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/all_tokens_passive_perception.js -------------------------------------------------------------------------------- /5e/animate_tiny_weapons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/animate_tiny_weapons.js -------------------------------------------------------------------------------- /5e/apply_damage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/apply_damage.js -------------------------------------------------------------------------------- /5e/auto_sort_creatures_by_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/auto_sort_creatures_by_type.js -------------------------------------------------------------------------------- /5e/bane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/bane.js -------------------------------------------------------------------------------- /5e/bardic_insperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/bardic_insperation.js -------------------------------------------------------------------------------- /5e/bless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/bless.js -------------------------------------------------------------------------------- /5e/divine_smite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/divine_smite.js -------------------------------------------------------------------------------- /5e/guidance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/guidance.js -------------------------------------------------------------------------------- /5e/heavy_armor_feat_workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/heavy_armor_feat_workaround.js -------------------------------------------------------------------------------- /5e/initiative_with_disadvantage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/initiative_with_disadvantage.js -------------------------------------------------------------------------------- /5e/lay_on_hands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/lay_on_hands.js -------------------------------------------------------------------------------- /5e/monk_ki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/monk_ki.js -------------------------------------------------------------------------------- /5e/npcs_to_coin_piles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/npcs_to_coin_piles.js -------------------------------------------------------------------------------- /5e/rage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/rage.js -------------------------------------------------------------------------------- /5e/random_cutting_words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/random_cutting_words.js -------------------------------------------------------------------------------- /5e/random_inspiration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/random_inspiration.js -------------------------------------------------------------------------------- /5e/random_mockeries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/random_mockeries.js -------------------------------------------------------------------------------- /5e/show_token_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/show_token_actions.js -------------------------------------------------------------------------------- /5e/show_token_actions_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/show_token_actions_fix.js -------------------------------------------------------------------------------- /5e/show_tokens_resistances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/show_tokens_resistances.js -------------------------------------------------------------------------------- /5e/stealth_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/stealth_check.js -------------------------------------------------------------------------------- /5e/tool_proficiency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/tool_proficiency.js -------------------------------------------------------------------------------- /5e/wild_magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/5e/wild_magic.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/README.md -------------------------------------------------------------------------------- /age/readme.md: -------------------------------------------------------------------------------- 1 | age folder -------------------------------------------------------------------------------- /archived/5e/fighter_second_wind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/fighter_second_wind.js -------------------------------------------------------------------------------- /archived/5e/great_weapon_master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/great_weapon_master.js -------------------------------------------------------------------------------- /archived/5e/reroll_bad_d20_with_modifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/reroll_bad_d20_with_modifiers.js -------------------------------------------------------------------------------- /archived/5e/sharpshooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/sharpshooter.js -------------------------------------------------------------------------------- /archived/5e/sneak_attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/sneak_attack.js -------------------------------------------------------------------------------- /archived/5e/speed_factor_initiative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/5e/speed_factor_initiative.js -------------------------------------------------------------------------------- /archived/age/breather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/breather.js -------------------------------------------------------------------------------- /archived/age/clear_conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/clear_conditions.js -------------------------------------------------------------------------------- /archived/age/clear_cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/clear_cover.js -------------------------------------------------------------------------------- /archived/age/ding_fries_are_done.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/ding_fries_are_done.js -------------------------------------------------------------------------------- /archived/age/first_aid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/first_aid.js -------------------------------------------------------------------------------- /archived/age/take_cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/age/take_cover.js -------------------------------------------------------------------------------- /archived/misc/award_party_xp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/award_party_xp.js -------------------------------------------------------------------------------- /archived/misc/close_all_doors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/close_all_doors.js -------------------------------------------------------------------------------- /archived/misc/combat_tracker_ac_hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/combat_tracker_ac_hp.js -------------------------------------------------------------------------------- /archived/misc/convert_compendium_to_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/convert_compendium_to_table.js -------------------------------------------------------------------------------- /archived/misc/create_chat_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/create_chat_message.js -------------------------------------------------------------------------------- /archived/misc/create_merchant_stock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/create_merchant_stock.js -------------------------------------------------------------------------------- /archived/misc/folder_permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/folder_permission.js -------------------------------------------------------------------------------- /archived/misc/hide_video_boxes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/hide_video_boxes.js -------------------------------------------------------------------------------- /archived/misc/journal_update_id_with_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/journal_update_id_with_name.js -------------------------------------------------------------------------------- /archived/misc/scene_border_walls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/scene_border_walls.js -------------------------------------------------------------------------------- /archived/misc/share_image_via_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/misc/share_image_via_url.js -------------------------------------------------------------------------------- /archived/module-specific/gm_secret_skill_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/gm_secret_skill_check.js -------------------------------------------------------------------------------- /archived/module-specific/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/hex.js -------------------------------------------------------------------------------- /archived/module-specific/hit_die.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/hit_die.js -------------------------------------------------------------------------------- /archived/module-specific/hunters-mark-mark_attack_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/hunters-mark-mark_attack_wrapper.js -------------------------------------------------------------------------------- /archived/module-specific/hunters_mark-cast_mark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/hunters_mark-cast_mark.js -------------------------------------------------------------------------------- /archived/module-specific/hunters_mark-gm_conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/hunters_mark-gm_conditions.js -------------------------------------------------------------------------------- /archived/module-specific/open_beyond_sheet_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/open_beyond_sheet_player.js -------------------------------------------------------------------------------- /archived/module-specific/pearl_of_power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/pearl_of_power.js -------------------------------------------------------------------------------- /archived/module-specific/resolve_surprise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/resolve_surprise.js -------------------------------------------------------------------------------- /archived/module-specific/token_vision_config_about_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/module-specific/token_vision_config_about_time.js -------------------------------------------------------------------------------- /archived/pf1e/award_xp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf1e/award_xp.js -------------------------------------------------------------------------------- /archived/pf1e/channel_positive_healing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf1e/channel_positive_healing.js -------------------------------------------------------------------------------- /archived/pf1e/roll_knowledge_skill_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf1e/roll_knowledge_skill_check.js -------------------------------------------------------------------------------- /archived/pf1e/wand_of_cure_light_wounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf1e/wand_of_cure_light_wounds.js -------------------------------------------------------------------------------- /archived/pf2e/action_climb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_climb.js -------------------------------------------------------------------------------- /archived/pf2e/action_conceal_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_conceal_object.js -------------------------------------------------------------------------------- /archived/pf2e/action_demoralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_demoralize.js -------------------------------------------------------------------------------- /archived/pf2e/action_disable_device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_disable_device.js -------------------------------------------------------------------------------- /archived/pf2e/action_disarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_disarm.js -------------------------------------------------------------------------------- /archived/pf2e/action_force_open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_force_open.js -------------------------------------------------------------------------------- /archived/pf2e/action_grapple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_grapple.js -------------------------------------------------------------------------------- /archived/pf2e/action_high_jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_high_jump.js -------------------------------------------------------------------------------- /archived/pf2e/action_long_jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_long_jump.js -------------------------------------------------------------------------------- /archived/pf2e/action_pick_lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_pick_lock.js -------------------------------------------------------------------------------- /archived/pf2e/action_sense_motive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_sense_motive.js -------------------------------------------------------------------------------- /archived/pf2e/action_shove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_shove.js -------------------------------------------------------------------------------- /archived/pf2e/action_stand_up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_stand_up.js -------------------------------------------------------------------------------- /archived/pf2e/action_steal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_steal.js -------------------------------------------------------------------------------- /archived/pf2e/action_trip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/action_trip.js -------------------------------------------------------------------------------- /archived/pf2e/alchemist_bomb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/alchemist_bomb.js -------------------------------------------------------------------------------- /archived/pf2e/animal_rage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/animal_rage.js -------------------------------------------------------------------------------- /archived/pf2e/apply_condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/apply_condition.js -------------------------------------------------------------------------------- /archived/pf2e/apply_spell_effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/apply_spell_effect.js -------------------------------------------------------------------------------- /archived/pf2e/blood_magic_proc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/blood_magic_proc.js -------------------------------------------------------------------------------- /archived/pf2e/consume_arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/consume_arrow.js -------------------------------------------------------------------------------- /archived/pf2e/consume_bolt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/consume_bolt.js -------------------------------------------------------------------------------- /archived/pf2e/consume_bullets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/consume_bullets.js -------------------------------------------------------------------------------- /archived/pf2e/craft_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/craft_item.js -------------------------------------------------------------------------------- /archived/pf2e/double_slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/double_slice.js -------------------------------------------------------------------------------- /archived/pf2e/double_slice_ac_shown_in_roll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/double_slice_ac_shown_in_roll.js -------------------------------------------------------------------------------- /archived/pf2e/double_slice_giff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/double_slice_giff.js -------------------------------------------------------------------------------- /archived/pf2e/dreams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/dreams.js -------------------------------------------------------------------------------- /archived/pf2e/dueling_cape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/dueling_cape.js -------------------------------------------------------------------------------- /archived/pf2e/dueling_parry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/dueling_parry.js -------------------------------------------------------------------------------- /archived/pf2e/earn_income.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/earn_income.js -------------------------------------------------------------------------------- /archived/pf2e/fury_instinct_rage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/fury_instinct_rage.js -------------------------------------------------------------------------------- /archived/pf2e/gm_craft_something.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/gm_craft_something.js -------------------------------------------------------------------------------- /archived/pf2e/gozreh_sickness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/gozreh_sickness.js -------------------------------------------------------------------------------- /archived/pf2e/hunted_shot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/hunted_shot.js -------------------------------------------------------------------------------- /archived/pf2e/inspire_courage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/inspire_courage.js -------------------------------------------------------------------------------- /archived/pf2e/oracular_curse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/oracular_curse.js -------------------------------------------------------------------------------- /archived/pf2e/parry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/parry.js -------------------------------------------------------------------------------- /archived/pf2e/persistent_damage_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/persistent_damage_check.js -------------------------------------------------------------------------------- /archived/pf2e/premonition_of_avoidance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/premonition_of_avoidance.js -------------------------------------------------------------------------------- /archived/pf2e/print_spell_dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/print_spell_dc.js -------------------------------------------------------------------------------- /archived/pf2e/rage_effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/rage_effect.js -------------------------------------------------------------------------------- /archived/pf2e/rain_of_embers_stance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/rain_of_embers_stance.js -------------------------------------------------------------------------------- /archived/pf2e/raise_shield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/raise_shield.js -------------------------------------------------------------------------------- /archived/pf2e/repair_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/repair_item.js -------------------------------------------------------------------------------- /archived/pf2e/rest_for_the_night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/rest_for_the_night.js -------------------------------------------------------------------------------- /archived/pf2e/specialty_crafting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/specialty_crafting.js -------------------------------------------------------------------------------- /archived/pf2e/spell_attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/spell_attack.js -------------------------------------------------------------------------------- /archived/pf2e/spell_damage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/spell_damage.js -------------------------------------------------------------------------------- /archived/pf2e/strike_attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/strike_attack.js -------------------------------------------------------------------------------- /archived/pf2e/strike_damage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/strike_damage.js -------------------------------------------------------------------------------- /archived/pf2e/sweep_attack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/sweep_attack.js -------------------------------------------------------------------------------- /archived/pf2e/take_a_breather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/take_a_breather.js -------------------------------------------------------------------------------- /archived/pf2e/terrifying_resistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/terrifying_resistance.js -------------------------------------------------------------------------------- /archived/pf2e/treat_wounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/treat_wounds.js -------------------------------------------------------------------------------- /archived/pf2e/treat_wounds_(fancy).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/treat_wounds_(fancy).js -------------------------------------------------------------------------------- /archived/pf2e/treat_wounds_(improved).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/pf2e/treat_wounds_(improved).js -------------------------------------------------------------------------------- /archived/roll/mass_roll_check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/roll/mass_roll_check.js -------------------------------------------------------------------------------- /archived/roll/token_hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/roll/token_hp.js -------------------------------------------------------------------------------- /archived/token/selective_select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/token/selective_select.js -------------------------------------------------------------------------------- /archived/token/show_token_artwork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/token/show_token_artwork.js -------------------------------------------------------------------------------- /archived/token/token_multi_select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/token/token_multi_select.js -------------------------------------------------------------------------------- /archived/wfrp4e/shopify_actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/archived/wfrp4e/shopify_actor.js -------------------------------------------------------------------------------- /dsa5e/3d20_skill_roll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/dsa5e/3d20_skill_roll.js -------------------------------------------------------------------------------- /misc/actor_to_combat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/actor_to_combat.js -------------------------------------------------------------------------------- /misc/ambient_light_quick_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/ambient_light_quick_edit.js -------------------------------------------------------------------------------- /misc/announce_round_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/announce_round_number.js -------------------------------------------------------------------------------- /misc/auto_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/auto_script.js -------------------------------------------------------------------------------- /misc/circling_lights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/circling_lights.js -------------------------------------------------------------------------------- /misc/compendium_set_lock_and_visibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/compendium_set_lock_and_visibility.js -------------------------------------------------------------------------------- /misc/create_ambient_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/create_ambient_light.js -------------------------------------------------------------------------------- /misc/delete_all_templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/delete_all_templates.js -------------------------------------------------------------------------------- /misc/delete_items_not_in_folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/delete_items_not_in_folders.js -------------------------------------------------------------------------------- /misc/draw-walls-around-drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/draw-walls-around-drawing.js -------------------------------------------------------------------------------- /misc/equip_unequip_shield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/equip_unequip_shield.js -------------------------------------------------------------------------------- /misc/find_lights_by_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/find_lights_by_color.js -------------------------------------------------------------------------------- /misc/find_selected_wall_ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/find_selected_wall_ids.js -------------------------------------------------------------------------------- /misc/fine_tile_control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/fine_tile_control.js -------------------------------------------------------------------------------- /misc/folder_to_compendium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/folder_to_compendium.js -------------------------------------------------------------------------------- /misc/folder_to_rollable_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/folder_to_rollable_table.js -------------------------------------------------------------------------------- /misc/format_all_scene_notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/format_all_scene_notes.js -------------------------------------------------------------------------------- /misc/hex_crawl_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/hex_crawl_helper.js -------------------------------------------------------------------------------- /misc/import_from_compendium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/import_from_compendium.js -------------------------------------------------------------------------------- /misc/jukebox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/jukebox.js -------------------------------------------------------------------------------- /misc/lightning_lights_effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/lightning_lights_effect.js -------------------------------------------------------------------------------- /misc/lock_all_doors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/lock_all_doors.js -------------------------------------------------------------------------------- /misc/lock_and_unlock_players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/lock_and_unlock_players.js -------------------------------------------------------------------------------- /misc/log_troubleshooting_msg_to_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/log_troubleshooting_msg_to_console.js -------------------------------------------------------------------------------- /misc/max_npc_hp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/max_npc_hp.js -------------------------------------------------------------------------------- /misc/move_walls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/move_walls.js -------------------------------------------------------------------------------- /misc/polygon_drawing_to_walls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/polygon_drawing_to_walls.js -------------------------------------------------------------------------------- /misc/rebind_token_actors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/rebind_token_actors.js -------------------------------------------------------------------------------- /misc/rolltables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/rolltables.js -------------------------------------------------------------------------------- /misc/scale_grid_size_to_inches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/scale_grid_size_to_inches.js -------------------------------------------------------------------------------- /misc/show_modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/show_modules.js -------------------------------------------------------------------------------- /misc/tile_toggle_hidden_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/tile_toggle_hidden_status.js -------------------------------------------------------------------------------- /misc/tile_toggle_locked_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/tile_toggle_locked_status.js -------------------------------------------------------------------------------- /misc/tile_xy_adjust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/tile_xy_adjust.js -------------------------------------------------------------------------------- /misc/toggle_playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/toggle_playlist.js -------------------------------------------------------------------------------- /misc/whisper_players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/misc/whisper_players.js -------------------------------------------------------------------------------- /module-specific/readme.md: -------------------------------------------------------------------------------- 1 | module-specific folder -------------------------------------------------------------------------------- /module-specific/token_favorite_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/module-specific/token_favorite_action.js -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/module.json -------------------------------------------------------------------------------- /packs/macros-5e.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-5e.db -------------------------------------------------------------------------------- /packs/macros-age.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros-dsa5e.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-dsa5e.db -------------------------------------------------------------------------------- /packs/macros-misc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-misc.db -------------------------------------------------------------------------------- /packs/macros-module-specific.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-module-specific.db -------------------------------------------------------------------------------- /packs/macros-pf1e.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-pf1e.db -------------------------------------------------------------------------------- /packs/macros-pf2e.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-pf2e.db -------------------------------------------------------------------------------- /packs/macros-roll.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-roll.db -------------------------------------------------------------------------------- /packs/macros-token.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/packs/macros-token.db -------------------------------------------------------------------------------- /packs/macros-wfrp4e.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pf1e/readme.md: -------------------------------------------------------------------------------- 1 | pf1e folder -------------------------------------------------------------------------------- /pf2e/change_initiative_skill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/pf2e/change_initiative_skill.js -------------------------------------------------------------------------------- /pf2e/fall_damage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/pf2e/fall_damage.js -------------------------------------------------------------------------------- /pf2e/vision_configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/pf2e/vision_configuration.js -------------------------------------------------------------------------------- /roll/average_roll_results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/average_roll_results.js -------------------------------------------------------------------------------- /roll/character_stat_roller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/character_stat_roller.js -------------------------------------------------------------------------------- /roll/chartopia_roller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/chartopia_roller.js -------------------------------------------------------------------------------- /roll/roll_ammunition_die.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/roll_ammunition_die.js -------------------------------------------------------------------------------- /roll/roll_die.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/roll_die.js -------------------------------------------------------------------------------- /roll/roll_initiatives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/roll_initiatives.js -------------------------------------------------------------------------------- /roll/roll_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/roll_table.js -------------------------------------------------------------------------------- /roll/wandering_monsters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/roll/wandering_monsters.js -------------------------------------------------------------------------------- /token/actor_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/actor_selector.js -------------------------------------------------------------------------------- /token/apply_prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/apply_prototype.js -------------------------------------------------------------------------------- /token/bulk_change_initiative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/bulk_change_initiative.js -------------------------------------------------------------------------------- /token/change_disposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/change_disposition.js -------------------------------------------------------------------------------- /token/clone_token_actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/clone_token_actor.js -------------------------------------------------------------------------------- /token/end_turn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/end_turn.js -------------------------------------------------------------------------------- /token/light_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/light_picker.js -------------------------------------------------------------------------------- /token/light_picker_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/light_picker_color.js -------------------------------------------------------------------------------- /token/link_token_to_actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/link_token_to_actor.js -------------------------------------------------------------------------------- /token/mirror_token_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/mirror_token_image.js -------------------------------------------------------------------------------- /token/randomize_wildcard_tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/randomize_wildcard_tokens.js -------------------------------------------------------------------------------- /token/remove_conditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/remove_conditions.js -------------------------------------------------------------------------------- /token/rename_token_and_actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/rename_token_and_actor.js -------------------------------------------------------------------------------- /token/select_token_in_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/select_token_in_stack.js -------------------------------------------------------------------------------- /token/set_name_and_bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/set_name_and_bars.js -------------------------------------------------------------------------------- /token/shrink_or_enlarge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/shrink_or_enlarge.js -------------------------------------------------------------------------------- /token/switch_images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/switch_images.js -------------------------------------------------------------------------------- /token/token_behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/token_behavior.js -------------------------------------------------------------------------------- /token/token_reiconize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/token_reiconize.js -------------------------------------------------------------------------------- /token/token_vision_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/token_vision_config.js -------------------------------------------------------------------------------- /token/unlink_tokens_from_actor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundry-vtt-community/macros/HEAD/token/unlink_tokens_from_actor.js -------------------------------------------------------------------------------- /wfrp4e/readme.md: -------------------------------------------------------------------------------- 1 | wfrp4e folder --------------------------------------------------------------------------------